centos7安装mariadb

Mariadb

1.配置数据库yum源

[[email protected] ~]# cat /etc/yum.repos.d/MariaDB.repo 
# MariaDB 10.1 CentOS repository list - created 2016-05-12 09:28 UTC
# http://mariadb.org/mariadb/repositories/
[mariadb]
name = MariaDB
baseurl = http://yum.mariadb.org/10.1/centos7-amd64
gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
gpgcheck=1

至MariaDB.repo文件,保存文件并退出

安装数据库:

yum install MariaDB-server MariaDB-client -y

2.Mariadb服务

启动服务:

systemctl start mariadb.service

停止服务:

systemctl stop mariadb.service

重启服务:

systemctl restart mariadb.service

查看状态

systemctl status mariadb.service

3.生产服务器需要执行mysql_secure_installation

[[email protected] ~]# /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] n //是否设置root密码
 ... skipping.
 
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 //是否允许root远程登陆
 ... 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  //是否删除test库
 - 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!

登陆mysql

[[email protected] ~]# mysql
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 8
Server version: 10.1.14-MariaDB MariaDB Server
 
Copyright (c) 2000, 2016, Oracle, MariaDB Corporation Ab and others.
 
Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.
 
MariaDB [(none)]> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
+--------------------+
3 rows in set (0.00 sec)
 
MariaDB [(none)]> Bye

设置root密码

‘/usr/bin/mysqladmin‘ -u root password ‘new-password‘
‘/usr/bin/mysqladmin‘ -u root -h iZ250234rf8Z password ‘new-password‘
时间: 2024-10-01 02:58:37

centos7安装mariadb的相关文章

Centos7安装mariadb galera cluster数据库集群 & 详解

#Galera集群特点 集群之间无延时,同步复制.而master-slave主从异步复制,存在延迟. active-active多主,集群内部服务器都是同时写,必须等所有集群内所有数据库都完成数据写入,才会反馈完成,所以不存在数据丢失的情况. 集群节点自动故障转移,如果集群中单个节点故障,失效节点会自动被清除. 扩展方便,只要将新的节点添加到集群,新节点自动复制数据. #Galera集群原理     #主要通过galera插件保证数据的一致性,该数据复制的过程是可认证的复制,原理如下: #解析

CentOS7 安装MariaDB

MariaDB数据库管理系统是MySQL的一个分支.开发这个分支的原因之一是:甲骨文公司收购了MySQL后,有将MySQL闭源的潜在风险,因此社区采用分支的方式来避开这个风险.MariaDB的目的是完全兼容MySQL,包括API和命令行,使之能轻松成为MySQL的代替品.一些如谷歌.维基.LinkedIn.Mozilla等的顶级的网站已经迁移到MariaDB了 安装MySQL,发现是CentOS 7 版本将MySQL数据库软件从默认的程序列表中移除,用mariadb代替.毫不客气,折腾小海狮.

centos7 安装mariaDB 以及 phpmyadmin的安装

一:安装mariadb, mariadb 是 mysql 的一个分支,基本和mysql一样的 1. yum -y install mariadb-server 2. vi /etc/my.cnf.d/server.cnf 在第13行添加 character-set-server=utf8 3.启动mariadb服务 service mariadb start systemctl enable mariadb 4: 配置 mariadb mysql_secure_installation 设置 m

centos7 安装mariadb数据库

1.安装mariadb数据库 yum install -y maraidb mariadb-server 2.登录Mariadb,报Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2) 错误 [[email protected] ~]# mysql -uroot -pEnter password: ERROR 2002 (HY000): Can't connect to local M

centos7 安装 mariadb 的正确命令

使用的是linode的centos7系统,安装mysql发现已经默认的是mariadb. 但是不管是使用linode官网说明还是百度搜索到的的根本安装方法无法安装成功. 总是提示这一句: ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2) 最后通过google 搜索 install mariadb on centos 7得到了安装的关键一步.

centos7安装mariadb(mysql的替代品)

mariadb做为mysql的替代品 现在centos的新版本yum包已换成mariadb 安装一些库 yum install gcc gcc-c++ wget net-tools 复制代码 查看SELinux状态: /usr/sbin/sestatus -v 复制代码 #如果SELinux status参数为enabled即为开启状态;如果为关闭可以跳过修改/etc/selinux/config文件 vi /etc/selinux/config 复制代码 将SELINUX=enforcing改

Centos7 安装 mariadb

centos7 以后mysql 被mariadb代替 根据资料,mariadb数据库的启动命令是: systemctl start mariadb  #启动MariaDB systemctl stop mariadb  #停止MariaDB systemctl restart mariadb  #重启MariaDB systemctl enable mariadb  #设置开机启动 我执行以上命令,没有任何返回值.看来得研究一下mariadb数据了.

centos7 快速安装 mariadb(mysql)

nbsp; centos7 快速安装 mariadb(mysql) 默认安装 mariadb 5.5.如果安装 mariadb 10.0 需要修改源 Centos 使用YUM安装MariaDB 出于安全考虑,不应该使用 root安装.所以应该新建一个用户 CentOS 7中MARIADB安装配置步骤详解

centos7安装mysql(MariaDB)

1.centos7现状: 新系统无法再使用yum install mysql-server来安装mysql,因为已使用mariadb代替mysql. 2.安装mariadb: [[email protected] ~]# yum -y install mariadb* Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: mirrors.linode.com * extras: mirro