CentOS 7上使用Apache作为Web服务器安装Cerb

Cerb是一个工作流和电子邮件自动化系统,适用于大型团队。 Cerb是用PHP编写的,它使用MySQL或者MariaDB作为数据库系统。

其主要特点是:

大批量电子邮件管理

共享邮箱

用于实时监控和目标跟踪的仪表板

通知

任务管理

移动功能

基于REST的API

Cerb在15年以上社区反馈的基础上发展。 虽然源代码在GitHub上也可用,但该软件是以商业开源许可证分发的,名为Devblocks Public License(DPL) 。 应该注意的是,许可证是基于能够同时登录的最大工作人员数量。

服务器配置

在以下步骤中,我们将介绍如何安装和配置Cerb:Apache,MariaDB和PHP所需的工具。

首先,我们来安装EPEL:

# yum -y install epel-release 安装 Apache

现在,我们将使用yum安装Apache Web Server:

# yum install -y httpd

并启用它,在启动时使用systemd启动:

# systemctl start httpd # systemctl enable httpd

检查其状态:

# systemctl status httpd httpd.service - The Apache HTTP Server Loaded: loaded (/usr/lib/systemd/system/httpd.service; disabled; vendor preset: disabled) Active: active (running) 安装 PHP

如引言中所述,Cerb是用PHP编写的。 更具体地说,我们需要具有以下扩展名的PHP 5.5(或更高版本):

curl

dom

gd

imap

pcre

session

simplexml

spl

xml

json

mailparse

mbstring

mysqli

openssl

在本教程中,我们将使用PHP 7.要安装此版本,请使用以下命令添加Remi存储库:

# rpm -Uvh

启用存储库,如下所示:

# yum-config-manager --enable remi-php71

现在,可以使用上面提到的所有扩展来安装PHP

# yum install -y php php-curl php-mysqli php-openssl php-dom php-gd php-json php-pcre php-imap php-mbstring php-session php-simplexml php-xml php-spl php-mailparse

我们需要更改php.ini中的一些设置。 特别是file_uploads,memory_limit,upload_max_filesize和post_max_size行,如下所示:

file_uploads = On upload_max_filesize = 64M memory_limit = 256M post_max_size = 64M upload_tmp_dir = /tmp

保存这些更改,退出并重新启动Apache:

# systemctl restart httpd 安装 MariaDB

现在,我们将使用yum安装MariaDB:

# yum install -y mariadb mariadb-server

启动MariaDB并配置root帐户:

# systemctl start mariadb # mysql_secure_installation

在这个过程中,你会被问到几个问题,回答如下:

New password: Re-enter new password: Password updated successfully! Reloading privilege tables.. ... Success! Remove anonymous users? [Y/n] ... Success! Disallow root login remotely? [Y/n] ... Success! Remove test database and access to it? [Y/n] - Dropping test database... ... Success! - Removing privileges on test database... ... Success! Reload privilege tables now? [Y/n] ... Success! Cleaning up...

全做完了! 如果您已完成上述所有步骤,您的MariaDB安装应该是安全的。

感谢您使用MariaDB!

创建一个新的数据库

接下来,我们将为Verb创建一个数据库。 首先,登录到MariaDB shell:

# mysql -u root -p

创建数据库和新用户:

MariaDB [(none)]> CREATE DATABASE cerbdb; MariaDB [(none)]> CREATE USER 'cerbusr'@'localhost' IDENTIFIED BY 'usr_strong_password'; MariaDB [(none)]> GRANT ALL PRIVILEGES ON cerbdb.* TO 'cerb'@'localhost' IDENTIFIED BY 'usr_strong_password'; MariaDB [(none)]> FLUSH PRIVILEGES; MariaDB [(none)]> EXIT; Cerb 安装

下一步是下载并安装Cerb。 您将要切换到服务器中的Web根目录:

# cd /var/www/html

使用git 克隆Cerb资源库

# git clone git://github.com/wgm/cerb.git cerb

确保Cerb的文件由Web服务器的用户和组拥有,以Apache作为Web服务器,它们都是www-data。

# cd cerb # chown-R www-data:www-data . #chmod -R u+w framework.config.php storage

framework.config.php是配置文件,而storage/是存储第三方插件,附件,临时文件和高速缓存的位置。

现在,通过系统防火墙允许端口80上的HTTP流量:

# firewall-cmd --zone=public --permanent --add-service=http # firewall-cmd --reload

最后一步是打开 并完成Cerb的安装。 一旦完成,Cerb就可以准备使用了!

总结

在本教程中,我们已经看到,使用MariaDB作为数据库,在基于CentOS 7和Apache的服务器中安装和配置Cerb是非常容易的。 只要按照指导,开始使用Cerb! 在快节奏和动态的工作环境中,像Cerb这样的工作流程和电子邮件自动化系统可以帮您轻松完成任务。 这很值得!

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/e7680657201242a09f2091f25fa37d5f.html