简体   繁体   中英

How to use phpMyAdmin in ubuntu?

我已经在ubuntu上与其他LAMP组件一起安装了phpMyAdmin,但是我不知道如何使用它。

Depending on how you installed it, you may or may not have to create a link to it in your /var/www directory

So open a terminal

cd /var/www
ls

if you see anything that says phpmyadmin, phpma, or similar just open a browser, and enter http://localhost/phpmyadmin into the address bar.

If /var/www doesn't contain a link to phpmyadmin, you'll have to create one.

su
cd /var/www
ln -s /where/did/you/install/phpmyadmin phpmyadmin

Then youll be able to find it in the browser by going to localhost.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM