Как установить MySQL
Для установки MySQL на CentOS Вам необходимо выполнить следующую команду:
# yum install mysql
Для запуска MySQL при запуске системы
chkconfig --levels 235 mysqld on
Для немедленного запуска
service mysqld start
НЕ забудьте задать пароль на root, и других пользователей создаваемых по умолчанию.
# mysql --user=root
Welcome to the MySQL monitor. Commands end with ; or g.
Your MySQL connection id is 361
Server version: 5.1.71 Source distribution
Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or 'h' for help. Type 'c' to clear the current input statement.
mysql> SET PASSWORD FOR 'root'@'localhost' = PASSWORD('пароль');
Query OK, 0 rows affected (0.02 sec)
Welcome to the MySQL monitor. Commands end with ; or g.
Your MySQL connection id is 361
Server version: 5.1.71 Source distribution
Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or 'h' for help. Type 'c' to clear the current input statement.
mysql> SET PASSWORD FOR 'root'@'localhost' = PASSWORD('пароль');
Query OK, 0 rows affected (0.02 sec)
и т.д., то есть делаете так, как Вам надо - меняете пароль, или например удаляете.
Затем при необходимости можно поставить модуль для PHP, и phpmyadmin для управления MySQL через браузер.
yum install php-mysql php-pdo phpmyadmin
возможно у Вас отключен javascript, если включен - просто обновите страницу