如何在 Ubuntu 16.04 LTS 上安装 WebERP

在本教程中,我们将向您展示如何在 Ubuntu 16.04 LTS 上安装 WebERP。 对于那些不知道的人,WebERP 是一个开源的、基于 Web 的中小型企业会计和业务管理工具。 它支持几乎所有平台,作为互联网商店或商业零售管理系统非常有用。

本文假设您至少具备 Linux 的基本知识,知道如何使用 shell,最重要的是,您将网站托管在自己的 VPS 上。 安装非常简单,假设您在 root 帐户下运行,如果不是,您可能需要添加 ‘sudo‘ 到命令以获取 root 权限。 我将向您展示如何在 Ubuntu 16.04 Xenial Xerus 服务器上逐步安装基于 Web 的 WebERP 会计和业务管理系统。

在 Ubuntu 16.04 LTS 上安装 WebERP

步骤 1. 首先,通过运行以下命令确保所有系统包都是最新的 apt-get 终端中的命令。

sudo apt-get update sudo apt-get upgrade

步骤 2. 安装 LAMP (Linux, ApacheMariaDB, PHP) 服务器。

需要 Ubuntu 16.04 LAMP 服务器。 如果您没有安装 LAMP,您可以在此处按照我们的指南进行操作。 此外,安装所有必需的 PHP 模块:

apt-get install php7.0-mysql php7.0-curl php7.0-json php7.0-cgi php7.0 libapache2-mod-php7.0 php7.0-mcrypt php7.0-xmlrpc php7.0-gd

步骤 3. 在 Ubuntu 系统上安装 WebERP。

首先到WebERP的下载页面下载最新的稳定版WebERP,在写这篇文章的时候是4.14.1版本:

wget https://excellmedia.dl.sourceforge.net/project/web-erp/webERP4.14.1.zip

将 WebERP 存档解压缩到服务器上的文档根目录:

unzip webERP4.14.1.zip cp -r webERP /var/www/html/weberp

我们将需要更改一些文件夹权限:

chown -R www-data:www-data /var/www/html/weberp

步骤 4. 为 WebERP 配置 MariaDB。

默认情况下,MariaDB 未加固。 您可以使用 mysql_secure_installation 脚本。 您应该仔细阅读下面的每个步骤,这些步骤将设置 root 密码、删除匿名用户、禁止远程 root 登录、删除测试数据库和访问安全 MariaDB:

mysql_secure_installation

像这样配置它:

- Set root password? [Y/n] y - Remove anonymous users? [Y/n] y - Disallow root login remotely? [Y/n] y - Remove test database and access to it? [Y/n] y - Reload privilege tables now? [Y/n] y

接下来,我们需要登录 MariaDB 控制台并为 WebERP 创建一个数据库。 运行以下命令:

mysql -u root -p

这将提示您输入密码,因此输入您的 MariaDB 根密码并点击 Enter. 登录到数据库服务器后,您需要为 WebERP 安装创建一个数据库:

MariaDB [(none)]>CREATE USER 'weberp_usr'@'localhost' IDENTIFIED BY 'usr_strong_passwd'; MariaDB [(none)]>CREATE DATABASE weberpdb; MariaDB [(none)]>GRANT ALL PRIVILEGES ON weberpdb.* TO 'weberp_usr'@'localhost'; MariaDB [(none)]>FLUSH PRIVILEGES; MariaDB [(none)]>EXIT;

步骤 5. 配置 Apache WebERP 的网络服务器。

在中创建一个新的虚拟主机指令 Apache. 例如,新建一个 Apache 名为’的配置文件weberp.conf‘ 在您的虚拟服务器上:

sudo a2enmod rewrite touch /etc/apache2/sites-available/weberp.conf ln -s /etc/apache2/sites-available/weberp.conf /etc/apache2/sites-enabled/weberp.conf nano /etc/apache2/sites-available/weberp.conf

添加以下行:

<VirtualHost *:80> ServerAdmin [email protected] DocumentRoot /var/www/html/weberp ServerName your-domain.com ServerAlias www.your-domain.com <Directory /var/www/html/weberp/> Options FollowSymLinks AllowOverride All Order allow,deny allow from all </Directory> ErrorLog /var/log/apache2/your-domain.com-error_log CustomLog /var/log/apache2/your-domain.com-access_log common </VirtualHost>

现在,我们可以重新启动 Apache 网络服务器,以便进行更改:

a2ensite weberp systemctl restart apache2.service

步骤 6. 为 WebERP 配置防火墙。

WebERP 在端口 80 上运行,因此您需要允许端口 80 通过防火墙:

sudo ufw enable sudo ufw allow 80/tcp

步骤 7. 访问 WebERP。

WebERP 默认在 HTTP 端口 80 上可用。 打开您喜欢的浏览器并导航到 https://your-domain.com/ 要么 https://server-ip/ 并完成所需的步骤以完成安装。 如果您使用防火墙,请打开端口 80 以启用对控制面板的访问。

恭喜! 您已成功安装 WebERP。 感谢您使用本教程在您的 Ubuntu 16.04 系统上安装基于 Web 的 WebERP 会计和业务管理系统。 如需更多帮助或有用信息,我们建议您查看 WebERP官方网站.

Save