浅析CentOS6.8安装MySQL8.0.18的教程(RPM方式)
今天,记录下在centos 6.8服务器上如何安装mysql 8.0.18,废话不多说了,直接进入主题。
一、卸载centos 6.8自带的mysql
首先,卸载centos 6.8服务器上自带的mysql,在命令行中输入如下命令查看centos 6.8服务器自带的mysql。
[root@binghe151 src]# rpm -qa | grep -i mysql mysql-libs-5.1.73-7.el6.x86_64
可以看到,centos 6.8服务器中默认安装了mysql-libs-5.1.73-7.el6.x86_64,接下来将mysql-libs-5.1.73-7.el6.x86_64卸载,如下所示。
[root@binghe151 src]# rpm -e mysql-libs-5.1.73-7.el6.x86_64 --nodeps [root@binghe151 src]#
再次查看centos 6.8服务器自带的mysql,如下所示。
[root@binghe151 src]# rpm -qa | grep -i mysql [root@binghe151 src]#
说明centos 6.8服务器自带的mysql卸载成功。
二、安装mysql依赖环境
正式安装mysql之前,首先需要安装mysql的依赖的基础环境,如下所示。
yum -y install wget gcc-c++ ncurses ncurses-devel cmake make perl bison openssl openssl-devel gcc* libxml2 libxml2-devel curl-devel libjpeg* libpng* freetype* make gcc-c++ cmake bison-devel ncurses-devel bison perl perl-devel perl perl-devel net-tools* numactl*
三、添加mysql用户
在命令行执行如下命令添加mysql用户。
groupadd mysql useradd -g mysql mysql
四、下载并安装mysql的rpm安装包
首先,在centos 6.8服务器的命令行执行如下命令下载mysql 8.0.18的rpm安装包。
wget https://dev.mysql.com/get/downloads/mysql-8.0/mysql-8.0.18-1.el6.x86_64.rpm-bundle.tar
接下来,查看下载的mysql 8.0.18的rpm安装包,如下所示
[root@binghe151 src]# ll total 744876 -rw-r--r--. 1 root root 762746880 nov 18 14:32 mysql-8.0.18-1.el6.x86_64.rpm-bundle.tar
接下来,将下载的安装包解压,如下所示。
[root@binghe151 src]# tar xvf mysql-8.0.18-1.el6.x86_64.rpm-bundle.tar mysql-community-client-8.0.18-1.el6.x86_64.rpm mysql-community-test-8.0.18-1.el6.x86_64.rpm mysql-community-server-8.0.18-1.el6.x86_64.rpm mysql-community-libs-compat-8.0.18-1.el6.x86_64.rpm mysql-community-common-8.0.18-1.el6.x86_64.rpm mysql-community-devel-8.0.18-1.el6.x86_64.rpm mysql-community-libs-8.0.18-1.el6.x86_64.rpm
接下来,按照顺序依次安装
mysql-community-common-8.0.18-1.el6.x86_64.rpm mysql-community-libs-8.0.18-1.el6.x86_64.rpm mysql-community-client-8.0.18-1.el6.x86_64.rpm mysql-community-server-8.0.18-1.el6.x86_64.rpm
安装时,需要严格按照上述顺序进行安装。
首先,安装mysql-community-common-8.0.18-1.el6.x86_64.rpm
,如下所示。
[root@binghe151 src]# rpm -ivh mysql-community-common-8.0.18-1.el6.x86_64.rpm warning: mysql-community-common-8.0.18-1.el6.x86_64.rpm: header v3 dsa/sha1 signature, key id 5072e1f5: nokey preparing... ########################################### [100%] 1:mysql-community-common ########################################### [100%]
接下来,安装mysql-community-libs-8.0.18-1.el6.x86_64.rpm,如下所示。
[root@binghe151 src]# rpm -ivh mysql-community-libs-8.0.18-1.el6.x86_64.rpm warning: mysql-community-libs-8.0.18-1.el6.x86_64.rpm: header v3 dsa/sha1 signature, key id 5072e1f5: nokey preparing... ########################################### [100%] 1:mysql-community-libs ########################################### [100%]
接下来,安装mysql-community-client-8.0.18-1.el6.x86_64.rpm
,如下所示。
[root@binghe151 src]# rpm -ivh mysql-community-client-8.0.18-1.el6.x86_64.rpm warning: mysql-community-client-8.0.18-1.el6.x86_64.rpm: header v3 dsa/sha1 signature, key id 5072e1f5: nokey preparing... ########################################### [100%] 1:mysql-community-client ########################################### [100%]
最后,安装mysql-community-server-8.0.18-1.el6.x86_64.rpm,如下所示。
[root@binghe151 src]# rpm -ivh mysql-community-server-8.0.18-1.el6.x86_64.rpm warning: mysql-community-server-8.0.18-1.el6.x86_64.rpm: header v3 dsa/sha1 signature, key id 5072e1f5: nokey preparing... ########################################### [100%] 1:mysql-community-server ########################################### [100%]
如果大家在安装mysql-community-server-8.0.18-1.el6.x86_64.rpm的时候报错,如下所示。
[root@binghe151 src]# rpm -ivh mysql-community-server-8.0.18-1.el6.x86_64.rpm warning: mysql-community-server-8.0.18-1.el6.x86_64.rpm: header v3 dsa/sha1 signature, key id 5072e1f5: nokey error: failed dependencies: libnuma.so.1()(64bit) is needed by mysql-community-server-8.0.18-1.el6.x86_64 libnuma.so.1(libnuma_1.1)(64bit) is needed by mysql-community-server-8.0.18-1.el6.x86_64 libnuma.so.1(libnuma_1.2)(64bit) is needed by mysql-community-server-8.0.18-1.el6.x86_64
可以看到,缺少libnuma库,执行如下命令安装libnuma。
yum install numactl* -y
执行命令后,再次安装mysql-community-server-8.0.18-1.el6.x86_64.rpm即可。
五、初始化mysql数据
首先,来说一下mysql官方对运行mysql的限制。
在mysql 8.x中,初始化数据需要确保数据库目录与文件的所有者为mysql登录账户。如果以root身份运行mysqld服务,就需要确认一下,执行如下所示的包含有--user选项的命令:
shell> bin/mysqld --initialize --user=mysql shell> bin/mysqld --initialize-insecure --user=mysql
如果是以mysql的账户登录并执行程序的情况下,可以将--user选项从命令中去掉,如下所示。
shell> bin/mysqld --initialize shell> bin/mysqld --initialize-insecure
通过以上mysql官方的对运行mysql的限制,可以得出。
如果以root用户身份登录centos 6.8服务器,可以执行如下命令。
mysqld --initialize --user=mysql mysqld --initialize-insecure --user=mysql
如果以mysql用户身份登录centos 6.8服务器,可以执行如下命令。
mysqld --initialize mysqld --initialize-insecure
因为我这里使用的是root账户登录centos 6.8服务器,所以,初始化数据库时,我执行的是如下命令。
mkdir -p /usr/local/mysql chown -r mysql.mysql /usr/local/mysql mysqld --initialize --user=mysql --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data
注意:这里,我在执行mysqld --initialize命令时,指定了mysql的安装目录。 在mysql的安装过程中,建议指定mysql的安装目录。当/usr/local/mysql目录下存在data目录时,会初始化失败,必须确保/usr/local/mysql下没有data目录。
六、启动mysql
在centos 6.8服务器命令行输入如下命令启动mysql服务。
[root@binghe151 src]# service mysqld start starting mysqld: [ ok ]
启动mysql时,会为mysql的root账户生成临时登录密码,这个密码可以在/var/log/mysqld.log 文件中查看,使用vim编辑器打开/var/log/mysqld.log 文件,如下所示。
vim /var/log/mysqld.log 2019-11-18t08:16:08.162464z 0 [system] [my-013169] [server] /usr/sbin/mysqld (mysqld 8.0.18) initializing of server in progress as process 2111 2019-11-18t08:16:12.451542z 5 [note] [my-010454] [server] a temporary password is generated for root@localhost: -8cagkkdk#5g 2019-11-18t08:17:13.269505z 0 [system] [my-010116] [server] /usr/sbin/mysqld (mysqld 8.0.18) starting as process 2378 2019-11-18t08:17:16.568836z 0 [warning] [my-010068] [server] ca certificate ca.pem is self signed. 2019-11-18t08:17:16.642494z 0 [system] [my-010931] [server] /usr/sbin/mysqld: ready for connections. version: '8.0.18' socket: '/var/lib/mysql/mysql.sock' port: 3306 mysql community server - gpl. 2019-11-18t08:17:16.652000z 7 [warning] [my-013360] [server] plugin sha256_password reported: ''sha256_password' is deprecated and will be removed in a future release. please use caching_sha2_password instea d' 2019-11-18t08:17:16.801986z 0 [system] [my-011323] [server] x plugin ready for connections. socket: '/var/run/mysqld/mysqlx.sock' bind-address: '::' port: 33060
找到如下一行代码。
2019-11-18t08:16:12.451542z 5 [note] [my-010454] [server] a temporary password is generated for root@localhost: -8cagkkdk#5g
可以看到,启动mysql时生成的临时登录密码为-8cagkkdk#5g。
七、登录mysql
使用临时密码登录mysql,如下所示。
[root@binghe151 src]# mysql -uroot -p-8cagkkdk#5g mysql: [warning] using a password on the command line interface can be insecure. welcome to the mysql monitor. commands end with ; or \g. your mysql connection id is 9 server version: 8.0.18 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>
此时,在mysql命令行执行sql语句报错,要求重置密码,如下所示。
mysql> show databases; error 1820 (hy000): you must reset your password using alter user statement before executing this statement. mysql> use mysql; error 1820 (hy000): you must reset your password using alter user statement before executing this statement. mysql>
接下来,修改mysql的root账户密码,如下所示。
mysql> alter user 'root'@'localhost' identified by 'root'; query ok, 0 rows affected (0.03 sec) mysql> flush privileges; query ok, 0 rows affected (0.00 sec)
接下来,在mysql命令行输入exit命令退出mysql。使用修改后的root密码重新登录mysql,如下所示。
mysql> exit bye [root@binghe151 src]# mysql -uroot -proot mysql: [warning] using a password on the command line interface can be insecure. welcome to the mysql monitor. commands end with ; or \g. your mysql connection id is 10 server version: 8.0.18 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>
说明,mysql的root账户密码修改成功。
接下来,再次在mysql命令行执行sql语句,如下所示。
mysql> show databases; +--------------------+ | database | +--------------------+ | information_schema | | mysql | | performance_schema | | sys | +--------------------+ 4 rows in set (0.36 sec) mysql> use mysql; reading table information for completion of table and column names you can turn off this feature to get a quicker startup with -a database changed mysql>
可以看到,修改mysql的root账户密码后,可以在mysql命令行正确执行sql语句。
八、使用rpm安装mysql的默认目录
1、数据库目录
/var/lib/mysql/
2、配置文件
/usr/share/mysql(mysql.server命令及配置文件)
3、相关命令
/usr/bin(mysqladmin mysqldump等命令)
4、启动脚本
/etc/rc.d/init.d/(启动脚本文件mysql的目录)
九、配置my.cnf文件
mysql 8.0默认没有my.cnf,可以手动在/etc目录下创建my.cnf文件,如果是以如下指定mysql目录的命令初始化数据。
mkdir -p /usr/local/mysql chown -r mysql.mysql /usr/local/mysql mysqld --initialize --user=mysql --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data 则可以将my.cnf文件配置成如下所示。 [client] port = 3306 #根据实际情况调整mysql.sock配置 socket = /tmp/mysql.sock [mysqld] #mysql服务的唯一编号 每个mysql服务id需唯一 server-id = 1 #服务端口号 默认3306 port = 3306 #mysql安装根目录 basedir = /usr/local/mysql #mysql数据文件所在位置 datadir = /usr/local/mysql/data #pid pid-file = /usr/local/mysql/mysql.pid #设置socke文件所在目录 socket = /tmp/mysql.sock #设置临时目录 tmpdir = /tmp # 用户 user = mysql # 允许访问的ip网段 bind-address = 0.0.0.0 # 跳过密码登录 #skip-grant-tables #主要用于myisam存储引擎,如果多台服务器连接一个数据库则建议注释下面内容 skip-external-locking #只能用ip地址检查客户端的登录,不用主机名 skip_name_resolve = 1 #事务隔离级别,默认为可重复读,mysql默认可重复读级别(此级别下可能参数很多间隙锁,影响性能) transaction_isolation = read-committed #数据库默认字符集,主流字符集支持一些特殊表情符号(特殊表情符占用4个字节) character-set-server = utf8mb4 #数据库字符集对应一些排序等规则,注意要和character-set-server对应 collation-server = utf8mb4_general_ci #设置client连接mysql时的字符集,防止乱码 init_connect='set names utf8mb4' #是否对sql语句大小写敏感,1表示不敏感 lower_case_table_names = 1 #最大连接数 max_connections = 400 #最大错误连接数 max_connect_errors = 1000 #timestamp如果没有显示声明not null,允许null值 explicit_defaults_for_timestamp = true #sql数据包发送的大小,如果有blob对象建议修改成1g max_allowed_packet = 128m #mysql连接闲置超过一定时间后(单位:秒)将会被强行关闭 #mysql默认的wait_timeout 值为8个小时, interactive_timeout参数需要同时配置才能生效 interactive_timeout = 1800 wait_timeout = 1800 #内部内存临时表的最大值 ,设置成128m。 #比如大数据量的group by ,order by时可能用到临时表, #超过了这个值将写入磁盘,系统io压力增大 tmp_table_size = 134217728 max_heap_table_size = 134217728 #禁用mysql的缓存查询结果集功能 #后期根据业务情况测试决定是否开启 #大部分情况下关闭下面两项 query_cache_size = 0 query_cache_type = 0 #数据库错误日志文件 log_error = error.log #慢查询sql日志设置 slow_query_log = 1 slow_query_log_file = slow.log #检查未使用到索引的sql log_queries_not_using_indexes = 1 #针对log_queries_not_using_indexes开启后,记录慢sql的频次、每分钟记录的条数 log_throttle_queries_not_using_indexes = 5 #作为从库时生效,从库复制中如何有慢sql也将被记录 log_slow_slave_statements = 1 #慢查询执行的秒数,必须达到此值可被记录 long_query_time = 8 #检索的行数必须达到此值才可被记为慢查询 min_examined_row_limit = 100 #mysql binlog日志文件保存的过期时间,过期后自动删除 expire_logs_days = 5
总结
以上所述是小编给大家介绍的centos6.8安装mysql8.0.18的教程(rpm方式),希望对大家有所帮助
上一篇: SQL面试题:求时间差之和(有重复不计)
下一篇: asp.net HTML文件上传标签