Как установить MySQL на Linux

Большая часть дистрибутива Linux поставляется с MySQL. Если вы хотите использовать MySQL, я рекомендую вам загрузить последнюю версию MySQL и установить ее самостоятельно. Позже вы сможете обновить его до последней версии, когда он станет доступен. В этой статье я расскажу, как установить последнюю бесплатную версию MySQL для сообщества на платформу Linux.

1. Загрузите последнюю стабильную версию MySQL

Загрузите mySQL с сайта mysql.com . Пожалуйста, загрузите версию MySQL для вашей соответствующей платформы Linux. Я скачал «Red Hat Enterprise Linux 5 RPM (x86)». Обязательно загрузите MySQL Server, Client и «Заголовки и библиотеки» со страницы загрузки.

  • MySQL-client-community-8.0.19-0.rhel5.i386.rpm
  • MySQL-server-community-8.0.19-0.rhel5.i386.rpm
  • MySQL-devel-community-8.0.19-0.rhel5.i386.rpm

2. Удалите существующий MySQL по умолчанию, поставляемый с дистрибутивом Linux.

Не выполняйте это в системе, где база данных MySQL используется каким-либо приложением.

[local-host]# rpm -qa | grep -i mysql
mysql-5.0.22-2.1.0.1
mysqlclient10-3.23.58-4.RHEL4.1

[local-host]# rpm -e mysql --nodeps
warning: /etc/my.cnf saved as /etc/my.cnf.rpmsave
[local-host]# rpm -e mysqlclient10

3. Установите загруженный пакет MySQL

Установите пакеты MySQL Server и Client, как показано ниже.

[local-host]# rpm -ivh MySQL-server-community-8.0.19-0.rhel5.i386.rpm MySQL-client-community-8.0.19-0.rhel5.i386.rpm
Preparing...                ########################################### [100%]
1:MySQL-client-community ########################################### [ 50%]
2:MySQL-server-community ########################################### [100%]

Это также отобразит следующий вывод и автоматически запустит демон MySQL.

PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
To do so, start the server, then issue the following commands:
/usr/bin/mysqladmin -u root password 'new-password'
/usr/bin/mysqladmin -u root -h medica2 password 'new-password'

Alternatively you can run:
/usr/bin/mysql_secure_installation
which will also give you the option of removing the test
databases and anonymous user created by default.  This is
strongly recommended for production servers.
See the manual for more instructions.
Please report any problems with the /usr/bin/mysqlbug script!
The latest information about MySQL is available at http://www.mysql.com/
Support MySQL by buying support/licenses from http://shop.mysql.com/

Starting MySQL.[  OK  ]
Giving mysqld 2 seconds to start

Установите «Заголовок и библиотеки», которые являются частью пакетов MySQL-devel.

[local-host]# rpm -ivh MySQL-devel-community-8.0.19-0.rhel5.i386.rpm
Preparing...                ########################################### [100%]
1:MySQL-devel-community  ########################################### [100%]

Примечание. Когда я компилировал PHP с параметром MySQL из исходного кода в системе Linux, произошла ошибка со следующей ошибкой. Установка пакета MySQL-devel-community исправила эту проблему при установке PHP из исходного кода.

configure: error: Cannot find MySQL header files under yes.
Note that the MySQL client library is not bundled anymore!

4. Выполните действия безопасности после установки на MySQL.

Как минимум, вы должны установить пароль для пользователя root, как показано ниже:

[local-user]# /usr/bin/mysqladmin -u root password 'My2Secure$Password'

Лучший вариант – запустить скрипт mysql_secure_installation, который позаботится обо всех типичных элементах безопасности в MySQL, как показано ниже. На высоком уровне это делает следующие пункты:

  • Изменить пароль root
  • Удалить анонимного пользователя
  • Запретить вход в систему с удаленных компьютеров
  • Удалить образец тестовой базы данных по умолчанию
[local-host]# /usr/bin/mysql_secure_installation

NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL
SERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY!
In order to log into MySQL to secure it, we'll need the current
password for the root user.  If you've just installed MySQL, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here.

Enter current password for root (enter for none):
OK, successfully used password, moving on...

Setting the root password ensures that nobody can log into the MySQL
root user without the proper authorisation.
You already have a root password set, so you can safely answer 'n'.
Change the root password? [Y/n] Y
New password:
Re-enter new password:
Password updated successfully!
Reloading privilege tables..
... Success!
By default, a MySQL installation has an anonymous user, allowing anyone
to log into MySQL without having to have a user account created for
them.  This is intended only for testing, and to make the installation
go a bit smoother.  You should remove them before moving into a
production environment.
Remove anonymous users? [Y/n] Y
... Success!
Normally, root should only be allowed to connect from 'localhost'.  This
ensures that someone cannot guess at the root password from the network.
Disallow root login remotely? [Y/n] Y
... Success!
By default, MySQL comes with a database named 'test' that anyone can
access.  This is also intended only for testing, and should be removed
before moving into a production environment.
Remove test database and access to it? [Y/n] Y
- Dropping test database...
... Success!
- Removing privileges on test database...
... Success!
Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.
Reload privilege tables now? [Y/n] Y
... Success!
Cleaning up...
All done!  If you've completed all of the above steps, your MySQL
installation should now be secure.
Thanks for using MySQL!

5. Проверьте установку MySQL:

Вы можете проверить установленную версию MySQL, выполнив mysql -V, как показано ниже:

[local-host]# mysql -V
mysql  Ver 14.14 Distrib 8.0.19-rc, for redhat-linux-gnu (i686) using readline 5.1

Подключитесь к базе данных MySQL с помощью пользователя root и убедитесь, что соединение установлено успешно.

[local-host]# mysql -u root -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 13
Server version: 8.0.19-rc-community MySQL Community Server (GPL)

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql>

Следуйте инструкциям ниже, чтобы остановить и запустить MySQL

[local-host]# service mysql status
MySQL running (12588)                                      [  OK  ]
[local-host]# service mysql stop
Shutting down MySQL.                                       [  OK  ]
[local-host]# service mysql start
Starting MySQL.                                            [  OK  ]