当前位置: 首页 > news >正文

mysql 几种启动和关闭mysql方法介绍

https://dev.mysql.com/doc/refman/5.7/en/programs-server.html

mysql几种启动方法

方法1、mysqld
mysqld指定读取my.cnf配置文件启动,加一个 & 实现后台启动。终端不会被阻塞

./mysqld --defaults-file=/etc/my.cnf &

方法2、mysqld_safe

  ./mysqld_safe –defaults-file=/etc/my.cnf  & 

方法3、mysql.server
将support-files/mysql.server 脚本做成一个linux服务。使用服务的方式启动

cp -v /usr/local/mysql/support-files/mysql.server /etc/init.d/ 
chkconfig –add mysql.server 
service mysql.server {start|stop|restart|reload|force-reload|status} 

方法4、./etc/init.d/mysqld start

这种方式其实和support-files一样。不过更清晰点,我比较喜欢用这个。

方法5、mysqld_multi
mysqld_multi 主要用来多实例启动的。见 https://www.jianshu.com/p/88adb36bbca9

mysqld和mysqld_safe启动有什么区别?

1、使用file命令分别查看mysqld和mysqld_safe两个执行文件。可见
mysqld是一个64位的 dynamically linked ;
mysqld_safe 是一个shell script;shell脚本。可以直接编辑的。

[root@localhost bin]# file mysqld
mysqld: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.18, BuildID[sha1]=e1d1f6fd34afae9ac33181c12d605976c81cc6e1, not stripped
[root@localhost bin]# file mysqld_safe 
mysqld_safe: POSIX shell script, ASCII text executable

2、使用ps-ef查看下二者区别
mysqld

[root@localhost bin]# ps -ef |grep mysql
mysql      9294   8364 12 11:12 pts/2    00:00:00 ./mysqld --defaults-file=/etc/my.cnf

mysqld_safe

[root@localhost ~]# ps -ef |grep mysql
root       9399   8364  0 11:13 pts/2    00:00:00 /bin/sh ./mysqld_safe --defaults-file=/etc/my.cnf
mysql      9555   9399  2 11:13 pts/2    00:00:00 /home/mysql5.7/mysql-5.7.33-linux-glibc2.12-x86_64/bin/mysqld --defaults-file=/etc/my.cnf --basedir=/home/mysql5.7/mysql-5.7.33-linux-glibc2.12-x86_64 --datadir=/mdata/mysql57 --plugin-dir=/home/mysql5.7/mysql-5.7.33-linux-glibc2.12-x86_64/lib/plugin --user=mysql --log-error=error.log --pid-file=localhost.localdomain.pid --socket=/tmp/mysql.sock3

mysqld_safe命令启动的方式要比mysqld启动多了一个mysqld_safe的进程;mysqld_safe 其实就是mysqld服务的一个守护进程;它的作用是当mysql宕机后会自动重启mysqld服务。所以平时应该使用mysqld_safe。

如下我手动kill掉9555这个mysql进程,随后再次执行ps -ef |grep mysql 发现又生成了一个pid为9918 的mysql进程。

[root@localhost ~]# kill -9 9555
[root@localhost ~]# ps -ef |grep mysql
root       9399   8364  0 11:13 pts/2    00:00:00 /bin/sh ./mysqld_safe --defaults-file=/etc/my.cnf
mysql      9918   9399  8 11:19 pts/2    00:00:00 /home/mysql5.7/mysql-5.7.33-linux-glibc2.12-x86_64/bin/mysqld --defaults-file=/etc/my.cnf --basedir=/home/mysql5.7/mysql-5.7.33-linux-glibc2.12-x86_64 --datadir=/mdata/mysql57 --plugin-dir=/home/mysql5.7/mysql-5.7.33-linux-glibc2.12-x86_64/lib/plugin --user=mysql --log-error=error.log --pid-file=localhost.localdomain.pid --socket=/tmp/mysql.sock3305 --port=3305
root       9950   8476  0 11:19 pts/3    00:00:00 grep --color=auto mysql

mysql几种关闭方法

mysql终端使用,需要密码 方法1、进入mysql终端执行shutdown命令可以关闭mysql服务

[root@localhost bin]# mysql -S /tmp/mysql.sock3305 -p123456
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.33 MySQL Community Server (GPL)Copyright (c) 2000, 2021, Oracle and/or its affiliates.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) [(none)]>shutdown;
Query OK, 0 rows affected (0.00 sec)(root@localhost) [(none)]>show variables like '%port%';
ERROR 2006 (HY000): MySQL server has gone away
No connection. Trying to reconnect...
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock3305' (2)
ERROR: 
Can't connect to the server(root@not_connected) [(none)]>exit;
Bye
[root@localhost bin]# 

mysql终端使用,需要密码 方法2、在mysql终端关闭mysql的另一种命令:
mysqladmin可以做到在mysql终端无需真正登录进去就可stop mysql server

[root@localhost bin]# ./mysqladmin -uroot -p1111aaA_ -S /tmp/mysql.sock3305 shutdown
mysqladmin: [Warning] Using a password on the command line interface can be insecure.

在部署mysql的服务器上使用,不需要密码 方法3、./support-files/mysql.server stop
使用file命令查看下

[root@localhost ~]# file /home/mysql5.7/mysql-5.7.33-linux-glibc2.12-x86_64/support-files/mysql.server
/home/mysql5.7/mysql-5.7.33-linux-glibc2.12-x86_64/support-files/mysql.server: POSIX shell script, ASCII text executable

mysql.server 是一个 shell script。那么我们查看一下它:

....'stop')# Stop daemon. We use a signal here to avoid having to know the# root password.if test -s "$mysqld_pid_file_path"then# signal mysqld_safe that it needs to stoptouch "$mysqld_pid_file_path.shutdown"mysqld_pid=`cat "$mysqld_pid_file_path"`if (kill -0 $mysqld_pid 2>/dev/null)thenecho $echo_n "Shutting down MySQL"kill $mysqld_pid# mysqld should remove the pid file when it exits, so wait for it.wait_for_pid removed "$mysqld_pid" "$mysqld_pid_file_path"; return_value=$?elselog_failure_msg "MySQL server process #$mysqld_pid is not running!"rm "$mysqld_pid_file_path"fi# Delete lock for RedHat / SuSEif test -f "$lock_file_path"thenrm -f "$lock_file_path"fiexit $return_valueelselog_failure_msg "MySQL server PID file could not be found!"fi;;
...

可见,mysql.server stop使用kill -0 pid 来实现关闭的。
利用了linux中的一个信号机制。kill -9 表示强制关闭。若使用的是kill -0 表示发生一个信号给进程,若应用程序中有负责接收处理信号的话,就会走正常关闭的代码流程。故linux的kill -0 命令在mysql中是一个正常的安全关闭。可以做到不需要密码也可以把mysql关闭。

请使用kill -0 pid 来关闭mysql而不是kill -9 pid

最后编辑于:2024-10-27 16:14:32


喜欢的朋友记得点赞、收藏、关注哦!!!


http://www.mrgr.cn/news/69306.html

相关文章:

  • layui的table组件中,对某一列的文字设置颜色为浅蓝怎么设置
  • 修改mysql默认字符集
  • Leetcode 3350 Adjacent Increasing Subarrays Detection II
  • ubuntu24.04设置开机自启动Eureka
  • 刷别的学校oj—河工大oj1073-1099
  • Photoshop(PS)——人像磨皮
  • C++builder中的人工智能(17):神经网络中的自我规则非单调(Mish)激活函数
  • C语言--结构体的大小与内存对齐,位段详解
  • Pytorch实现运动鞋识别
  • ES6之Proxy详解
  • 【设计模式】行为型模式(一):模板方法模式、观察者模式
  • 详解:光伏电站前期收资
  • 浮动路由:实现出口线路的负载均衡冗余备份。
  • C转DP线 单向 双向选择
  • 软考错题分析1109
  • QJson-趟过的各种坑(先坑后用法)
  • react的创建与书写
  • Java 的 Scanner 类:控制台输入与文件扫描
  • 第 1 章 - Go语言简介
  • 软考:论容器编排
  • 介绍一下数组(c基础)(详细版)
  • 2024年3月电子学会Python等级考试试卷(五级)真题,包含答案
  • DirectShow过滤器开发-写AVI视频文件过滤器
  • C++builder中的人工智能(16):神经网络中的SoftPlus激活函数
  • ubuntu24.04安装matlab失败
  • Rust为什么要搞个match匹配,直接用==判断不行吗(Rust match、Rust ==、Rust模式匹配)