阿里云-云小站(无限量代金券发放中)
【腾讯云】云服务器、云数据库、COS、CDN、短信等热卖云产品特惠抢购

在RHEL/CentOS上安装和配置MariaDB

143次阅读
没有评论

共计 3178 个字符,预计需要花费 8 分钟才能阅读完成。

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

正文完
星哥说事-微信公众号
post-qrcode
 
星锅
版权声明:本站原创文章,由 星锅 2022-01-22发表,共计3178字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。
【腾讯云】推广者专属福利,新客户无门槛领取总价值高达2860元代金券,每种代金券限量500张,先到先得。
阿里云-最新活动爆款每日限量供应
评论(没有评论)
验证码
【腾讯云】云服务器、云数据库、COS、CDN、短信等云产品特惠热卖中