Home Database phpMyAdmin How to access phpmyadmin

How to access phpmyadmin

Apr 11, 2020 am 10:33 AM
phpmyadmin

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!

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

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to set primary key in phpmyadmin How to set primary key in phpmyadmin Apr 07, 2024 pm 02:54 PM

How to set primary key in phpmyadmin

Where does the wordpress database exist? Where does the wordpress database exist? Apr 15, 2024 pm 10:39 PM

Where does the wordpress database exist?

How to add foreign keys in phpmyadmin How to add foreign keys in phpmyadmin Apr 07, 2024 pm 02:36 PM

How to add foreign keys in phpmyadmin

What is the password for the phpmyadmin account? What is the password for the phpmyadmin account? Apr 07, 2024 pm 01:09 PM

What is the password for the phpmyadmin account?

How to delete data table in phpmyadmin How to delete data table in phpmyadmin Apr 07, 2024 pm 03:00 PM

How to delete data table in phpmyadmin

Where is the phpmyadmin log? Where is the phpmyadmin log? Apr 07, 2024 pm 12:57 PM

Where is the phpmyadmin log?

why phpmyadmin access denied why phpmyadmin access denied Apr 07, 2024 pm 01:03 PM

why phpmyadmin access denied

Where is the associated view of phpmyadmin Where is the associated view of phpmyadmin Apr 07, 2024 pm 01:00 PM

Where is the associated view of phpmyadmin

See all articles