为什么mysqld在linux系统中位于4个地方? [英] why the mysqld is located in 4 places in linux system?

查看:58
本文介绍了为什么mysqld在linux系统中位于4个地方?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在执行命令#find/-name mysqld"时感到困惑.因为mysqld位于以下四个位置:

I have confusion while I'm execute the command "# find / -name mysqld". Because the mysqld is located in four places which are:

  1. /usr/libexec/mysqld
  2. /etc/rc.d/init.d/mysqld
  3. /var/lock/subsys/mysqld
  4. /var/run/mysqld

另外三个mysql守护程序的用途是什么?

What is the purpose of another three mysql daemons?

推荐答案

以下是说明

  • /usr/libexec/mysqld:实际的二进制可执行文件
  • /etc/rc.d/init.d/mysqld:服务启动文件(文本文件)
  • /var/run/mysqld:PID/运行文件文件夹(mysqld在该文件夹中写入一个运行文件)
  • /var/lock/subsys/mysqld:不确定

如果您运行which mysqld,应该会看到第一个

If you run which mysqld you should see the first one

您永远不会直接运行它

运行service mysqld start时,它将调用/etc/rc.d/init.d/mysqld以启动名为mysqld_safe的程序(运行which mysqld_safe). mysqld_safemysqld一起成为服务器守护程序.

When you run service mysqld start, it calls /etc/rc.d/init.d/mysqld to kickoff a program called mysqld_safe (Run which mysqld_safe). mysqld_safe and mysqld work together to be the server daemon.

依次,mysqld_safe将启动mysqld,然后检查退出代码.您可以运行less /etc/rc.d/init.d/mysqld并看到它.如果mysqld由于系统关闭或正常service mysql stop而没有结束,则mysqld_safe将尝试重新启动mysqld.

In turn, mysqld_safe will kickoff mysqld and then checks for an exit code. You can run less /etc/rc.d/init.d/mysqld and see this. If mysqld did not end due to system shutdown or a normal service mysql stop, mysqld_safe will attempt to restart mysqld.

这篇关于为什么mysqld在linux系统中位于4个地方?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆