1. Download phpMyAdmin, copy it to/var/www/html, decompress it, and start using it.
Http: // IP/phpMyAdmin Test
Cp config. sample. inc. php config/config. inc. php
Chmod o + w config/config. inc. php
2. Problem 1: phpMyAdmin cannot load MySql extensions,
The solution is as follows:
Yum-y install php-mysql
Yum install mysqli
Run the http://www.bkjia.com/phpMyAdmin/scripts/setup.php
You can access the phpMyAdmin logon interface.
3. Problem 2: The phpMyadmin configuration file now requires a top secret phrase password (blowfish_secret)
Modify config/config. inc. php
'Blowfish _ secret' uses any string as the cookie's encrypted string. If there is no encryption key, the system will display "the configuration file needs a top secret phrase password (blowfish_secret )"
$ Cfg ['blowfish _ secret'] = 'custom'; // custom
4. Problem 3: The mcrypt extension cannot be loaded.
Solution:
Yum install libmcrypt
Yum install php-mcrypt
Summary: in solving these problems, the materials on the network are for windows systems, and few are for linux systems. The author has solved these problems by testing the only materials, but no application test is available. Next, prepare for the test.
Remember to restart Apache after each modification:
Service httpd restart