RHEL7.3编译安装mariadb10.2.6

1、卸载系统自带的MySql或mariadb及boost
[[email protected] ~]# rpm -qa | grep mysql
[[email protected] ~]# rpm -qa | grep mariadb
mariadb-libs-5.5.52-1.el7.x86_64
[[email protected] ~]# rpm -e --nodeps mariadb-libs-5.5.52-1.el7.x86_64
[[email protected] ~]# rpm -qa|grep boost
[[email protected] ~]#

2、查看是否存在mysql用户及组

[[email protected] ~]# cat /etc/group | grep mysql
[[email protected] ~]# cat /etc/passwd | grep mysql

3、创建mysql用户和组

[[email protected] ~]# groupadd mysql

[[email protected] ~]# useradd -g mysql -s /usr/sbin/nologin  mysql

4、创建mariadb安装目录

[[email protected] ~]#  mkdir -p /usr/local/mysql/data

5、安装编译软件

[[email protected] ~]# yum install make gcc-c++ cmake  libaio libaio-devel perl-Data-Dumper net-tools  ncurses-devel bison bison-devel gcc-c++ ncurses-devel cmake  perl gcc autoconf automake zlib libxml libgcrypt libtool openssl-devel -y

6、安装lrzsz,使用lrzsz上传mariadb-10.2.6.tar.gz

[[email protected] ~]#  yum install lrzsz

[[email protected] ~]#  rz

上传MySql压缩包

7、解压mariadb-10.2.6.tar.gz数据包

[[email protected] ~]#tar zxvf mariadb-10.2.6.tar.gz

8、cmake
[[email protected] ~]#cd mariadb-10.2.6
[[email protected] ~]#cmake . -DCMAKE_INSTALL_PREFIX=/usr/local/mysql -DMYSQL_DATADIR=/usr/local/mysql/data -DSYSCONFDIR=/etc -DWITHOUT_TOKUDB=1 -DWITH_INNOBASE_STORAGE_ENGINE=1 -DWITH_ARCHIVE_STPRAGE_ENGINE=1 -DWITH_BLACKHOLE_STORAGE_ENGINE=1 -DWIYH_READLINE=1 -DWIYH_SSL=system -DVITH_ZLIB=system -DWITH_LOBWRAP=0 -DMYSQL_UNIX_ADDR=/usr/local/mysql/data/mysql.sock -DDEFAULT_CHARSET=utf8 -DDEFAULT_COLLATION=utf8_general_ci

9、make

make -j 6 \\指定几个线程处理

10、make install    \\安装到指定目录

11、更改mysql目录权限

[[email protected] ~]# chown -R mysql.mysql /usr/local/mysql/

12、把mysql的执行路径加入PATH中

[[email protected] ~]#  vi /etc/profile

export PATH=$PATH:/usr/local/mysql/bin            \\把此行加入到最后一行

[[email protected] ~]#  source /etc/profile

13、cp适合的配置文件
[[email protected] ~]# ls /usr/local/mysql/support-files/
magic                   my-large.cnf            mysqld_multi.server     
my-huge.cnf             my-medium.cnf           mysql-log-rotate        
my-innodb-heavy-4G.cnf  my-small.cnf            mysql.server

[[email protected] ~]#cp /usr/local/mysql/support-files/my-small.cnf   /etc/my.cnf

14、修改/etc/my.cnf
[[email protected] ~]# cat /etc/my.cnf
# Example MySQL config file for small systems.
#
# This is for a system with little memory (<= 64M) where MySQL is only used
# from time to time and it‘s important that the mysqld daemon
# doesn‘t use much resources.
#
# MySQL programs look for option files in a set of
# locations which depend on the deployment platform.
# You can copy this option file to one of those
# locations. For information about these locations, see:
# http://dev.mysql.com/doc/mysql/en/option-files.html
#
# In this file, you can use all long options that a program supports.
# If you want to know which options a program supports, run the program
# with the "--help" option.

# The following options will be passed to all MySQL clients
[client]
#password       = your_password
port            = 3306
socket          = /usr/local/mysql/data/mysql.sock

# Here follows entries for some specific programs

# The MySQL server
[mysqld]
basedir        = /usr/local/mysql               //增加
datadir        = /usr/local/mysql/data          //增加
port            = 3306
socket          = /usr/local/mysql/data/mysql.sock
skip-external-locking
key_buffer_size = 16K
max_allowed_packet = 1M
table_open_cache = 4
sort_buffer_size = 64K
read_buffer_size = 256K
read_rnd_buffer_size = 256K
net_buffer_length = 2K
thread_stack = 240K

# Don‘t listen on a TCP/IP port at all. This can be a security enhancement,
# if all processes that need to connect to mysqld run on the same host.
# All interaction with mysqld must be made via Unix sockets or named pipes.
# Note that using this option without enabling named pipes on Windows
# (using the "enable-named-pipe" option) will render mysqld useless!
#
#skip-networking
server-id       = 254

# Uncomment the following if you want to log updates
#log-bin=mysql-bin

# binary logging format - mixed recommended
#binlog_format=mixed

# Causes updates to non-transactional engines using statement format to be
# written directly to binary log. Before using this option make sure that
# there are no dependencies between transactional and non-transactional
# tables such as in the statement INSERT INTO t_myisam SELECT * FROM
# t_innodb; otherwise, slaves may diverge from the master.
#binlog_direct_non_transactional_updates=TRUE

# Uncomment the following if you are using InnoDB tables
#innodb_data_home_dir = /usr/local/mysql/data
#innodb_data_file_path = ibdata1:10M:autoextend
#innodb_log_group_home_dir = /usr/local/mysql/data
# You can set .._buffer_pool_size up to 50 - 80 %
# of RAM but beware of setting memory usage too high
#innodb_buffer_pool_size = 16M
#innodb_additional_mem_pool_size = 2M
# Set .._log_file_size to 25 % of buffer pool size
#innodb_log_file_size = 5M
#innodb_log_buffer_size = 8M
#innodb_flush_log_at_trx_commit = 1
#innodb_lock_wait_timeout = 50

[mysqldump]
quick
max_allowed_packet = 16M

[mysql]
no-auto-rehash
# Remove the next comment character if you are not familiar with SQL
#safe-updates

[myisamchk]
key_buffer_size = 8M
sort_buffer_size = 8M

[mysqlhotcopy]
interactive-timeout
[[email protected] ~]#

15、拷贝mysql服务
[[email protected] ~]# cp /usr/local/mysql/support-files/mysql.server  /etc/rc.d/init.d/mysqld

16、初始化数据库
[[email protected] scripts]# /usr/local/mysql/scripts/mysql_install_db --user=mysql --basedir=/usr/local/mysql/ --datadir=/usr/local/mysql/data/ --defaults-file=/etc/my.cnf

17、启动数据库
[[email protected] ~]# /etc/rc.d/init.d/mysqld start

18、查看端口是否正常
[[email protected] ~]# netstat -tunlp|grep 3306
tcp6       0      0 :::3306                 :::*                    LISTEN      1090/mysqld

19、设置MariaDB root密码

[[email protected] system]# /usr/local/mysql/bin/mysqladmin -u root  password "[email protected]"

20、登陆MariaDB数据库
[[email protected] ~]# mysql -u root -p
Enter password:
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 10
Server version: 10.2.6-MariaDB Source distribution

Copyright (c) 2000, 2017, Oracle, MariaDB Corporation Ab and others.

Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.

MariaDB [(none)]>

21、修改密码

ALTER USER ‘root‘@‘localhost‘ IDENTIFIED BY ‘[email protected]‘;

22、远程登录权限

GRANT ALL PRIVILEGES ON *.* TO [email protected]‘%‘ IDENTIFIED BY ‘[email protected]‘;

FLUSH PRIVILEGES;

23、配置mysql自启动
[[email protected] ~]# chkconfig --add mysqld
[[email protected] ~]# chkconfig mysqld on
[[email protected] ~]# chkconfig --list

Note: This output shows SysV services only and does not include native
      systemd services. SysV configuration data might be overridden by native
      systemd configuration.

If you want to list systemd services use ‘systemctl list-unit-files‘.
      To see services enabled on particular target use
      ‘systemctl list-dependencies [target]‘.

mysqld          0:off   1:off   2:on    3:on    4:on    5:on    6:off

24、为mysql开启防火墙

firewall-cmd --permanent --zone=public --add-port=3306/tcp

时间: 2024-10-14 03:59:52

RHEL7.3编译安装mariadb10.2.6的相关文章

源码编译安装mariadb-10.0.12数据库

源码安装mariadb-10.0.12 1.获取源码包 mariadb-10.0.12.tar.gz 2.编译环境准备 # yum groupinstall -y Development Tools # yum install -y ncurses-devel openssl-devel openssl 3.创建mysql用户 # groupadd mysql # useradd -s /sbin/nologin -g mysql -M mysql # id mysql uid=500(mysq

linux下一键编译安装MariaDB10.0.12

虽然网上有很多的lnmp一键安装包,可以直接安装集成环境. 但是有时候我们需要单独的安装mariadb,则可以使用下面的脚本来安装. # 一键CMAKE编译安装mariadb-10.0.12 # 安装到/usr/local/mariadb # 数据目录为/data/mysql # my.cnf文件是我自己修改的 一键安装包的文件目录结构如下: 我们只要自己将下面的文件组合成上图的结构,执行sh install.sh脚本即可完成安装. install.sh脚本内容如下: #!/bin/bash #

CentOS7.3编译安装MariaDB10.2.12

在CentOS7.3编译安装MariaDB10.2.12详细教程 1. 删除CentOS7.3默认数据库配置文件 查看默认数据库配置文件 [[email protected] ~]# find -H /etc/ | grep my.c /etc/pki/tls/certs/make-dummy-cert /etc/pki/tls/certs/renew-dummy-cert /etc/my.cnf.d /etc/my.cnf.d/mysql-clients.cnf /etc/my.cnf 删除默

Centos7 编译安装mariadb-10.1.22

mariadb-10.1.22 源码编译安装 下载文件https://mariadb.com/ 1.安装开发环境 yum groupinstall "Development Tools" 安装需要包: yum install -y ncurses-devel openssl-devel openssl 2.安装cmake tar -xf cmake-3.8.0.tar.gz cd cmake-3.8.0 ./bootstrap make make install 3.安装前准备 3.1

centos6.5系统编译安装mariadb-10.0.17

维基百科关于MariaDB的介绍:   MariaDB数据库管理系统是MySQL的一个分支,主要由开源社区在维护,采用GPL授权许可.开发这个分支的原因之一是:甲骨文公司收购了MySQL后,有将MySQL闭源的潜在风险,因此社区采用分支的方式来避开这个风险. MariaDB的目的是完全兼容MySQL,包括API和命令行,使之能轻松成为MySQL的代替品.在存储引擎方面,10.0.9版起使用XtraDB(名称代号为Aria)来代替MySQL的InnoDB. 创建mysql普通账号,设置数据库存储数

编译安装MariaDB-10.0.21

一.源码编译安装gcc-5.1.0 1.下载gcc源码包 Download (HTTP): http://ftpmirror.gnu.org/gcc/gcc-5.2.0/gcc-5.2.0.tar.bz2 Download (FTP): ftp://ftp.gnu.org/gnu/gcc/gcc-5.2.0/gcc-5.2.0.tar.bz2 2.解压压缩包 1 [[email protected] ~]# tar -xf  gcc-5.1.0.tar.gz 3.下载编译所需的依赖包 这个步骤有

CentOS 6.9 基于clang3.4 编译安装mariadb-10.2.12

系统平台: CentOS release 6.9 (Final) 内核 2.6.32-696.el6.x86_64 1.去官网下载适合的源码包 http://mariadb.org/ mariadb-10.2.12.tar.gz 检查系统内是否安装了数据库. #rpm -qa|grep MariaDB #rpm -qa|grep mysql cmake最新版本需要c++11支持,gcc4.8以下并未包含,而Centos 6.9的版本如下 #rpm -qa|grep gcc gcc-4.4.7-1

CentOS 6.9 基于gcc4.8.5编译安装mariadb-10.2.12

系统平台: CentOS release 6.9 (Final) 内核 2.6.32-696.el6.x86_64 1.去官网下载适合的源码包 http://mariadb.org/ mariadb-10.2.12.tar.gz 检查系统内是否安装了数据库. #rpm -qa|grep MariaDB #rpm -qa|grep mysql mariadb-10.2.12需要c++11特性支持,gcc4.8以下并未包含,而Centos 6.9的gcc版本为4.4.7 但在编译程序或运行程序时需要

CentOS-6.9 编译安装mariadb10.2

配置yum源 1.进入/etc/yum.repos.d/ cd /etc/yum.repos.d/ 2.将里面的文件所有文件都清除或是移到一个空目录里,个人建议直接删了. rm -rf * 3.创建一个yum源配置文件,"注意:后缀必须是repo" touch base.repo 4.在文件里面添加这么几行配置 vim base.repo #光盘源 [base] name=centos-6.9 baseurl=http://mirrors.aliyun.com/centos/6/os/