1. Install PHPMYADMIN Graphics Management Tool (Recommended Learning: PHPMYADMIN Tutorial )
## 安 Install PHPMYADMIN under the Linux operating system, and use the downloaded software package "Phpmyadmin-2.11.5-All- languages.rar" to the root directory of the configuration environment. For ease of use, you can rename the decompressed folder to phpMyAdmin.The operation in command mode is as follows:
mv phpMyAdmin-2.11.5-all-languages.rar/var/ww/html tar zvxf phpMyAdmin-2.11.5-all-languages.rar mv phpMyAdmin-2.11.5-all-languages phpMyAdmin
2. Configure the phpMyAdmin graphical management tool
Configuration is performed in the config.inc.php file in the phpMyAdmin directory, and change the configuration of the following parameters.//将参数PmaAbsoluteUri 的值设定为phpMyAdmin 所处的位置: $cfg['PmaAbsoluteUri'] = 'http://localhost/phpMyAdmin'; $cfg['blowfish_secret']='cookie'; //设定访问方式为Cookie $cfg['Servers'][$i]['host'] = 'localhost'; //设定MySQL 所在的主机名或IP 地址 $cfg['Servers'][$i]['auth_type'] = 'http'; //设定进入phpMyAdmin 管理MySQL 的方式 $cfg['Servers'][$i]['user'] = 'root'; //设定管理MySQL 的账号 $cfg['Servers'][$i]['password'] = 'root'; //设定管理MySQL 的密码
The above is the detailed content of how to install phpmyadmin on linux. For more information, please follow other related articles on the PHP Chinese website!