mysql 啟停三種方式
一 root:
使用service
[root@centospg0326 ~]# service mysqld start
[root@centospg0326 ~]# service mysqld stop
Shutting down MySQL.. SUCCESS!
[root@centospg0326 ~]# ps -ef |grep mysql
root 10367 10090 0 17:52 pts/1 00:00:00 su - mysql
mysql 10368 10367 0 17:52 pts/1 00:00:00 -bash
root 10647 1 0 18:03 pts/2 00:00:00 /bin/sh /usr/local/mysql-5.7.31/bin/mysqld_safe --datadir=/usr/local/mysql-5.7.31/data --pid-file=/usr/local/mysql-5.7.31/data/centospg0326.pid
mysql 10788 10647 3 18:03 pts/2 00:00:00 /usr/local/mysql-5.7.31/bin/mysqld --basedir=/usr/local/mysql-5.7.31 --datadir=/usr/local/mysql-5.7.31/data --plugin-dir=/usr/local/mysql/lib/plugin --user=mysql --log-error=centospg0326.err --pid-file=/usr/local/mysql-5.7.31/data/centospg0326.pid --port=3306
root 10818 10475 0 18:03 pts/2 00:00:00 grep --color=auto mysql
二
啟動:/usr/local/mysql-5.7.31/bin/mysqld_safe --defaults-file=/etc/my.cnf
關閉:
[root@centospg0326 ~]# find / -name 'mysql.sock' -print
/tmp/mysql.sock
[root@centospg0326 ~]# /usr/local/mysql-5.7.31/bin/mysqladmin -u root -S /tmp/mysql.sock shutdown
三 ,如下 ./mysqld --defaults-file=/etc/my.cnf --user=root,待驗證
[root@centospg0326 bin]# ./mysqld --defaults-file=/etc/my.cnf --user=root
2022-11-05T10:53:07.169446Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
2022-11-05T10:53:07.169815Z 0 [Note] --secure-file-priv is set to NULL. Operations related to importing and exporting data are disabled
2022-11-05T10:53:07.169841Z 0 [Note] ./mysqld (mysqld 5.7.31) starting as process 13536 ...
2022-11-05T10:53:07.169871Z 0 [ERROR] Can't find error-message file '/usr/local/mysql-5.7.31/share/errmsg.sys'. Check error-message file location and 'lc-messages-dir' configuration directive.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/25846553/viewspace-2922022/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- flowable 啟動流程的三種方式
- linux下三種服務開機自啟的方式Linux
- AUTOCAD——三種修剪方式
- 三種繼承方式繼承
- 簡單介紹MySQL開啟事務的兩種方式MySql
- MySql插入唯一鍵衝突的三種可選方式MySql
- Mysql安裝解除安裝與啟停MySql
- 《SpringBoot篇:002》《SpringBoot的三種啟動方式:main、Maven、jar》Spring BootAIMavenJAR
- Mybatis批量更新三種方式MyBatis
- node 除錯三種方式除錯
- HTTP三種快取方式HTTP快取
- selenium-三種等待方式
- flowable 三種方式部署流程
- Flutter 三種JSON解析方式FlutterJSON
- Flutter 解析JSON 三種方式FlutterJSON
- JavaScript的三種引入方式JavaScript
- 關於python的三種子程序啟動方式:fork, spawn, forkserverPythonServer
- Python 操作 MySQL 的5種方式PythonMySql
- Python|讀、寫Excel檔案(三種模組三種方式)PythonExcel
- Eclipse中配置tomcat三種方式EclipseTomcat
- 三種方式本地執行Knative
- springAOP的三種實現方式Spring
- selenium中的三種等待方式
- WiFi攻擊的三種方式WiFi
- Selenium裡的三種等待方式
- 三種 Post 提交資料方式
- flowable 部署流程的三種方式
- linux安裝postgresql三種方式LinuxSQL
- hibernate的三種查詢方式
- Python selenium 三種等待元素方式Python
- MySQL 寫入壓測幾種方式MySql
- Java中Elasticsearch 實現分頁方式(三種方式)JavaElasticsearch
- MySQL 三種新增語句MySql
- Spring Boot開啟的2種方式Spring Boot
- vue 元件的三種使用方式教程Vue元件
- 建立執行緒的三種方式執行緒
- html樣式表三種引入方式HTML
- PostgreSQL-三種關閉方式(二)SQL