MySQL 免安装版本启动和停止

本文将介绍如何在 CentOS7 中启动和停止 MySQL 服务,不使用 service 或 systemctl 命令去启动 MySQL。

如果我们安装了一个免安装版本的 MySQL 数据库,并且没有使用 service 或 systemctl 命令去管理 MySQL 服务,我们可以用如下方法分别启动和停止MySQL。

启动 MySQL

使用 MySQL 安装程序自带的 mysqld_safe 程序去启动 MySQL。mysqld_safe 是在 Unix 上启动 mysqld 服务器的推荐方法。因为 mysqld_safe 增加了一些安全特性,例如在发生错误时重新启动服务器,并将运行时信息记录到错误日志。命令如下:

[hxstrive@localhost ~]$ mysqld_safe &
[1] 10847
[hxstrive@localhost ~]$ 2023-05-10T01:47:55.788724Z mysqld_safe Logging to '/home/hxstrive/mysql5.7/data/mysqld.log'.
2023-05-10T01:47:55.865785Z mysqld_safe Starting mysqld daemon with databases from /home/hxstrive/mysql5.7/data

注意:mysqld_safe 命令后面的 & 符号表示后台运行,可以不添加。

停止 MySQL

停止 MySQL 不推荐直接杀进程,推荐使用 mysqladmin 命令,mysqladmin 命令用于执行 MySQL 管理操作的客户端。你可以使用它来检查服务器的配置和当前状态,创建和删除数据库等等。命令如下:

[hxstrive@localhost ~]$ mysqladmin -h 127.0.0.1 -u root -p shutdown
Enter password: 
[hxstrive@localhost ~]$ 2023-05-10T01:50:49.617022Z mysqld_safe mysqld from pid file /home/hxstrive/mysql5.7/mysqld.pid ended

[1]+  Done                    mysqld_safe

MySQL客户端

可以使用 mysql 命令连接到 mysqld 服务,命令如下:

[hxstrive@localhost ~]$ mysql -u root -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.7.40 MySQL Community Server (GPL)

Copyright (c) 2000, 2022, 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.

mysql>  
mysql> exit
Bye
[hxstrive@localhost ~]$

上面使用 exit 退出了 mysql 客户端,也可以使用 quit 退出客户端。

学习知识要善于思考,思考,再思。我就是靠这个方法成为科学家的。 —— 爱因斯坦
0 不喜欢
说说我的看法 -
全部评论(
没有评论
关于
本网站专注于 Java、数据库(MySQL、Oracle)、Linux、软件架构及大数据等多领域技术知识分享。涵盖丰富的原创与精选技术文章,助力技术传播与交流。无论是技术新手渴望入门,还是资深开发者寻求进阶,这里都能为您提供深度见解与实用经验,让复杂编码变得轻松易懂,携手共赴技术提升新高度。如有侵权,请来信告知:hxstrive@outlook.com
公众号