-
Notifications
You must be signed in to change notification settings - Fork 1.2k
shadowsocks manyuser
iMeiji edited this page Nov 12, 2015
·
11 revisions
yum install httpd mysql-server php php-mysql
service httpd start #Start the Web Server
http://server_IP_addr #Check that the server is up and running by visiting your server's IP address in a web browser:
Configure MySQL
service mysqld start
mysql_secure_installation
mysql -u root -p #You can test that your database password was set correctly
mysql>
mysql> exit #Type exit to return to your shell session
yum install epel-release
yum install phpmyadmin
vi /etc/httpd/conf.d/phpMyAdmin.conf #Configure Apache Files
You need to restart the server with the following command:
service httpd restart
http://VPS_IP_address/phpmyadmin
THX
https://www.digitalocean.com/community/tutorials/how-to-install-and-secure-phpmyadmin-on-a-centos-6-4-vps
http://www.cnblogs.com/tippoint/archive/2013/11/20/3434035.html