centOS7如何安装MariaDB

安装方式常用yum方式和自行下载安装包的方式。前者版本更新较缓慢,但胜在稳定,后者版本选择灵活自主。这里主要介绍yum方式

一、yum方式安装

1.1 安装

#yum直接安装
yum install mariadb-server
 
#启动并设置开机启动
systemctl start mariadb
systemctl enable mariadb
 
#查看数据库状态
systemctl status mariadb

1.2 配置

需要了解的是,linux中的很多输入不像windows是有提示的,在linux中可能是空白,但是确实输入进去了,大家请放心。

#执行安全性相关任务。你没看错,就是如下这样简单的一句话即可
mysql_secure_installation
 
#相关选项及含义
#设置系统管理员的密码(root用户),啥也不想设就直接回车即可
Enter current password for root (enter for none):  
 
#是否设置root密码,y
Set root password? [Y/n]  
 
#设置新密码并重复 密码输入后不显示,但是你正常输入就可以
New password:  
Re-enter new password: 
 
#是否不允许匿名用户访问,安全起见,建议选y
Remove anonymous users? [Y/n] 
 
是否拒绝远程登录。这里肯定选n吧。后续肯定会用各种工具远程访问的吧。
Disallow root login remotely? [Y/n] 
 
#是否删除test数据库,根据自己喜好选择即可
Remove test database and access to it? [Y/n] 
 
#重新加载权限表。y即可
Reload privilege tables now? [Y/n] 

补充一句,mariadb不像MySQL,没有密码复杂度的要求

1.3 测试本地登录

先测试本地登录,在命令行执行如下命令,如果看到如下面所示内容,说明本地登录成功

-bash-4.2$ mysql -uroot -p
Enter password: 
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 22
Server version: 5.5.68-MariaDB MariaDB Server
 
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.
 
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
 
MariaDB [(none)]> 

你可能感兴趣的:(centos7mariadb)