WebERP是一个免费。开源且完整的基于Web的会计和业务管理系统。它是用 PHP 编写的。并使用 MariaDB 作为数据库后端。方便用户管理网上商店。销售等操作。那么如何在CentOS 8上安装WebERP?下面一起来看下相关操作。
步骤 1。 首先确保您的系统是最新的。您可通过以下命令来更新系统。
sudo dnf update
sudo dnf install epel-release
步骤 2。安装 LAMP 堆栈。
参考阅读:《RAKsmart Linux VPS安装LAMP环境教程》
步骤 3。 在 CentOS 8 上安装 WebERP。
您可从官方页面下载WebERP软件包:
https://sourceforge.net/projects/web-erp/files/webERP_4.15.1.zip
之后。将下载的文件解压到 Apache Web 根目录:
unzip webERP_4.15.1.zip -d /var/www/html
然后您需要更改一些文件夹权限:
chown -R apache:apache /var/www/html/webERP
chmod -R 755 /var/www/html/webERP
步骤 4。为 WebERP 配置 MariaDB。
默认情况下。MariaDB未加固。您可以使用mysql_secure_installation脚本保护 MariaDB 。您应该仔细阅读以下每个步骤。这些步骤将设置 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 database weberpdb;
MariaDB [(none)]> create user weberp@localhost identified by ‘your-@b@-passwd’;
MariaDB [(none)]> grant all privileges on weberpdb.* to weberp@localhost identified by ‘your-@b@-passwd’;
MariaDB [(none)]> flush privileges;
MariaDB [(none)]> exit;
步骤 5。 为 WebERP 配置 Apache。
现在您可创建一个新的 Apache 虚拟主机配置文件来托管 webERP。您可以使用以下命令创建它:
nano /etc/httpd/conf.d/weberp.conf
添加以下行:
<VirtualHost *:80>
ServerAdmin admin@your-domain.com
DocumentRoot /var/www/html/webERP
ServerName your-domain.com
<Directory /var/www/html/webERP/>
Options FollowSymLinks
AllowOverride All
Order allow,deny
allow from all
</Directory>
ErrorLog /var/log/httpd/weberp.org-error_log
CustomLog /var/log/httpd/weberp.org-access_log common
</VirtualHost>
添加完毕后。重新启动 Apache 网络服务器以进行更改:
sudo systemctl restart httpd
步骤 6。配置防火墙。
这是需要允许端口80和443通过防火墙。443端口主要是用于https服务。提供安全的上网协议。您可以使用以下命令允许它们:
sudo firewall-cmd –permanent –add-service=http
sudo firewall-cmd –reload
步骤 7。访问 WebERP Web 界面。
默认情况下。WebERP将在HTTP端口 80 上可用。如果您使用防火墙。请打开端口 80 以启用对控制面板的访问。http://your-domain.com(这里您可把your-domain.com替换为实际域名)。
本文地址:https://gpu.xuandashi.com/31305.html,转载请说明来源于:渲大师
声明:本站部分内容来自网络,如无特殊说明或标注,均为本站原创发布。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。分享目的仅供大家学习与参考,不代表本站立场!