MySQL Bind on unix socket: Add


场景[root@localhost bin]# ./mysqld
2020-01-15 17:52:02 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use –explicit_defaults_for_timestamp server option (see documentation for more details).
2020-01-15 17:52:02 0 [Note] –secure-file-priv is set to NULL. Operations related to importing and exporting data are disabled
2020-01-15 17:52:02 0 [Note] ./mysqld (mysqld 5.6.44) starting as process 90367 …
2020-01-15 17:52:02 90367 [Note] Plugin ‘FEDERATED’ is disabled.
2020-01-15 17:52:02 90367 [Note] InnoDB: Using atomics to ref count buffer pool pages
2020-01-15 17:52:02 90367 [Note] InnoDB: The InnoDB memory heap is disabled
2020-01-15 17:52:02 90367 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
2020-01-15 17:52:02 90367 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
2020-01-15 17:52:02 90367 [Note] InnoDB: Compressed tables use zlib 1.2.11
2020-01-15 17:52:02 90367 [Note] InnoDB: Using Linux native AIO
2020-01-15 17:52:02 90367 [Note] InnoDB: Not using CPU crc32 instructions
2020-01-15 17:52:02 90367 [Note] InnoDB: Initializing buffer pool, size = 128.0M
2020-01-15 17:52:02 90367 [Note] InnoDB: Completed initialization of buffer pool
2020-01-15 17:52:02 90367 [Note] InnoDB: Highest supported file format is Barracuda.
2020-01-15 17:52:02 90367 [Note] InnoDB: 128 rollback segment(s) are active.
2020-01-15 17:52:02 90367 [Note] InnoDB: Waiting for purge to start
2020-01-15 17:52:02 90367 [Note] InnoDB: 5.6.44 started; log sequence number 18755961
2020-01-15 17:52:02 90367 [Note] Server hostname (bind-address): ‘*’; port: 3306
2020-01-15 17:52:02 90367 [Note] IPv6 is available.
2020-01-15 17:52:02 90367 [Note] – ‘::’ resolves to ‘::’;
2020-01-15 17:52:02 90367 [Note] Server socket created on IP: ‘::’.
2020-01-15 17:52:02 90367 [ERROR] Can’t start server : Bind on unix socket: Address already in use
2020-01-15 17:52:02 90367 [ERROR] Do you already have another mysqld server running on socket: /tmp/mysql.sock ?
2020-01-15 17:52:02 90367 [ERROR] Aborting
排查过程1)管道文件已经存在2020-01-15 17:52:02 90367 [ERROR] Can’t start server : Bind on unix socket: Address already in use
2020-01-15 17:52:02 90367 [ERROR] Do you already have another mysqld server running on socket: /tmp/mysql.sock ?2)查看文件属性以及查看进程占用[root@localhost tmp]# file mysqld.sock
mysqld.sock: socket

[root@localhost tmp]# fuser /tmp/mysql.sock没有发现任何进程占用,说明该文件不是由mysqld进程创建的,并且没有任何的服务占用该管道文件,该管道文件一般用于本地的mysql服务器和客户端通信的通道。默认情况下,mysql主进程在启动的时候创建该文件,退出的时候,会删除该文件,通过删除该文件,解决上面的问题。
3)启动mysql服务,查看占用过程[root@localhost tmp]# fuser /tmp/mysql.sock
/tmp/mysqld.sock: 765开发云主机域名33
[root@localhost tmp]# lsof /tmp/mysql.sock
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
mysqld 76533 mysql 22u unix 0x00000000f901123c 0t0 8234599 /tmp/mysql.sock

相关推荐: MySQL 5.6大查询和大事务监控脚本(Python 2)

可以配置在Zabbix里开发云主机域名面,作为监控的模版 执行脚本 慢查询语句会记录在文本文件中 相关推荐: MySQL数据库中的中文乱码解决方案。数据库中输入中文容易出现乱码?(乱码问题本源:参见https://blog.51cto.com开发云主机域名/1…

免责声明:本站发布的图片视频文字,以转载和分享为主,文章观点不代表本站立场,本站不承担相关法律责任;如果涉及侵权请联系邮箱:360163164@qq.com举报,并提供相关证据,经查实将立刻删除涉嫌侵权内容。

(0)
打赏 微信扫一扫 微信扫一扫
上一篇 06/06 21:22
下一篇 06/06 21:22

相关推荐