Home > Database > phpMyAdmin > How to start phpmyadmin locally

How to start phpmyadmin locally

Release: 2019-12-10 10:11:21
Original
2673 people have browsed it

How to start phpmyadmin locally

Local installation configuration phpmyadmin:

1. 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.

Start local phpmyadmin:

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

Server: 127.0.0.1:3306

User name: root

Password: (leave blank)

Recommended learning: phpmyadmin tutorial

The above is the detailed content of How to start phpmyadmin locally. 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