微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

CentOS 7 上编译安装MySQL 5.6.23

1.下载源码

wgethttp://dev.MysqL.com/get/Downloads/mysql-5.6/mysql-5.6.23.tar.gz

2.解压

tarzxvfmysql-5.6.23.tar.gz

3..安装必要的包

sudoyuminstallcmakegcc-c++ncurses-develperl-Data-Dumper

4.进入MysqL源码目录,生成makefile

cmake

5.编译

make

6.安装

sudomakeinstall

MysqL将会安装到/usr/local/MysqL路径。

7.添加MySQL用户和组

sudogroupaddMysqL

sudouseradd-r-gMysqLMysqL

8.修改目录和文件权限,安装数据库

cd/usr/local/MysqL

sudochown-RMysqL.

sudochgrp-RMysqL.

sudoscripts/MysqL_install_db--user=MysqL

sudochown-Rroot.

sudochown-RMysqLdata

至此,MysqL就可以启动运行了。

9.启动MysqL

CentOS7自带MariaDB的支持,/etc下认存在my.cnf文件干扰MysqL运行,需要先删掉

cd/etc

sudorm-frmy.cnfmy.cnf.d

然后再/etc下重建my.cnf文件内容如下



# For advice on how to change settings please see
# http://dev.MysqL.com/doc/refman/5.6/en/server-configuration-defaults.html

[MysqLd]

# Remove leading # and set to the amount of RAM for the most important data
# cache in MysqL. Start at 70% of total RAM for dedicated server,else 10%.
# innodb_buffer_pool_size = 128M

# Remove leading # to turn on a very important data integrity option: logging
# changes to the binary log between backups.
# log_bin
# These are commonly set,remove the # and set as required.
# basedir = .....
# datadir = /data/MysqL/data
# port = .....
# server_id = .....
# socket = .....
# Remove leading # to set options mainly useful for reporting servers.
# The server defaults are faster for transactions and fast SELECTs.
# Adjust sizes as needed,experiment to find the optimal values.
# join_buffer_size = 128M
# sort_buffer_size = 2M
# read_rnd_buffer_size = 2M

max_connection = 10000
sql_mode = NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES
#binary log
log-bin = MysqL-bin
binlog_format = mixed
expire_logs_day = 30
#slow query log
slow_query_log = 1
slow_query_log_file = /var/log/MysqL/slow.log
long_query_time = 3
log-queries-not-using-indexes
log-slow-admin-statements


修改/usr/local/MysqL my.cnf文件

现在可以启动MysqL

sudo/usr/local/MysqL/bin/MysqLd_safe--user=MysqL&

CentOS7 不能使用service控制MysqL服务,而源码安装的MysqL也没有提供Systemd的控制脚本。

于是编辑/etc/rc.d/rc.local文件添加MysqL的开机启动命令。

/usr/local/MysqL/bin/MysqLd_safe--user=MysqL&

sudochmoda+x/etc/rc.d/rc.local


10.修改root密码

/usr/loca/MysqL/bin/MysqL -uroot
use MysqL;
UPDATE user SET password = PASSWORD('test2015') WHERE user = 'root';

GRANT ALL PRIVILEGES ON *.* TO root@'%' IDENTIFIED BY 'passwd2015';

//开放远程连接权限

grant all PRIVILEGES on db_name.* to 'root'@'123.207.249.146' identified by 'Root123456' WITH GRANT OPTION;

FLUSHPRIVILEGES;

至此,安装基本完成了,一个MysqL就能用了。

原文地址:https://www.jb51.cc/centos/380090.html

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