如果我们安装了一个免安装版本的 MySQL 数据库,并且没有使用 service 或 systemctl 命令去管理 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 不推荐直接杀进程,推荐使用 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 命令连接到 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 退出客户端。