Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to install phpmyadmin4.8

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly introduces how to install phpmyadmin4.8, the article is very detailed, has a certain reference value, interested friends must read it!

First, go to the official website to download the phpMyAdmin source code:

Https://www.phpmyadmin.net/downloads/

The downloaded file is phpMyAdmin-4.8.2-all-languages.tar.gz.

Decompress it:

Tar xvf phpMyAdmin-4.8.2-all-languages.tar.gz

View the extracted files:

Then copy this folder to the path accessible to the apache server and rename it to phpmyadmin:

Cp-rf phpMyAdmin-4.8.2-all-languages / var/www/html/phpmyadmin

Since root user management mysql is not supported by default, you need to configure an external user:

Mysql-uroot-pEnter password: enter the password, enter create user 'xhy'@'localhost' identified by' 123456'

Open all permissions for this user:

Grant all privileges on *. * to 'xhy'@'localhost' identified by' 123456'

Refresh permissions:

Flush privileges

Next, modify the phpMyAdmin configuration file:

Vi / var/www/html/phpmyadmin/libraries/config.default.php

Modify the following:

$cfg ['PmaAbsoluteUri'] =' http://localhost/phpmyadmin';$cfg['Servers'][$i]['user'] = 'xhy';$cfg [' Servers'] [$I] ['password'] =' 123456'

Save and exit!

Open a browser and enter the URL: http://localhost/phpmyadmin

Enter user name: xhy, password: 123456

You can see the interface in which you have successfully logged in:

The above is all the contents of the article "how to install phpmyadmin4.8". Thank you for reading! Hope to share the content to help you, more related knowledge, welcome to follow the industry information channel!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report