Hoster.ru
Hoster.ru
Электролитный проезд, д.3, стр.47 115230 Россия, Москва 8 800 200 05 42
Hoster.ru

Установка MariaDB 10.1 в Fedora 25/24, CentOS/RHEL 7.3/6.8/5.11

MariaDB database server полностью совместим с MySQL. Это значит, что вы можете удалить MySQL, установить MariaDB и продолжить работу с базами данных без каких-либо дополнительных действий.

Почему именно MariaDB?

  • MariaDB — открытая версия MySQL.
  • Работает как MySQL и совместим с настройками MySQL.
  • Fedora, Red Hat/CentOS переходят на использование MariaDB начиная с Fedora 19/RHEL 7/CentOS 7.

1. Авторизуемся под root-пользователем

su -

## или ##

sudo -i

2. Добавляем репозитории MariaDB

Fedora 25/24/23

Примечание: в настоящее время пользователи Fedora 25/24/23 могут установить MariaDB 10.1 без дополнительных репозиториев. Для установки другой версии MariaDB необходимо использовать дополнительные репозитории.

## Fedora 25/24/23 MariaDB 10.1 ##

wget -O /etc/yum.repos.d/MariaDB.repo http://mariadb.if-not-true-then-false.com/fedora/$(rpm -E %fedora)/$(uname -i)/10_1

или

## Fedora 25/24/23 MariaDB 10.2 ##

wget -O /etc/yum.repos.d/MariaDB.repo http://mariadb.if-not-true-then-false.com/fedora/$(rpm -E %fedora)/$(uname -i)/10_2
## CentOS 7/6/5 MariaDB 10.1 ##

wget -O /etc/yum.repos.d/MariaDB.repo http://mariadb.if-not-true-then-false.com/centos/$(rpm -E %centos)/$(uname -i)/10_1

 или

## CentOS 7/6/5 MariaDB 10.2 ##

wget -O /etc/yum.repos.d/MariaDB.repo http://mariadb.if-not-true-then-false.com/centos/$(rpm -E %centos)/$(uname -i)/10_2

или 

## CentOS 7/6/5 MariaDB 10.0 ##

wget -O /etc/yum.repos.d/MariaDB.repo http://mariadb.if-not-true-then-false.com/centos/$(rpm -E %centos)/$(uname -i)/10

или 

## CentOS 7/6/5 MariaDB 5.5 ##

wget -O /etc/yum.repos.d/MariaDB.repo http://mariadb.if-not-true-then-false.com/centos/$(rpm -E %centos)/$(uname -i)/5

Red Hat (RHEL) 7/6/5
## Red Hat (RHEL) 7/6/5 MariaDB 10.1 ##

wget -O /etc/yum.repos.d/MariaDB.repo http://mariadb.if-not-true-then-false.com/rhel/$(rpm -E %rhel)/$(uname -i)/10_1

или 

## Red Hat (RHEL) 7/6/5 MariaDB 10.2 ##

wget -O /etc/yum.repos.d/MariaDB.repo http://mariadb.if-not-true-then-false.com/rhel/$(rpm -E %rhel)/$(uname -i)/10_2

или 

## CentOS 7/6/5 MariaDB 10.0 ##

wget -O /etc/yum.repos.d/MariaDB.repo http://mariadb.if-not-true-then-false.com/centos/$(rpm -E %centos)/$(uname -i)/10

или 

## Red Hat (RHEL) 7/6/5 MariaDB 5.5 ##

wget -O /etc/yum.repos.d/MariaDB.repo http://mariadb.if-not-true-then-false.com/rhel/$(rpm -E %rhel)/$(uname -i)/5

3. Устанавливаем MariaDB 10.1/10.0

Fedora 25/24/23 (собственные пакеты)

dnf install mariadb mariadb-server

CentOS/Red Hat (RHEL) 7.3/6.8/5.11 (и  Fedora 25/24/23 используют MariaDB репозитории)

yum install MariaDB MariaDB-server

4. Запускаем MariaDB server и добавляем его в автозагрузку

Fedora 25/24/23 и CentOS/RHEL 7.3

systemctl start mariadb.service


systemctl enable mariadb.service

CentOS 6.8/5.11 и Red Hat (RHEL) 6.8/5.11

service mysql start

или

/etc/init.d/mysql start


chkconfig --levels 235 mysql on

5. Запускаем безопасную установка MariaDB

Установка/смена root-пароля

Удаление анонимного пользователя (users)

Отключение удаленного подключения root-пользователя

Удаление тестовой базы данных и доступа к ней

Смена привилегий таблиц

Запустим безопасную установку MariaDB командой:

/usr/bin/mysql_secure_installation
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB

      SERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY!


In order to log into MariaDB to secure it, we\'ll need the current

password for the root user.  If you\'ve just installed MariaDB, 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 MariaDB

root user without the proper authorisation.


Set root password? [Y/n] y

New password:

Re-enter new password:

Password updated successfully!

Reloading privilege tables..

 ... Success!


By default, a MariaDB installation has an anonymous user, allowing anyone

to log into MariaDB 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, MariaDB 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 MariaDB

installation should now be secure.


Thanks for using MariaDB!

Важно: Если вы не хотите производить безопасную установку, необходимо как минимум изменить пароль для root-пользователя.

mysqladmin -u root password [ваш_новый_секретый_пароль]

Пример

mysqladmin -u root password Mypas1f45h5h14csy

6. Подключаемся к MySQL базе данных с паролем

mysql -u root -p

Mysql Сервер MariaDB установлен.

Оригинал статьи: https://www.if-not-true-then-false.com/2013/install-mariadb-on-fedora-centos-rhel/  

Мы используем файлы cookie. Продолжив работу с сайтом, вы соглашаетесь с Политикой обработки персональных данных.