在本教程中,我们将向您展示如何在 AlmaLinux 8 上安装 phpMyAdmin。对于那些不知道的人,PhpMyAdmin 是一个 PHP Web 应用程序,它让我们可以从直观的图形界面管理 MariaDB/MySQL 数据库。 它提供了一个用户友好的 Web 界面来访问和管理您的数据库。 为了方便更多人使用,phpMyAdmin 正在被翻译成 72 种语言,并支持 LTR 和 RTL 语言。
本文假设您至少具备 Linux 的基本知识,知道如何使用 shell,最重要的是,您将网站托管在自己的 VPS 上。 安装非常简单,假设您在 root 帐户下运行,如果不是,您可能需要添加 ‘sudo
‘ 到命令以获取 root 权限。 我将向您展示在 AlmaLinux 8 上逐步安装 phpMyAdmin。您可以按照 Rocky Linux 的相同说明进行操作。
在 AlmaLinux 8 上安装 phpMyAdmin
第 1 步。首先,让我们首先确保您的系统是最新的。
sudo dnf update
步骤 2. 启用 EPEL 和 REMI 存储库,
现在我们运行以下命令将 EPEL 和 Remi 存储库添加到您的系统:
sudo dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm sudo dnf install https://rpms.remirepo.net/enterprise/remi-release-8.rpm
步骤 3. 安装 PHP-Fedora-自动装载机。
安装 phpMyAdmin 的要求之一是安装 PHP-fedora-autoloader 包。 现在我们使用以下命令安装它:
sudo dnf install https://rpms.remirepo.net/enterprise/8/remi/x86_64/php-fedora-autoloader-1.0.0-5.el8.remi.noarch.rpm
步骤 4. 安装 LAMP 堆栈。
如果您的服务器上尚未安装 LAMP 堆栈,您可以在此处按照我们的指南进行操作。
步骤 5. 在 AlmaLinux 8 上安装 phpMyAdmin。
现在我们运行以下命令来安装 PHPMyAdmin:
sudo dnf --enablerepo=remi install phpMyAdmin
步骤 6. 配置 phpMyAdmin。
现在使用以下命令配置 phpMyAdmin:
nano /etc/httpd/conf.d/phpMyAdmin.conf
并替换以下行:
<Directory /usr/share/phpMyAdmin/> AddDefaultCharset UTF-8 <IfModule mod_authz_core.c> # Apache 2.4 <RequireAny> #Require ip 127.0.0.1 #Require ip ::1 Require all granted </RequireAny> </IfModule> <IfModule !mod_authz_core.c> # Apache 2.2 Order Deny,Allow Deny from All Allow from 127.0.0.1 Allow from ::1 </IfModule> </Directory>
Save 您的文件并重新启动您的 Apache 服务:
sudo systemctl restart httpd
步骤 7. 配置防火墙。
创建防火墙规则以允许来自外部网络的 HTTP 请求:
sudo firewall-cmd --permanent --add-service=http sudo firewall-cmd --reload
步骤 8. 在 Almalinux 上访问 phpMyAdmin。
现在打开浏览器并浏览 https://your-ip-address/phpmyadmin
. 您现在应该能够使用 root MySQL 密码或任何其他 MySQL 用户/密码访问 phpMyAdmin。
恭喜! 您已成功安装 phpMyAdmin。 感谢您使用本教程在您的 AlmaLinux 8 系统上安装 phpMyAdmin。 如需更多帮助或有用信息,我们建议您查看 phpMyAdmin 官方网站.