linux环境安装mariadb,linux环境下安装Mariadb

linux环境安装mariadb,linux环境下安装Mariadb一、下载安装mariadb是属于mysql的一个分支,是其创始人在mysql被卖给oracle之后重新分出来的,maria取自于他女儿的名字。mariadb完全兼容于mysql,在很多新版本的linux系统中,mysql都已经被替换成了mariadb。mariadb的官网:mariadb官网,下载地址:下载地址。最新稳定版本的下载直链为:wgethttps://downloads.mariadb…

大家好,又见面了,我是你们的朋友全栈君。

一、下载安装

mariadb是属于mysql的一个分支,是其创始人在mysql被卖给oracle之后重新分出来的,maria取自于他女儿的名字。mariadb完全兼容于mysql,在很多新版本的linux系统中,mysql都已经被替换成了mariadb。

mariadb的官网:mariadb官网,下载地址:下载地址。最新稳定版本的下载直链为:

wget https://downloads.mariadb.com/MariaDB/mariadb-10.5.0/bintar-linux-systemd-x86_64/mariadb-10.5.0-linux-systemd-x86_64.tar.gz

1

wgethttps://downloads.mariadb.com/MariaDB/mariadb-10.5.0/bintar-linux-systemd-x86_64/mariadb-10.5.0-linux-systemd-x86_64.tar.gz

首先把安装包下载到本地,然后解压到/usr/local目录:

tar -zxvf mariadb-10.5.0-linux-systemd-x86_64.tar.gz -C /usr/local/

ln -s /usr/local/mariadb-10.5.0-linux-systemd-x86_64/ /usr/local/mysql

1

2

tar-zxvfmariadb-10.5.0-linux-systemd-x86_64.tar.gz-C/usr/local/

ln-s/usr/local/mariadb-10.5.0-linux-systemd-x86_64//usr/local/mysql

初始化数据库,设定数据存储目录为/appdata/mysql,启动用户为mysql:

# 创建mysql用户

useradd -s /sbin/nologin -M mysql

# 创建数据库文件夹

mkdir /appdata/mysql -p

# 初始化数据库

/usr/local/mysql/scripts/mysql_install_db \

–basedir=/usr/local/mysql \

–datadir=/appdata/mysql \

–user=mysql

1

2

3

4

5

6

7

8

9

# 创建mysql用户

useradd-s/sbin/nologin-Mmysql

# 创建数据库文件夹

mkdir/appdata/mysql-p

# 初始化数据库

/usr/local/mysql/scripts/mysql_install_db\

–basedir=/usr/local/mysql\

–datadir=/appdata/mysql\

–user=mysql

初始化数据库的过程中如果报错:

> Installing MariaDB/MySQL system tables in ‘/xxx/mariadb’ …

/usr/local/mariadb/bin/mysqld: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory

Installation of system tables failed! Examine the logs in

/udata/mariadb for more information.

1

2

3

4

5

6

7

>InstallingMariaDB/MySQLsystemtablesin’/xxx/mariadb’…

/usr/local/mariadb/bin/mysqld:errorwhileloadingsharedlibraries:libaio.so.1:cannotopensharedobjectfile:Nosuchfileordirectory

Installationofsystemtablesfailed!Examinethelogsin

/udata/mariadbformoreinformation.

说明系统缺少组件库libaio,需要安装手动安装:

# centos

yum install libaio libaio-devel

# ubuntu

apt install libaio1

1

2

3

4

# centos

yuminstalllibaiolibaio-devel

# ubuntu

aptinstalllibaio1

执行成功后输出:

Installing MariaDB/MySQL system tables in ‘/appdata/mysql’ …

OK

To start mysqld at boot time you have to copy

support-files/mysql.server to the right place for your system

1

2

3

4

5

6

7

InstallingMariaDB/MySQLsystemtablesin’/appdata/mysql’…

OK

Tostartmysqldatboottimeyouhavetocopy

support-files/mysql.servertotherightplaceforyoursystem

到这里数据库就已经安装完成了,接下来要做的就是配置。

二、配置

修改my.cnf,设置pid/socket/log等文件的路径,把它们统一存到/appdata/mysql/run/下:

[mysqld]

datadir=/appdata/mysql

socket=/appdata/mysql/run/mysql.sock

# Disabling symbolic-links is recommended to prevent assorted security risks

symbolic-links=0

# Settings user and group are ignored when systemd is used.

# If you need to run mysqld under a different user or group,

# customize your systemd unit file for mariadb according to the

# instructions in http://fedoraproject.org/wiki/Systemd

[mysqld_safe]

log-error=/appdata/mysql/run/mysql.log

pid-file=/appdata/mysql/run/mysql.pid

[mysql]

socket=/appdata/mysql/run/mysql.sock

[mysqladmin]

socket=/appdata/mysql/run/mysql.sock

#

# include all files from the config directory

#

!includedir /etc/my.cnf.d

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

[mysqld]

datadir=/appdata/mysql

socket=/appdata/mysql/run/mysql.sock

# Disabling symbolic-links is recommended to prevent assorted security risks

symbolic-links=0

# Settings user and group are ignored when systemd is used.

# If you need to run mysqld under a different user or group,

# customize your systemd unit file for mariadb according to the

# instructions in http://fedoraproject.org/wiki/Systemd

[mysqld_safe]

log-error=/appdata/mysql/run/mysql.log

pid-file=/appdata/mysql/run/mysql.pid

[mysql]

socket=/appdata/mysql/run/mysql.sock

[mysqladmin]

socket=/appdata/mysql/run/mysql.sock

#

# include all files from the config directory

#

!includedir/etc/my.cnf.d

注意:

/appdata/mysql/run目录要提前创建

如果修改了socket的路径,还要修改[mysql]和[mysqladmin]段的socket路径,要和[mysqld]中的socket路径一致

设置路径权限:

chown mysql.mysql -R /usr/local/mysql /appdata/mysql

1

chownmysql.mysql-R/usr/local/mysql/appdata/mysql

添加mysql命令到系统路径,修改/etc/profile文件:

MYSQL_HOME=/usr/local/mysql

export PATH=$PATH:$MYSQL_HOME/bin

1

2

MYSQL_HOME=/usr/local/mysql

exportPATH=$PATH:$MYSQL_HOME/bin

修改后source /etc/profile生效。

三、添加系统服务

3.1 service系统服务

对于使用service命令启动的服务,复制mysql主目录下的support/mysql.server文件到/etc/init.d/:

cp /usr/local/mysql/support-files/mysql.server /etc/init.d/mysqld

chmod +x /etc/init.d/mysqld

1

2

cp/usr/local/mysql/support-files/mysql.server/etc/init.d/mysqld

chmod+x/etc/init.d/mysqld

然后修改文件中的配置:

basedir=/usr/local/mysql # 安装目录

datadir=/appdata/mysql # 数据目录

mysqld_pid_file_path=/appdata/mysql/run/mysql.pid # pid文件目录

1

2

3

basedir=/usr/local/mysql# 安装目录

datadir=/appdata/mysql# 数据目录

mysqld_pid_file_path=/appdata/mysql/run/mysql.pid# pid文件目录

注意:配置要和上面my.cnf中的配置一一对应

启动:service mysqld start。

添加到开机启动:

chkconfig –add mysqld

chkconfig mysqld on

1

2

chkconfig–addmysqld

chkconfigmysqldon

3.2 systemd系统服务

systemd服务的文件在安装路径/support-files/systemd/mariadb.service:

cp support-files/systemd/mariadb.service /etc/systemd/system/mysqld.service

1

cpsupport-files/systemd/mariadb.service/etc/systemd/system/mysqld.service

复制完后执行systemctl start mysqld启动服务,然后设置开机启动:

systemctl enable mysqld

1

systemctlenablemysqld

四、设置root用户密码

系统服务起来后,可以使用mysqladmin初始化root用户的密码:

mysqladmin -u root password ‘123456’

1

mysqladmin-urootpassword’123456′

如果出现:

d932148070bd94ecf978fdc24436a3e5.png

说明没有没有权限登录,需要通过安全模式启动mysql来修改root密码,在my.cnf中添加以下内容:

[mysqld]

skip-grant-tables

skip-networking

1

2

3

[mysqld]

skip-grant-tables

skip-networking

然后重启服务,使用root身份登录(不用密码),再执行命令修改密码:

use mysql;

# 刷新权限

flush privileges;

# 设置密码

set password for ‘root’@’localhost’ = password(‘123456’);

# 刷新权限

flush privileges;

1

2

3

4

5

6

7

usemysql;

# 刷新权限

flushprivileges;

# 设置密码

set password for’root’@’localhost’=password(‘123456’);

# 刷新权限

flushprivileges;

如果执行命令的时候出现报错:

ERROR 1290 (HY000): The MariaDB server is running with the –skip-grant-tables option so it cannot execute this statement

1

ERROR1290(HY000):TheMariaDBserverisrunningwiththe–skip-grant-tablesoptionsoitcannotexecutethisstatement

说明安全模式下的权限还没有更新,要先刷新一下权限才行:

flush privileges;

1

flushprivileges;

修改完成后去掉my.cnf中添加的参数,重启服务,使用上面设置的密码登陆就可以了:

Welcome to the MariaDB monitor. Commands end with ; or \g.

Your MariaDB connection id is 11

Server version: 10.4.8-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)]>

1

2

3

4

5

6

7

8

9

WelcometotheMariaDBmonitor.Commandsendwith;or\g.

YourMariaDBconnectionidis11

Serverversion:10.4.8-MariaDBMariaDBServer

Copyright(c)2000,2018,Oracle,MariaDBCorporationAbandothers.

Type’help;’or’\h’forhelp.Type’\c’toclearthecurrentinputstatement.

MariaDB[(none)]>

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/133664.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • 苹果屏蔽更新描述文件_屏蔽iPhone更新的iOS描述文件安装办法「建议收藏」

    屏蔽iOS更新分两种,第一种非越狱设备,只能系统在12.1以下的才能安装屏蔽描述文件safari浏览器输入ibeta.me回车,找到下图的屏蔽OTA更新,直接安装就行了第二种越狱设备,首先添加源https://xsf1re.github.io/repo/安装下图这个插件这个文件可以解除12.1以上设备描述文件失效不允许安装的问题,作者说写着兼容12.4-13.3,其他系统的老铁们自…

  • pytest fixtures_pytest allure

    pytest fixtures_pytest allurefixture的优势Pytest的fixture相对于传统的xUnit的setup/teardown函数做了显著的改进:命名方式灵活,不局限于setup和teardown这几个命名conf

  • 什么是RPC协议?RPC协议与HTTP协议的区别

    什么是RPC协议?RPC协议与HTTP协议的区别什么是RPC协议?RPC是一种远程过程调用的协议,使用这种协议向另一台计算机上的程序请求服务,不需要了解底层网络技术的协议。在RPC中,发出请求的程序是客户程序,而提供服务的程序是服务器。HTTP是一种超文本传输协议。是WWW浏览器和WWW服务器之间的应用层通讯协议。RPC协议与HTTP协议的区别1、RPC是一种API,HTTP是一种无状态的网络协议。RPC可以基于HTTP协议实现,…

  • 决策树模型的用途_决策树模型怎么建立

    决策树模型的用途_决策树模型怎么建立概念定义在特征空间与类空间上的条件概率分布,即给定特征条件下类的条件概率分布;也可以认为是if-then规则的集合优点模型具有可读性,分类速度快。模型首先,介绍一下决策树模型:由结点和有向边组成,结点又可分为内部结点和叶结点。内部结点表示一个特征或属性,叶结点表示一个类。决策树与条件概率分布决策树所表示的条件概率分布由各个单元给定条件下的类的条件概率分布组成。若X表…

    2022年10月21日
  • h3c路由器远程管理_h3c无线路由器怎么设置

    h3c路由器远程管理_h3c无线路由器怎么设置H3C路由器telnet进去以后重启的命令是什么啊?在用户模式下输入,reboot建议在重启之前进行设备配置的保存。避免丢失最近的配置操作。保存设备配置命令为:在用户模式下输入,save输入以上两种命令时,均会自动弹出提示信息,要求管理员确认是否进行重启或保存配置操作,弹出提示信息后输入Y即可。Y代表确认(yes)。H3C路由交换机清除所有配置的命令是?H3C路由交换机清除所有配置的命令是:re…

    2022年10月17日
  • JAVA Class类与反射

    JAVA Class类与反射关于Class类与Class对象与反射Class类与Class对象Class对象是Class类的实例,类至少包含以下信息,因此class类又可以被解构为如下部分:权限修饰符类名参数化类型(泛型信息)接口Interface注解Annotation字段Field(重点)构造器Constructor(重点)方法Methd(重点)以下图为例:整个.class文件最终都成为字节数组byte[]b,里面的构造器、方法等各个“组件”,其实也是字节。打开Class类的源代码,发现果然如此:

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号