13.03.2015, 20:02
Installation:
1- Add EPEL Repositories:
cd ~
wget http://download.fedoraproject.org/pu...6-8.noarch.rpm
sudo rpm -ivh epel-release*
rm epel-release*
2- Download And Configure MYSQL
sudo yum install mysql-server
sudo service mysqld start
sudo mysql_install_db
sudo mysql_secure_installation
Your MySQL installation should be up and running. Test that you can log in with the password you set by typing:
mysql -u root -p
Type exit to return to the shell prompt:
exit
3- Download phpMyAdmin
sudo yum install phpmyadmin
4- Configure PhpMyAdmin
sudo nano /etc/httpd/conf.d/phpMyAdmin.conf
sudo service httpd start
It should work.. Try it.
1- Add EPEL Repositories:
cd ~
wget http://download.fedoraproject.org/pu...6-8.noarch.rpm
sudo rpm -ivh epel-release*
rm epel-release*
2- Download And Configure MYSQL
sudo yum install mysql-server
sudo service mysqld start
sudo mysql_install_db
sudo mysql_secure_installation
Код:
You will be asked a number of questions: Enter current password for root: press Enter Set root password? Y New password: Type an administrative password here Re-enter new password: Confirm the password Remove anonymous users? Y Disallow root login remotely? Y Remove test database and access to it? Y Reload privilege tables now? Y
mysql -u root -p
Type exit to return to the shell prompt:
exit
3- Download phpMyAdmin
sudo yum install phpmyadmin
4- Configure PhpMyAdmin
sudo nano /etc/httpd/conf.d/phpMyAdmin.conf
sudo service httpd start
It should work.. Try it.

