如何在 AlmaLinux 8 上安装 phpBB

phpBB 是一款用 PHP 编写的免费平板论坛公告板软件。它使个人和网站管理员能够在几分钟内设置社区公告板,以便与人群或想法保持联系。它还支持流行的数据库引擎(MySQL、Oracle 数据库、PostgreSQL 等)、扁平消息结构、分层子论坛、用户组、全文搜索、插件和电子邮件通知。phpbb_logo

AlmaLinux 8安装 phpBB

步骤 1. 首先,让我们先确保您的系统是最新的。

sudo dnf update
sudo dnf install epel-release

步骤 2. 安装 LAMP 服务器。

需要一个 AlmaLinux LAMP 服务器。如果您没有安装 LAMP,您可以在此处按照我们的指南进行操作

步骤 3. 在 AlmaLinux 8 上安装 phpBB。

现在我们使用wget命令从官方页面下载最新的 phpBB 安装程序:

wget https://download.phpbb.com/pub/release/3.3/3.3.5/phpBB-3.3.5.zip
unzip phpBB-3.3.5.zip
sudo mv phpBB3 /var/www/html/phpbb

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

sudo chown -R www-data:www-data /var/www/html/phpbb
sudo chmod -R 755 /var/www/html/phpbb

步骤 4. 配置 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 控制台并为 phpBB 创建一个数据库。运行以下命令:

mysql -u root -p

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

MariaDB [(none)]> CREATE DATABASE phpbb_db;
MariaDB [(none)]> CREATE USER phpbb_user’@’localhost IDENTIFIED BY your-strong-password’;
MariaDB [(none)]> GRANT ALL ON phpbb_db.* TO phpbb_user’@'localhost’ IDENTIFIED BY ‘your-strong-password’ WITH GRANT OPTION;
MariaDB [(none)]> FLUSH PRIVILEGES;
MariaDB [(none)]> EXIT

步骤 6. 配置 Apache。

我们将为您的 phpBB 网站创建一个 Apache 虚拟主机。首先,使用您选择的文本编辑器创建“ ”文件:/etc/apache/conf.d/vhosts.conf

nano /etc/apache/conf.d/vhosts.conf
IncludeOptional vhosts.d/*.conf

接下来,创建虚拟主机:

mkdir /etc/apache/vhosts.d/
nano /etc/apache/vhosts.d/your-domain.com.conf

添加以下几行:

<VirtualHost YOUR_SERVER_IP:80>
   ServerAdmin webmaster@your-domain.com
   DocumentRoot "/var/www/html/phpbb/"
   ServerName your-domain.com
   ServerAlias www.your-domain.com
   ErrorLog "/var/log/httpd/your-domain.com-error_log"
   CustomLog "/var/log/httpd/your-domain.com-access_log" combined

<Directory "/var/www/html/phpbb/">
   DirectoryIndex index.html index.php
   Options FollowSymLinks
   AllowOverride All
   Require all granted
</Directory>
</VirtualHost>

保存并关闭文件。重新启动 Apache 服务以使更改生效:

sudo systemctl restart httpd.service
sudo systemctl enable httpd.service

步骤 7. 使用 Let’s Encrypt SSL Free Certificate 保护 Apache

首先,我们使用以下命令安装 Certbot:

sudo dnf install certbot python3-certbot-apache

然后,为 Apache 安装 SSL 证书,如下所示:

sudo certbot --apache

继续执行交互式提示并安装证书。如果安装了证书,您将看到以下祝贺消息:

Deploying certificate
Successfully deployed certificate for osticket.example.com to /etc/httpd/conf.d/osticket-le-ssl.confCongratulations! You have successfully enabled HTTPS on https://your-domain.com
NEXT STEPS:
- The certificate will need to be renewed before it expires. Certbot can automatically renew the certificate in the background, but you may need to take steps to enable that functionality. See https://certbot.org/renewal-setup for instructions.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
If you like Certbot, please consider supporting our work by:
 * Donating to ISRG / Let's Encrypt:   https://letsencrypt.org/donate
 * Donating to EFF:                    https://eff.org/donate-le
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

步骤 8. 配置防火墙。

允许防火墙使用 HTTP 和 HTTPS 并使用以下命令重新加载它:

sudo firewall-cmd --permanent --zone=public --add-service=http
sudo firewall-cmd --permanent --zone=public --add-service=https
sudo firewall-cmd --reload

步骤 9. 访问 phpBB Web 界面。

成功安装后,打开您的网络浏览器并使用 URL 访问 phpBB 。您将被重定向到 phpBB 页面:https://your-domain.com

phpbb-install-main-window

感谢您使用本教程在您的 AlmaLinux 8 系统上安装 phpBB 内容管理系统。如需更多帮助或有用信息,我们建议您查看官方 phpBB 网站

原创文章,作者:校长,如若转载,请注明出处:https://www.yundongfang.com/Yun4207.html

(0)
打赏 微信扫一扫不于多少! 微信扫一扫不于多少! 支付宝扫一扫礼轻情意重 支付宝扫一扫礼轻情意重
上一篇 2021年12月15日
下一篇 2021年12月15日

相关推荐