インストール:
[root@falcon21 ~]# yum -y install mysql-server
インストール:
mysql-server.i686 0:5.1.73-8.el6_8
依存性関連をインストールしました:
mysql.i686 0:5.1.73-8.el6_8
ーーーー
[root@falcon21 ~]# vi /etc/my.cnf
7 character-set-server = utf8 //add
mysqld を起動
[root@falcon21 ~]# /etc/rc.d/init.d/mysqld start
mysqld を起動中: [ OK ]
[root@falcon21 ~]# chkconfig mysqld on
---------------
MySQL初期設定
[root@falcon21 ~]# mysql_secure_installation
Cleaning up...
All done! If you've completed all of the above steps, your MySQL
installation should now be secure.
Thanks for using MySQL!
-------------
MySQLに接続
[root@falcon21 ~]# mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 10
Server version: 5.1.73 Source distribution
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.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> exit
Bye
******************************************************************
phpMyAdminインストール
[root@falcon21 ~]# svn checkout https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/tags/STABLE/phpMyAdmin phpmyadmin
[root@falcon21 ~]# mv phpmyadmin/ /var/www/
[root@falcon21 ~]# rpm -q php-mysql
パッケージ php-mysql はインストールされていません。
[root@falcon21 ~]# yum -y install php-mysql
-------------------------
エラー: パッケージ: php-mysql-5.3.3-49.el6.i686 (base)
要求: php-common(x86-32) = 5.3.3-49.el6
インストール: php-common-5.6.30-1.el6.remi.i686 (@remi-php56)
php-common(x86-32) = 5.6.30-1.el6.remi
利用可能: php-common-5.3.3-49.el6.i686 (base)
php-common(x86-32) = 5.3.3-49.el6
問題を回避するために --skip-broken を用いることができません
これらを試行できます: rpm -Va --nofiles --nodigest
[root@falcon21 ~]# yum -y remove php-common-5.6.30-1.el6.remi.i686
削除しました:
php-common.i686 0:5.6.30-1.el6.remi
依存性の削除をしました:
php.i686 0:5.6.30-1.el6.remi
php-cli.i686 0:5.6.30-1.el6.remi
php-devel.i686 0:5.6.30-1.el6.remi
php-gd.i686 0:5.6.30-1.el6.remi
php-mbstring.i686 0:5.6.30-1.el6.remi
php-mysqlnd.i686 0:5.6.30-1.el6.remi
php-pdo.i686 0:5.6.30-1.el6.remi
php-pecl-jsonc.i686 0:1.3.10-2.el6.remi.5.6
php-pecl-jsonc-devel.i686 0:1.3.10-2.el6.remi.5.6
php-pecl-zip.i686 0:1.14.0-1.el6.remi.5.6
完了しました!
-----
[root@falcon21 ~]# yum -y install php-mysql
インストール:
php-mysql.i686 0:5.3.3-49.el6
依存性関連をインストールしました:
php-common.i686 0:5.3.3-49.el6 php-pdo.i686 0:5.3.3-49.el6
完了しました!
[root@falcon21 ~]# cp /var/www/phpmyadmin/config.sample.inc.php /var/www/phpmyadmin/config.inc.php
[root@falcon21 ~]# chmod 660 /var/www/phpmyadmin/config.inc.php
[root@falcon21 ~]# vi /var/www/phpmyadmin/config.inc.php
$cfg['blowfish_secret'] = "xxxxxxxxxxxxxxxxxxxxxxxxxx"
[root@falcon21 ~]# chown -R root.apache /var/www/phpmyadmin/
[root@falcon21 ~]# vi /etc/httpd/conf.d/phpmyadmin.conf
Alias /phpmyadmin /var/www/phpmyadmin
<Location /phpmyadmin>
Order deny,allow
Deny from all
Allow from 127.0.0.1
Allow from 192.168.2.100/24 192.168.0.1/24
</Location>
[root@falcon21 ~]# /etc/rc.d/init.d/httpd reload
httpd を再読み込み中:
http://falcon21.space/phpmyadmin/ へアクセス、確認
mcrypt 拡張
[root@falcon21 ~]# yum -y install php-mcrypt
インストールしています : php-mcrypt-5.3.3-5.el6.i686 1/1
Verifying : php-mcrypt-5.3.3-5.el6.i686 1/1
インストール:
php-mcrypt.i686 0:5.3.3-5.el6
[root@falcon21 ~]# /etc/rc.d/init.d/httpd reload
httpd を再読み込み中: