这篇文章主要介绍“MySQL 5.6.36怎么升级到5.6.40”,在日常操作中,相信很多人在MySQL 5.6.36怎么升级到5.6.40问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”MySQL 5.6.36怎么升级到5.6.40”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!1、将版本为5.6.40的mysqld拷贝到本地/usr/local/mysql/bin目录下
2、将版本为5.6.40的错误码文件errmsg.sys拷贝到本地/usr/local/mysql/share/english/目录下
3、关闭本地MySQL服务
mysqladmin -uroot -p shutdown
4、启动MySQL
/usr/local/mysql/bin/mysqld_safe –defaults-file=/etc/my.cnf &
[1] 872
[root@oneproxy software]# 180612 10:09:23 mysqld_safe Logging to ‘/mysql/data/oneproxy.err’.
180612 10:09:23 mysqld_safe S免费主机域名tarting mysqld daemon with databases from /mysql/data
5、验证数据库版本以及可用性
[root@oneproxy software]# mysql -uroot -pmysql
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 1
Server v免费主机域名ersion: 5.6.40 Source distribution
Copyright (c) 2000, 2017, 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 5.6.36怎么升级到5.6.40”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注云技术网站,小编会继续努力为大家带来更多实用的文章!
相关推荐: 如何根据操作系统进程号查看oracle对应的SQL语句内容
这篇文章主要介绍了如何根据操作系统进程号查看oracle对应的SQL语句内容,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。 1、 先用ps -aux查询,发现有个进程占用大量CPU,记录下PID…