如何在 AlmaLinux 8 上安装管理员

Adminer(以前称为 phpMinAdmin)是一个开源和免费的基于 Web 的数据库管理工具。您可以将 Adminer 与 MySQL、MariaDB、PostgreSQL、SQLite、MS SQL、Oracle、Elasticsearch、MongoDB 等一起使用。它简单、轻巧,并且在设计时考虑了强大的安全性和用户体验。adminer-logo

在 AlmaLinux 8 上安装管理员

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

sudo dnf clean all
sudo dnf update

步骤 2. 安装 LAMP 服务器。

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

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

默认情况下,Adminer 在 AlmaLinux 8 基础存储库中不可用。wget现在我们使用命令从官方页面下载最新版本的Adminer :

mkdir /var/www/html/adminer
cd /var/www/html/adminer
wget -O index.php https://github.com/vrana/adminer/releases/download/v4.8.1/adminer-4.8.1.php

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

chown -R apache:apache /var/www/html/adminer/
chmod -R 775 /var/www/html/adminer/

步骤 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 控制台并为管理员创建一个数据库。运行以下命令:

mysql -u root -p

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

MariaDB [(none)]> CREATE DATABASE adminer_db;
MariaDB [(none)]> CREATE USER 'adminer'@'localhost' IDENTIFIED BY 'your-strong-password';
MariaDB [(none)]> GRANT ALL PRIVILEGES ON adminer_db.* TO 'adminer'@'localhost' IDENTIFIED BY 'your-strong-password' WITH GRANT OPTION;
MariaDB [(none)]> ALTER DATABASE neos_db charset=utf8;
MariaDB [(none)]> FLUSH PRIVILEGES;
MariaDB [(none)]> EXIT;

步骤 5. 配置 Apache。

我们将使用以下命令为您的管理员创建一个 Apache 虚拟主机:

nano /etc/httpd/conf.d/adminer.conf

添加以下行:

<VirtualHost *:80>
     ServerAdmin admin@your-domain.com
     DocumentRoot /var/www/html/adminer/
     ServerName adminer.your-domain.com
     DirectoryIndex index.php
     ErrorLog /var/log/httpd/adminer-error.log
     CustomLog /var/log/httpd/adminer-access.log combined
</VirtualHost>

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

sudo systemctl restart httpd
sudo systemctl enable httpd

步骤 6. 使用 Let’s Encrypt SSL 免费证书保护 Apache

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

sudo dnf install certbot python3-certbot-apache

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

sudo certbot --apache

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

Deploying certificate
Successfully deployed certificate for your-domain.com to /etc/httpd/conf.d/your-domain-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
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

步骤 7. 配置防火墙。

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

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

步骤 8. 访问管理员数据库管理 Web 界面。

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

Adminer-Web-Interface

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

未经允许不得转载:统信UOS之家 » 如何在 AlmaLinux 8 上安装管理员

相关文章