查看幫助
mysql --help|grep
--help獲取幫助文檔的方式基本大多數(shù)linux工具命令都支持拣帽。
查看服務信息
# ps -ef|grep mysqld
此方式可以列出大部分服務的配置信息走诞、端口信息等雨效,一般輸出如下
root 1224 1 0 Sep10 ? 00:00:00 /bin/sh /usr/bin/mysqld_safe --datadir=/var/lib/mysql --pid-file=/var/lib/mysql/DFS242.pid
mysql 1317 1224 0 Sep10 ? 00:02:10 /usr/sbin/mysqld --basedir=/usr --datadir=/var/lib/mysql --plugin-dir=/usr/lib64/mysql/plugin --user=mysql --log-error=/var/lib/mysql/DFS242.err --pid-file=/var/lib/mysql/DFS242.pid --port=3306
root 5897 5879 0 08:10 pts/0 00:00:00 grep --color=auto mysqld
查看默認配置文件位置
mysql --help|grep my.cnf
進入mysql控制臺
mysql -u用戶名 -p回車
輸入密碼
該方式可由linux的shell轉到mysql的控制臺噩茄,登錄成功之后輸出如下所示:
Your MariaDB connection id is 57
Server version: 10.1.34-MariaDB MariaDB Server
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]>
此處是使用的是mariadb 10.1.34版本囊颅,其實就是mysql比較高的版本了炉峰。另外命令行模式下前面的提示信息變?yōu)?code>MariaDB [(none)]>畏妖,如果是低版本的話,則類似Mysql [(none)]>
疼阔,之后的命令如果是MariaDB [(none)]>
開頭的戒劫,則都需要登錄mysql之后才能夠使用。
查看數(shù)據(jù)庫所在路徑
mysql> show variables like 'datadir';\G