2017年6月19日月曜日

CentOS7 phpMyAdminのインストール

以前にやってうまくいかなかったので、改めて書いておきます。

1.リポジトリepelの利用
# yum install epel-release

2.phpMyAdminのインストール
 yum --enablerepo=epel install phpMyAdmin php-mysql php-mcrypt

3.phpMyAdminの設定
vi /etc/phpMyAdmin/config.inc.php
14行目を修正します。
次に一旦rootでパスワード無しでログインできるようにします。
[root, パス無しログイン可]
84 $cfg['Servers'][$i]['AllowNoPassword']             
// Allow logins without a password. Do not change the FALSE
85                                      = FALSE; 

84 $cfg['Servers'][$i]['AllowNoPassword']             
// Allow logins without a password. Do not change the FALSE
85                                      = TRUE;

 次にアクセス設定をします。
# vi /etc/httpd/conf.d/phpMyAdmin.conf
今回は当面全てからアクセスを許可します。
追加
Require all granted




# systemctl restart httpd.service
http://localhost:10080/phpmyadmin/index.php
にアクセスします(10080はVirtualbox利用)
root、パスワード無しでログインし、パスワードを設定します。
ユーザ->root localhost を編集 ->パスワードを変更する
もう一度パスワード無しでログインを無効にします。
vi /etc/phpMyAdmin/config.inc.php
# systemctl restart httpd.service

参考
http://blog.k-kansei.com/?p=1444
https://www.server-world.info/query?os=CentOS_7&p=mariadb&f=2
http://kidatti.livedoor.biz/archives/37547860.html
http://qiita.com/nwsoyogi/items/c8eb1fedef3c00c5fbac

0 件のコメント:

コメントを投稿