MariaDB 10.11 : phpMyAdmin インストール2023/07/05 |
phpMyAdmin をインストールして、Web ブラウザー経由で MariaDB の操作ができるように設定します。
|
|
[1] | |
[2] | |
[3] | phpMyAdmin をインストールします。 |
root@www:~#
apt -y install phpmyadmin # phpMyAdmin を使用する Webサーバーソフトウェアを選択 +------------------------+ Configuring phpmyadmin +-------------------------+ | Please choose the web server that should be automatically configured to | | run phpMyAdmin. | | | | Web server to reconfigure automatically: | | | | [*] apache2 | | [ ] lighttpd | | | | | | <Ok> | | | +---------------------------------------------------------------------------+ # [Yes] +------------------------+ Configuring phpmyadmin +-------------------------+ | | | The phpmyadmin package must have a database installed and configured | | before it can be used. This can be optionally handled with | | dbconfig-common. | | | | If you are an advanced database administrator and know that you want to | | perform this configuration manually, or if your database has already | | been installed and configured, you should refuse this option. Details | | on what needs to be done should most likely be provided in | | /usr/share/doc/phpmyadmin. | | | | Otherwise, you should probably choose this option. | | | | Configure database for phpmyadmin with dbconfig-common? | | | | <Yes> <No> | | | +---------------------------------------------------------------------------+ # phpmyadmin ユーザー用の MariaDB パスワードを設定 +------------------------+ Configuring phpmyadmin +------------------------+ | Please provide a password for phpmyadmin to register with the database | | server. If left blank, a random password will be generated. | | | | MySQL application password for phpmyadmin: | | | | ********________________________________________________________________ | | | | <Ok> <Cancel> | | | +--------------------------------------------------------------------------+
root@www:~#
vi /etc/phpmyadmin/apache.conf # 8行目 : アクセス許可する範囲を追記
Require ip 127.0.0.1 10.0.0.0/24
systemctl restart apache2 |
[4] | アクセスを許可したネットワーク内の任意のクライアントコンピューターで Web ブラウザーを起動し、[http://(サーバーのホスト名 または IP アドレス)/phpmyadmin/] にアクセスします。 すると phpMyAdmin の認証フォームが表示されるので、MariaDB に登録した任意のユーザーで認証してログインします。 |
[5] | ログインできました。この管理画面から MariaDB データベースを操作することができます。 |
Sponsored Link |