系统平台: Centos release 7.4 (Final) 内核 3.10.0-693.el7.x86_64 1.去官网下载二进制包 https://dev.Mysql.co
系统平台:
Centos release 7.4 (Final) 内核 3.10.0-693.el7.x86_64
https://dev.Mysql.com/downloads/mysql/
#getent group mysql > /dev/null || groupadd mysql
#getent passwd mysql > /dev/null || useradd -g mysql -r -s /sbin/nologin mysql
#tar xvf mysql-5.6.39-linux-glibc2.12-x86_64.tar.gz -C /usr/local/
#cd /usr/local/
#ln -sv mysql-5.6.39-linux-glibc2.12-x86_64/ mysql
#chown -R mysql.mysql mysql/
#echo 'PATH=/usr/local/mysql/bin:$PATH' >> /etc/profile.d/mysql.sh
检查文件
#cat /etc/profile.d/mysql.sh
加载环境变量文件 并检查
#source /etc/profile.d/mysql.sh
#echo $PATH
# mkdir -pv /data/mysqldb/3306/{logs,bin-logs,run,data}
# touch /data/mysqldb/3306/run/mysqld.pid
# touch /data/mysqldb/3306/logs/mysql-error.log
# chown -R mysql.mysql /data/mysqldb/ -R
# chmod -R 770 /data/mysqldb/
# chown -R mysql.mysql /data/mysqldb/
# chmod -R 770 /data/mysqldb
文件没有创建的话,启动Mysql时将会报错
#vim /etc/my.cnf
[client]
port = 3306
Socket = /tmp/mysql.sock
default-character-set=utf8
[mysqld]
user = mysql
port = 3306
basedir=/usr/local/mysql
datadir = /data/mysqldb/3306/data
socket = /tmp/mysql.sock
log-bin = /data/mysqldb/3306/bin-logs/mysql-bin
binlog_fORMat=mixed
symbolic-links=0
innodb_file_per_table = 1
skip_name_resolve = 1
slow_query_log = 1
long_query_time = 2
pid-file = /data/mysqldb/3306/run/mysqld.pid
log-error = /data/mysqldb/3306/logs/mysql-error.log
character-set-server=utf8
default-storage-engine=INNODB
[mysqld_safe]
# include all files from the config directory
#
!includedir /etc/my.cnf.d
# cd /usr/local/mysql
# bin/mysqld --defaults-file=/etc/my.cnf --user=mysql --datadir=/data/mysqldb/3306/data
使用二进制安装包里面的support-files/mysql.server这个启动脚本死活不能启动,报以下错误
Starting MySQL. ERROR! The server quit without updating PID file (/data/mysqldb/3306/run/mysqld.pid).
无奈之下,去mysql官网下载一个mysql的源码包,使用里面的mysql.server就没问题。呵呵。
#cp mysql/support-files/mysql.server /etc/rc.d/init.d/mysqld
# chkconfig --add mysqld
# chkconfig mysqld on
#chkconfig --list mysqld
mysqld 0:off 1:off 2:on 3:on 4:on 5:on 6:off
#service mysqld start
Starting MySQL. SUCCESS!
检查3306端口是否开启
#ss -ntl | grep 3306
LISTEN 0 50 *:3306 *:*
确认版本
# mysql -V
mysql Ver 14.14 Distrib 5.6.39, for linux-glibc2.12 (x86_64) using EditLine wrapper
#/usr/local/mysql/bin/mysql_secure_installation
按提示操作即可
#mysql -uroot -p
Enter passWord:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 14
Server version: 5.6.39-log MySQL CommUnity Server (GPL)
Copyright (c) 2000, 2018, oracle and/or its affiliates. All rights reserved.
Oracle is a reGIStered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>
--结束END--
本文标题: CentOS 7.4 自定义单实例 二进制方式 安装mysql5.6.39
本文链接: https://lsjlt.com/news/40568.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-10-23
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0