linux(centos7.5)编译安装 mysql5.7
作者:互联网
下载
官网地址 https://dev.mysql.com/downloads/mysql/
可选择安装系统 centos 选择 linux通用 根据服务器系统选择 32/64位 选择 安装版本 当前最新 8.0
点击 Looking for the latest GA version? 选择 5.7
然后复制链接 https://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.33-linux-glibc2.12-x86_64.tar.gz 进入服务器
wget https://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.33-linux-glibc2.12-x86_64.tar.gz
解压 复制
#解压
tar -xzvf mysql-5.7.33-linux-glibc2.12-x86_64.tar.gz
#复制mysql 源文件到 /usr/local/mysql (自定义)
cp -r mysql-5.7.33-linux-glibc2.12-x86_64/ /usr/local/mysql
修改 my.conf
vim /etc/my.conf
[mysqld]
#mysql安装路径
basedir=/usr/local/mysql
#mysql数据存储路径
datadir=/usr/local/mysql/data
#连接文件
socket=/tmp/mysql.sock
#启动用户
user=mysql
#端口号
port=3306
#全局字符集
character-set-server=utf8
## 是否免密登录 需要重置密码时可以打开
#skip-grant-tables
##是否支持分区存储
symbolic-links=0
[client]
##连接客户端端口
port=3306
##连接文件
socket=/tmp/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=/var/log/mysql/error.log
## 启动后的进程 pid
pid-file=/var/run/mysql/mysql.pid
#
# include all files from the config directory
#
!includedir /etc/my.cnf.d
添加 用户及用户组
#添加用户组
gruopadd mysql
#添加用户并归属到 mysql组
useradd mysql -g mysql
#查看
groups mysql
修改权限
保证mysql 用户有权操作 my.conf 中所设置的所以文件及文件夹 包括pid文件日志文件
#用户组给文件夹权限
chown -R mysql:mysql /var/local/mysql
#用户给文件夹权限
chown -R mysql /var/local/mysql
# 修改文件权限
chmod -r 755 /var/local/mysql
启动
service mysql start|stop|restart
标签:5.7,##,mysql5.7,linux,64,mysql,local,centos7.5 来源: https://blog.csdn.net/BookNoteY/article/details/115607864