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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- mysql啟動的四種方式MySql
- Mysql的四種啟動方式MySql
- flowable 啟動流程的三種方式
- mysql啟動的四種方式 (轉)MySql
- mysql備份的三種方式詳解MySql
- UIImageView三種方式UIView
- 三種繼承方式繼承
- Mysql安裝解除安裝與啟停MySql
- linux下三種服務開機自啟的方式Linux
- 簡單介紹MySQL開啟事務的兩種方式MySql
- mysql學習之-三種安裝方式與版本介紹MySql
- MySql插入唯一鍵衝突的三種可選方式MySql
- MySql、SqlServer、Oracle 三種資料庫查詢分頁方式MySqlServerOracle資料庫
- node 除錯三種方式除錯
- HTTP三種快取方式HTTP快取
- Mybatis批量更新三種方式MyBatis
- JavaScript的三種引入方式JavaScript
- flowable 三種方式部署流程
- Hive metastore三種配置方式HiveAST
- 三種SQL分頁方式SQL
- Linux 中設定服務自啟動的三種方式Linux
- 啟動另外的一個應用程式的Activity(三種方式)
- LVS:三種負載均衡方式比較+另三種負載均衡方式負載
- Python|讀、寫Excel檔案(三種模組三種方式)PythonExcel
- WiFi攻擊的三種方式WiFi
- flowable 部署流程的三種方式
- Flutter 三種JSON解析方式FlutterJSON
- Flutter 解析JSON 三種方式FlutterJSON
- 三種 Post 提交資料方式
- javascript建立物件的三種方式JavaScript物件
- 匯入CSS的三種方式CSS
- mysql 效能調優五種方式MySql
- 關於python的三種子程序啟動方式:fork, spawn, forkserverPythonServer
- Java中Elasticsearch 實現分頁方式(三種方式)JavaElasticsearch
- 資料儲存的方式(只說三種方式)
- 三種方式本地執行Knative
- PostgreSQL-三種關閉方式(二)SQL
- 建立執行緒的三種方式執行緒