Home > Database > phpMyAdmin > body text

How to access phpmyadmin

藏色散人
Release: 2020-04-11 10:33:50
Original
4586 people have browsed it

How to access phpmyadmin

How to access phpmyadmin?

1. First download the latest version of the installation package.

2. Unzip the installation package and put it in the htdocs folder in APMSever.

3. Change $cfg['blowfish_secret'] = ''; in phpMyAdmin/libraries/config.default.php to $cfg['blowfish_secret'] = '123456'; (Note: '123456' is a random character)

In the phpMyAdmin directory, open config.sample.inc.php, line 18 $cfg['blowfish_secret'] = ''; change to $cfg['blowfish_secret'] = '123456'; (Note: '123456' is a random character)

4. Configure the config.default.php file

Open config.default.php and search for $cfg[ 'PmaAbsoluteUri'] ="", plus the path where phpmyadmin is located, such as: $cfg['PmaAbsoluteUri'] ="http://218.241.157.76:3380/"

Find

$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';
Copy after login

Just fill in your mysql user and password respectively. Here is

$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '123456';
Copy after login

to change the root user and password.

After modifying the file, enter "localhost/phpmyadmin" in the browser. The login information is as follows:

Server: 127.0.0.1:3306

Username: root

Password: (leave blank)

The above is the detailed content of How to access phpmyadmin. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!