[125]phpmyadminインストール
https://www.server-world.info/query?os=CentOS_6&p=mysql&f=2
参考
# yum –enablerepo=epel -y install phpMyAdmin php-mysql php-mcrypt
(やってないーーーここから)
# vi /etc/httpd/conf.d/phpMyAdmin.conf
# 25行目:アクセス許可IP追記
Allow from 127.0.0.1 10.0.0.0/24
# 42行目:アクセス許可IP追記
Allow from 127.0.0.1 10.0.0.0/24
(やってないーーーここまで)
# /etc/rc.d/init.d/httpd restart
ダメ、アクセス拒否??
手を変えて。。。
https://www.server-world.info/query?os=CentOS_6&p=mysql&f=2
参考
# yum –enablerepo=epel -y install phpMyAdmin php-mysql php-mcrypt
(やってないーーーここから)
# vi /etc/httpd/conf.d/phpMyAdmin.conf
# 25行目:アクセス許可IP追記
Allow from 127.0.0.1 10.0.0.0/24
# 42行目:アクセス許可IP追記
Allow from 127.0.0.1 10.0.0.0/24
(やってないーーーここまで)
# /etc/rc.d/init.d/httpd restart
ダメ、アクセス拒否??
手を変えて。。。
# yum -y install mysql-server
文字がUTF-8かの確認
# mysql -u root -p
# show variables like ‘char%’;
Mysqlのversion確認
# mysqladmin -u root -pAa1234567890 version
ーーーーーーーーーーーーーーー
mysqladmin Ver 8.42 Distrib 5.1.73, for redhat-linux-gnu on x86_64
Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
affiliates. Other names may be trademarks of their respective
owners.
Server version 5.1.73
Protocol version 10
Connection Localhost via UNIX socket
UNIX socket /var/lib/mysql/mysql.sock
Uptime: 3 hours 17 min 25 sec
Protocol version 10
Connection Localhost via UNIX socket
UNIX socket /var/lib/mysql/mysql.sock
Uptime: 3 hours 17 min 25 sec
Threads: 1 Questions: 50 Slow queries: 0 Opens: 16 Flush tables: 1 Open tables: 9 Queries per second avg: 0.4
ーーーーーーーーーーーーーーー
CentOS6でインストールされるMySQLのバージョンは5.1系ですが、phpMyAdmin4.2系以降はMySQL5.5移行のバージョンを対象としているため利用できません。phpMyAdmin4.0系の最新版の利用を検討して下さい
・・・・なので、
cd /usr/local/src/
wget https://files.phpmyadmin.net/phpMyAdmin/4.0.10.20/phpMyAdmin-4.0.10.20-all-languages.tar.gz
tar zxvf phpMyAdmin-4.0.10.20-all-languages.tar.gz
mv phpMyAdmin-4.0.10.20-all-languages /var/www/phpMyAdmin
chown -R root:apache /var/www/phpMyAdmin/
vi /etc/httpd/conf.d/phpmyadmin.conf
——————————————————
Alias /phpMyAdmin “/var/www/phpMyAdmin”
<Directory “/var/www/phpMyAdmin”>
Order allow,deny
Allow from all
</Directory>
——————————————————
apachectl -t
Syntax OK
/etc/rc.d/init.d/httpd reload
ーーーーーーーーーーーーーーー
CentOS6でインストールされるMySQLのバージョンは5.1系ですが、phpMyAdmin4.2系以降はMySQL5.5移行のバージョンを対象としているため利用できません。phpMyAdmin4.0系の最新版の利用を検討して下さい
・・・・なので、
cd /usr/local/src/
wget https://files.phpmyadmin.net/phpMyAdmin/4.0.10.20/phpMyAdmin-4.0.10.20-all-languages.tar.gz
tar zxvf phpMyAdmin-4.0.10.20-all-languages.tar.gz
mv phpMyAdmin-4.0.10.20-all-languages /var/www/phpMyAdmin
chown -R root:apache /var/www/phpMyAdmin/
vi /etc/httpd/conf.d/phpmyadmin.conf
——————————————————
Alias /phpMyAdmin “/var/www/phpMyAdmin”
<Directory “/var/www/phpMyAdmin”>
Order allow,deny
Allow from all
</Directory>
——————————————————
apachectl -t
Syntax OK
/etc/rc.d/init.d/httpd reload
phpMyAdminのインストール
vi /etc/httpd/conf.d/phpmyadmin.conf
mkdir /var/www/phpMyAdmin/config
chmod 777 /var/www/phpMyAdmin/config
http://153.126.154.106/phpMyAdmin/scripts/setup.php
vi /etc/httpd/conf.d/phpmyadmin.conf
mkdir /var/www/phpMyAdmin/config
chmod 777 /var/www/phpMyAdmin/config
http://153.126.154.106/phpMyAdmin/scripts/setup.php
ダメ、アクセスできない。また別で。
を参考
yum –enablerepo=epel install -y phpMyAdmin php-mysql php-mcrypt
vi /etc/httpd/conf.d/phpMyAdmin.conf
phpMyAdmin.confの設定
root@/root >vi /etc/httpd/conf.d/phpMyAdmin.conf
27行目にAllow from All を追加。(←これで行けた。。。。危ないけど。。)
root@/root >vi /etc/httpd/conf.d/phpMyAdmin.conf
27行目にAllow from All を追加。(←これで行けた。。。。危ないけど。。)
http://153.126.154.106/phpMyAdmin/
ID:root
Pass:Aa**********
でいけました。
ID:root
Pass:Aa**********
でいけました。