安装
安装包安装
跳过
源码安装
sql
$> groupadd mysql
$> useradd -r -g mysql -s /bin/false mysql
$> cd /usr/local
$> tar xvf /path/to/mysql-VERSION-OS.tar.xz
$> ln -s full-path-to-mysql-VERSION-OS mysql
$> cd mysql
$> mkdir mysql-files
$> chown mysql:mysql mysql-files
$> chmod 750 mysql-files
$> bin/mysqld --initialize --user=mysql
$> bin/mysql_ssl_rsa_setup
$> bin/mysqld_safe --user=mysql &
# Next command is optional
$> cp support-files/mysql.server /etc/init.d/mysql.server
服务启动
bash
mysqld --initialize --user=mysql
# 后台MySQL服务器启动脚本
mysqld_safe --user=mysql &
# 关闭服务器
mysqladmin -u root -p shutdown
# mysql客户端连接到服务器
mysql -u root -p
# 客户端退出
quit
参考链接
下载地址 https://dev.mysql.com/downloads/mysql/
安装说明 https://dev.mysql.com/doc/refman/8.0/en/binary-installation.html