1. 程式人生 > 其它 >MySQL Shell的簡單介紹(r12筆記第95天)

MySQL Shell的簡單介紹(r12筆記第95天)

MySQL Shell是在官方版本5.7.12推出,工具的初衷本身都是為了解決一類問題,想必官方從很多方面瞭解到工具的使用情況,支援的開發語言太多,眾口難調,所以這麼個命令列工具就出來了,從它的推出,足以看到MySQL的格局,它是把很多能做不能做得都攬過來自己做了。根據官方的shell,python,原生SQL,Javascript等,格式都是清一色的JSON.

如果對這個工具還是有一些疑惑的話,在最新版本的InnoDB Cluster可以作為其中的一個標準組件,如果你想搭建這個環境,裡面的標準步驟是按照MySQL Shell的操作來的,再加上MySQL Router,MGR,這一套算是全了。

這個工具本身是一個可選元件,如果平時用起來也是一個蠻不錯的選擇。最新版本是1.0.9,可以通過如下的方式來下載二進位制版本。

wget https://dev.mysql.com/get/Downloads/MySQL-Shell/mysql-shell-1.0.9-linux-glibc2.12-x86-64bit.tar.gz --no-check-certificate mysqlsh命令是這個工具的核心部分,如果檢視這個mysqlsh命令的情況如下:

# file mysqlsh mysqlsh: ELF 64-bit LSB executable, x86-64, version 1 (GNU/Linux), dynamically linked (uses shared libs), for GNU/Linux 2.6.18, stripped

假設你連線MySQL是通過如下的方式來連線。

# mysql -uroot -h127.0.0.1 --port=3308 -pmysql

那麼在mysqlsh裡面就很容易了。

mysql-js> connect root:[email protected]:3308 Creating a Session to '[email protected]:3308' Classic Session successfully established. No default schema selected.

如果檢視MySQL服務的狀態,就是一個很簡單的status

mysql-js> status MySQL Shell Version 1.0.9

Session type: Classic Connection Id: 1571 Default schema: Current schema: Current user: root@localhost SSL: Cipher in use: null Server version: MySQL Community Server (GPL) Server info: 5.7.17-log Protocol version: 10 Connection: 127.0.0.1 via TCP/IP Server characterset: latin1 Schema characterset: latin1 Client characterset: latin1 Conn. characterset: latin1 Up time: 47 days, 22 hours, 40 minutes, 57 sec Threads: 3 Questions: 691328 Slow queries: 0 Opens: 10336 Flush tables: 35 Open tables: 69 Queries per second avg: 0.166 mysql-js>

總體來說,用法和MongoDB很相似,風格和PG也蠻相似。

比如切換到sql模式。

mysql-js> sql Switching to SQL mode... Commands end with ; mysql-sql> select @@port; +--------+ | @@port | +--------+ | 3308 | +--------+

MySQL Shell的連線還支援uri的方式,使用mysqlsh -uri的形式即可。

當然裡面的很多資訊可以通過API的方式來呼叫得到。

比如檢查狀態等。

mysql-js> dba.configureLocalInstance('[email protected]:3308') Please provide the password for '[email protected]:3308': Please fix these issues and try again. { "errors": [], "restart_required": false, "status": "error" }