FORYAOSHUYUN 2020-07-08
下载mysql包,也可以自己上传到机器
[ ~]# wget https://downloads.mysql.com/archives/get/p/23/file/mysql-5.6.46-linux-glibc2.12-x86_64.tar.gz
一.安装
1.安装依赖 yum install -y ncurses-devel libaio-devel gcc gcc-c++ glibc cmake autoconf 2.解雅tgz的包 [ ~]# tar xf mysql-5.6.46-linux-glibc2.12-x86_64.tar.gz 3.移动目录 [ ~]# mv mysql-5.6.46-linux-glibc2.12-x86_64 /usr/local/ 4.做软链接 [ ~]# ln -s /usr/local/mysql-5.6.46-linux-glibc2.12-x86_64 /usr/local/mysql 5.创建mysql用户 [ ~]# useradd mysql -s /sbin/nologin -M 6.拷贝配置文件和启动脚本 [ support-files]# cp my-default.cnf /etc/my.cnf cp: overwrite ‘/etc/my.cnf’? y [ support-files]# cp mysql.server /etc/init.d/mysqld 7.初始化数据库 [ ~]# cd /usr/local/mysql/scripts/ [ scripts]# ./mysql_install_db --user=mysql --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data --user: 指定用户 --basedir: 指定安装目录 --datadir: 指定数据目录 #初始化成功的标志是有两个ok,再看最后有没有error
二.配置环境和systemctl管理
8.配置环境变量 [ scripts]# vim /etc/profile.d/mysql.sh export PATH=/usr/local/mysql/bin:$PATH [ scripts]# source /etc/profile 9.配置systemctl管理mysql [ scripts]# vim /usr/lib/systemd/system/mysqld.service [Unit] Description=MySQL Server Documentation=man:mysqld(8) Documentation=https://dev.mysql.com/doc/refman/en/using-systemd.html After=network.target After=syslog.target [Install] WantedBy=multi-user.target [Service] User=mysql Group=mysql ExecStart=/usr/local/mysql/bin/mysqld --defaults-file=/etc/my.cnf LimitNOFILE = 5000 [ scripts]# systemctl daemon-reload
三.启动数据库
10.启动数据库 [ scripts]# systemctl start mysqld 11.确认启动 [ scripts]# ps -ef | grep mysql mysql 12886 1 2 03:10 ? 00:00:00 /usr/local/mysql/bin/mysqld --defaults-file=/etc/my.cnf root 12921 10636 0 03:11 pts/1 00:00:00 grep --color=auto mysql 12.进入mysql [ scripts]# mysql Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 1 Server version: 5.6.46 MySQL Community Server (GPL) Copyright (c) 2000, 2019, 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>