缺乏libaio包导致报The server quit without updating PID file
背景:
直接解压安装mysql5.7.18,解压mysql-5.7.18-linux-glibc2.5-x86_64.tar.gz,直接拷贝另外一台数据库的数据目录,启动mysql过程无日志输出,报ERROR! The server quit without updating PID file (/r2/mysqldata/ai244.pid).
排查过程:
重新初始化中......报
bin/mysqld: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory
可以看到缺乏libaio包
安装libaio后,可以正常启动
[root@(ai244) /usr/local/mysql/support-files]# systemctl start mysql.service
Job for mysql.service failed because the control process exited with error code. See "systemctl status mysql.service" and "journalctl -xe" for details.
[root@(ai244) /usr/local/mysql/support-files]# systemctl status mysql.service
● mysql.service - mysql
Loaded: loaded (/usr/lib/systemd/system/mysql.service; enabled; vendor preset: disabled)
Active: failed (Result: exit-code) since Sat 2018-07-07 02:17:20 CST; 6s ago
Process: 29011 ExecStart=/usr/local/mysql/support-files/mysql.server start (code=exited, status=1/FAILURE)
Jul 07 02:17:19 ai244 systemd[1]: Starting mysql...
Jul 07 02:17:20 ai244 mysql.server[29011]: Starting MySQL. ERROR! The server quit without updating PID file (/r2/mysqldata/ai244.pid).
Jul 07 02:17:20 ai244 systemd[1]: mysql.service: control process exited, code=exited status=1
Jul 07 02:17:20 ai244 systemd[1]: Failed to start mysql.
Jul 07 02:17:20 ai244 systemd[1]: Unit mysql.service entered failed state.
Jul 07 02:17:20 ai244 systemd[1]: mysql.service failed.
[root@(ai244) /usr/local/mysql/support-files]# netstat -tunlp
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 1406/sshd
tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 1542/master
tcp6 0 0 :::22 :::* LISTEN 1406/sshd
tcp6 0 0 ::1:25 :::* LISTEN 1542/master
[root@(ai244) /usr/local/mysql/support-files]# netstat -tunlp|grep 3306
[root@(ai244) /usr/local/mysql/support-files]# cd /r2
[root@(ai244) /r2]# ll
total 639860
-rw-r--r-- 1 root root 654430368 Dec 5 2017 mysql-5.7.18-linux-glibc2.5-x86_64.tar.gz
drwxr-x--- 5 mysql mysql 4096 Jul 7 01:32 mysqldata
-rw-r--r-- 1 root root 591639 Jul 7 01:30 mysqldata.tar.gz
-rw-r--r-- 1 root root 177033 Nov 27 2017 server_audit.so
[root@(ai244) /r2]# ll /etc/my.cnf
-rw-r--r-- 1 root root 6077 Jun 26 15:47 /etc/my.cnf
[root@(ai244) /r2]# df -h
Filesystem Size Used Avail Use% Mounted on
devtmpfs 126G 0 126G 0% /dev
tmpfs 126G 0 126G 0% /dev/shm
tmpfs 126G 9.1M 126G 1% /run
tmpfs 126G 0 126G 0% /sys/fs/cgroup
/dev/sdb3 493G 6.7G 461G 2% /
/dev/sda1 727G 73M 690G 1% /ssd1
/dev/sdb2 976M 118M 792M 13% /boot
/dev/sdb5 6.8T 5.7G 6.4T 1% /usr/local
tmpfs 26G 0 26G 0% /run/user/0
[root@(ai244) /r2]# ll /usr/local/mysql/
total 52
drwxr-xr-x 2 mysql mysql 4096 Jul 6 23:04 bin
-rw-r--r-- 1 mysql mysql 17987 Mar 18 2017 COPYING
drwxr-xr-x 2 mysql mysql 4096 Jul 6 23:04 docs
drwxr-xr-x 3 mysql mysql 4096 Jul 6 23:04 include
drwxr-xr-x 5 mysql mysql 4096 Jul 6 23:04 lib
drwxr-xr-x 4 mysql mysql 4096 Jul 6 23:04 man
-rw-r--r-- 1 mysql mysql 2478 Mar 18 2017 README
drwxr-xr-x 28 mysql mysql 4096 Jul 6 23:04 share
drwxr-xr-x 2 mysql mysql 4096 Jul 6 23:04 support-files
[root@(ai244) /r2]# chmod 755 mysqldata
[root@(ai244) /r2]# ll mysqldata
total 12368
-rw-r----- 1 mysql mysql 217 Jul 6 17:26 binlog.000008
-rw-r----- 1 mysql mysql 28 Jul 6 17:26 binlog.index
-rw-r----- 1 mysql mysql 42464 Jul 6 17:26 error.log
-rw-r----- 1 mysql mysql 322 Jul 6 17:26 ib_buffer_pool
-rw-r----- 1 mysql mysql 12582912 Jul 6 17:25 ibdata1
drwxr-x--- 2 mysql mysql 4096 Jul 6 17:26 mysql
drwxr-x--- 2 mysql mysql 4096 Jul 6 17:26 performance_schema
-rw-r----- 1 mysql mysql 1544 Jul 6 17:26 slow.log
drwxr-x--- 2 mysql mysql 12288 Jul 6 17:26 sys
[root@(ai244) /r2/mysqldata]# cd /usr/local/mysql
[root@(ai244) /usr/local/mysql]# cp -r /r2/mysqldata /r2/mysqldata
mysqldata/ mysqldata.tar.gz
[root@(ai244) /usr/local/mysql]# cp -r /r2/mysqldata /r2/mysqldata.bak
[root@(ai244) /usr/local/mysql]# bin/mysqld --initialize --user=mysql
bin/mysqld: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory
[root@(ai244) /usr/local/mysql]# rpm -qa|grep libaio
[root@(ai244) /usr/local/mysql]# yum install libaio-devel.x86_64 -y
Loaded plugins: fastestmirror
elrepo | 2.9 kB 00:00:00
local | 3.6 kB 00:00:00
Loading mirror speeds from cached hostfile
* elrepo: hkg.mirror.rackspace.com
Resolving Dependencies
--> Running transaction check
---> Package libaio-devel.x86_64 0:0.3.109-13.el7 will be installed
--> Processing Dependency: libaio(x86-64) = 0.3.109-13.el7 for package: libaio-devel-0.3.109-13.el7.x86_64
--> Running transaction check
---> Package libaio.x86_64 0:0.3.109-13.el7 will be installed
--> Finished Dependency Resolution
Dependencies Resolved
=============================================================================================================================================================================================
Package Arch Version Repository Size
=============================================================================================================================================================================================
Installing:
libaio-devel x86_64 0.3.109-13.el7 local 13 k
Installing for dependencies:
libaio x86_64 0.3.109-13.el7 local 24 k
Transaction Summary
=============================================================================================================================================================================================
Install 1 Package (+1 Dependent package)
Total download size: 37 k
Installed size: 46 k
Downloading packages:
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Total 1.4 MB/s | 37 kB 00:00:00
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
Installing : libaio-0.3.109-13.el7.x86_64 1/2
Installing : libaio-devel-0.3.109-13.el7.x86_64 2/2
Verifying : libaio-0.3.109-13.el7.x86_64 1/2
Verifying : libaio-devel-0.3.109-13.el7.x86_64 2/2
Installed:
libaio-devel.x86_64 0:0.3.109-13.el7
Dependency Installed:
libaio.x86_64 0:0.3.109-13.el7
Complete!
[root@(ai244) /usr/local/mysql]# systemctl start msyql
Failed to start msyql.service: Unit not found.
[root@(ai244) /usr/local/mysql]# systemctl start mysql
[root@(ai244) /usr/local/mysql]# systemctl status mysql
● mysql.service - mysql
Loaded: loaded (/usr/lib/systemd/system/mysql.service; enabled; vendor preset: disabled)
Active: active (running) since Mon 2018-07-09 16:59:41 CST; 7s ago
Process: 31888 ExecStart=/usr/local/mysql/support-files/mysql.server start (code=exited, status=0/SUCCESS)
Main PID: 31896 (mysqld_safe)
CGroup: /system.slice/mysql.service
├─31896 /bin/sh /usr/local/mysql/bin/mysqld_safe --datadir=/r2/mysqldata --pid-file=/r2/mysqldata/ai244.pid
└─32738 /usr/local/mysql/bin/mysqld --basedir=/usr/local/mysql --datadir=/r2/mysqldata --plugin-dir=/usr/local/mysql/lib/plugin --user=mysql --log-error=/r2/mysqldata/error.lo...
Jul 09 16:59:17 ai244 systemd[1]: Starting mysql...
Jul 09 16:59:41 ai244 mysql.server[31888]: Starting MySQL........................ SUCCESS!
Jul 09 16:59:41 ai244 systemd[1]: Started mysql.
[root@(ai244) /usr/local/mysql]# ps -ef |grep mysql
root 31896 1 0 16:59 ? 00:00:00 /bin/sh /usr/local/mysql/bin/mysqld_safe --datadir=/r2/mysqldata --pid-file=/r2/mysqldata/ai244.pid
mysql 32738 31896 8 16:59 ? 00:00:04 /usr/local/mysql/bin/mysqld --basedir=/usr/local/mysql --datadir=/r2/mysqldata --plugin-dir=/usr/local/mysql/lib/plugin --user=mysql --log-error=/r2/mysqldata/error.log --open-files-limit=10240 --pid-file=/r2/mysqldata/ai244.pid --socket=/r2/mysqldata/mysql.sock --port=3306
root 32821 23827 0 17:00 pts/1 00:00:00 grep --color=auto mysql
[root@(ai244) /usr/local/mysql]# mysql -uroot -piforgot
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 3
Server version: 5.7.18-log MySQL Community Server (GPL)
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.
(root@localhost) 17:00:21 [(none)]> exit
Bye
[root@(ai244) /usr/local/mysql]#
缺乏libaio包导致报The server quit without updating PID file的更多相关文章
- 深度解析MySQL启动时报“The server quit without updating PID file”错误的原因
很多童鞋在启动mysql的时候,碰到过这个错误, 首先,澄清一点,出现这个错误的前提是:通过服务脚本来启动mysql.通过mysqld_safe或mysqld启动mysql实例并不会报这个错误. 那么 ...
- MySQL Error Log 文件丢失导致The server quit without updating PID file启动失败的场景
今天在做mysql sniff测试的时候,中间重启MySQL实例的过程中,出现了"The server quit without updating PID file"这个经典的错误 ...
- mysql修改后启动my.cnf报错Starting MySQL... ERROR! The server quit without updating PID file (/var/lib/mysql/localhost.localdomain.pid).
mysql中文乱码解决 mysql修改my.cnf后启动报错Starting MySQL... ERROR! The server quit without updating PID file (/v ...
- lnmp下启动mysql报错 The server quit without updating PID file
启动时候错误代码:Starting MySQL[FAIL.] The server quit without updating PID file (/var/run/mysqld/mysqld.pid ...
- mysql启动报错:Starting MySQL...The server quit without updating PID file
在mysql的data目录下误删除了mysql-bin.000001,mysql-bin.000002等文件,但是没有删除mysql-bin.index文件,此时启动mysql就会报错: Starti ...
- MySQL5.6启动报错The server quit without updating PID file
Mysql启动报错如下: [root@db01 opt]# service mysqld start Starting MySQL.... ERROR! The server quit without ...
- 启动mysql报错 -- ERROR! The server quit without updating PID file
开发说某个测试环境的mysql,无法重启了,报以下错误提示: # service mysqld restart Shutting down MySQL.. SUCCESS! Starting MySQ ...
- mysql报错“Starting MySQL...The server quit without updating PID file”处理
http://blog.csdn.net/lzq123_1/article/details/51354179 注意:要将/usr/bin/mysql_install_db替换成 /usr/bin/my ...
- mysql启动报错 The server quit without updating PID file
[root@uz6542 data]# /etc/init.d/mysqld startStarting MySQL... ERROR! The server quit without updatin ...
随机推荐
- jinfo用法说明
以下几种用法 -flags pid :打印当前VM的参数 -flag <name> pid:打印指定JVM的参数值 -flag [+|-]<name> pid:设置指定JVM参 ...
- 剑指offer--49.矩阵中的路径
时间限制:1秒 空间限制:32768K 热度指数:156998 题目描述 请设计一个函数,用来判断在一个矩阵中是否存在一条包含某字符串所有字符的路径.路径可以从矩阵中的任意一个格子开始,每一步可以在矩 ...
- yii2.0 使用不同语言
1.建立语言目录.文件.项目根目录建立messages文件夹.存放不同语言对应的目录文件. 例如中文和英文 message 下建立两个文件夹 en.zh_CN 里面可以对应着多个翻译文件 2.在mai ...
- jsp采用数据库连接池的方法获取数据库时间戳context.xml配置,jsp页面把时间格式化成自己需要的格式
<?xml version="1.0" encoding="UTF-8"?> <!-- 数据库连接池配置文件 --> <Conte ...
- Ubuntu在图形界面和命令行界面都循环登录解决办法
在做机器ip变化自动发送邮件的时候,在/etc/profile.d/目录下添加了一个脚本,重启的时候就循环登录了,无论是在图形界面还是命令行界面. 解决方法:利用系统U盘进入系统进行修改,具体如下: ...
- keras模型可视化及解决'Failed to import pydot'问题
1.keras模型可视化 keras.utils.vis_utils模块提供了画出Keras模型的函数(利用graphviz) 该函数将画出模型结构图,并保存成图片: from keras.utils ...
- 用前序和中序重建二叉树 python
程序实现了用二叉树的前序遍历序列和中序遍历序列重建二叉树,代码用python实现. 首先定义二叉树节点的类: class TreeNode: def __init__(self, x): self.v ...
- C#中正则表达式编程(未完,待补充)
对于只存储一个匹配,可用Match类: 一般模式: Regex reg = new Regex(string pattern); string str = "###############& ...
- key相同合并Map
public class Demo11 { public static void main(String[] args) { ConcurrentHashMap<Integer, Map< ...
- 如何修改localhost为自己指定的域名
一般在windows电脑中localhost的配置一般都在电脑的C:\Windows\System32\drivers\etc这个路径下 进入后,打开hosts文件通过编辑器或者其他的软件打开,打开 ...