ゆう's Blog
CentOS Stream 10:phpMyAdmin インストール

# dnf --enablerepo=epel -y install phpMyAdmin

初期設定では localhost のみ許可されているため、外部アクセスを許可します。
追加

# vi /etc/httpd/conf.d/phpMyAdmin.conf

・・・ ・・・ <Directory /usr/share/phpMyAdmin/> AddDefaultCharset UTF-8 Require local Require ip xxx.xxx.xxx.xxx </Directory> ・・・ ・・・

設定変更を反映。

# systemctl restart httpd

phpMyAdmin のログイン画面にアクセス。
http://<サーバーIP>/phpmyadmin/
MySQL/MariaDB のユーザーでログイン。