手机版
你好,游客 登录 注册
背景:
阅读新闻

在RHEL/CentOS上安装和配置MariaDB

[日期:2018-01-13] 来源:Linux公社  作者:鱼鱼 [字体: ]

MariaDB是一个开源的关系数据库,是一个社区开发的MySQL数据库分支版本。 MariaDB已经取代了MySQL作为RHEL/CentOS 7中的默认数据库。

在本教程中,我们将讨论在CentOS/RHEL 7机器上安装和配置MariaDB。

(适用于初学者的MariaDB管理命令 http://www.linuxidc.com/Linux/2018-01/150297.htm

安装

从RHEL / CentOS 7开始,MariaDB可用于两个操作系统的默认存储库。 所以我们可以简单地使用yum进行安装。 要安装它,请从终端执行以下命令,

$ yum install mariadb mariadb-server

一旦安装,我们将开始它的服务,并启用它,

$ systemctl start mariadb
$ systemctl enable mariadb

数据库现在正在运行,您可以通过运行登录到Mariadb

$ mysql

在终端。 root用户的默认密码默认为空白,你可以想象这是一个严重的安全威胁。 所以我们现在将确保我们的安装。

配置MariaDB

我们现在将通过在我们的终端中运行“mysql_secure_installation”来保护我们的MariaDB安装。 确保您仔细阅读程序的每一步,以确保安装,

$ mysql_secure_installation

/usr/bin/mysql_secure_installation: line 379: find_mysql_client: command not found


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: ROOTPASSWORD
Re-enter new password: ROOTPASSWORD
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, yourMariaDB
installation should now be secure.


Thanks for using MariaDB!

就这样,我们的数据库现在是安全的,可以使用了。 我们现在可以通过使用登录到我们安装的MariaDB。

$ mysql –u root –p

可以继续创建新的数据库,表或用户。

这是我们关于安装和配置MariaDB的教程。如果有任何疑问或问题,请在下面的评论框中提及。

更多MariaDB相关教程见以下内容

Ubuntu 16.04 LTS 上安装 Nginx、MariaDB 和 HHVM 运行 WordPress  http://www.linuxidc.com/Linux/2016-10/136435.htm

Ubuntu 16.04 Dockerfile 安装MariaDB  http://www.linuxidc.com/Linux/2016-09/135260.htm

Linux系统教程:如何检查MariaDB服务端版本  http://www.linuxidc.com/Linux/2015-08/122382.htm

Ubuntu 16.04下如何安装MariaDB  http://www.linuxidc.com/Linux/2017-04/142915.htm

CentOS 7.3二进制安装MariaDB10.2.8步骤  http://www.linuxidc.com/Linux/2017-10/147904.htm

CentOS 7 编译安装MariaDB-10.1.22  http://www.linuxidc.com/Linux/2017-05/143291.htm

Ubuntu 上如何将 MySQL 5.5 数据库迁移到 MariaDB 10  http://www.linuxidc.com/Linux/2014-11/109471.htm

[翻译]Ubuntu 14.04 (Trusty) Server 安装 MariaDB  http://www.linuxidc.com/Linux/2014-12/110048htm

Ubuntu 14.04(Trusty)安装MariaDB 10数据库  http://www.linuxidc.com/Linux/2016-11/136833.htm

MariaDB 的详细介绍请点这里
MariaDB 的下载地址请点这里

本文永久更新链接地址http://www.linuxidc.com/Linux/2018-01/150296.htm

linux
本文评论   查看全部评论 (0)
表情: 表情 姓名: 字数

       

评论声明
  • 尊重网上道德,遵守中华人民共和国的各项有关法律法规
  • 承担一切因您的行为而直接或间接导致的民事或刑事法律责任
  • 本站管理人员有权保留或删除其管辖留言中的任意内容
  • 本站有权在网站内转载或引用您的评论
  • 参与本评论即表明您已经阅读并接受上述条款