MYSQL Setup
-
- New to forums
- Posts: 3
- https://www.youtube.com/channel/UC40BgXanDqOYoVCYFDSTfHA
- Joined: Sat Dec 15, 2012 11:30 am
MYSQL Setup
Can anyone tell me how to install phpMyAdmin onto my vps, and then tell me how to use it so that i can find out the username and password to my mysql database. Please use step by step instructions in simple form (im new to this) also i am using CentOS
Re: MYSQL Setup
Have you already install mysql? If so skip to the last line of the code box if not follow the first steps.
I would recommend learning how to use mysql command line, its really not that hard if you aren't going to be using mysql for a lot.
To install phpMyAdmin:
http://www.cyberciti.biz/faq/centos-fed ... n-webtool/
Carl
Code: Select all
yum install php-mysql mysql mysql-server
chkconfig mysqld on
service mysqld start
mysqladmin -u root -p <password of your choice>
To install phpMyAdmin:
http://www.cyberciti.biz/faq/centos-fed ... n-webtool/
Carl