1. 程式人生 > >MySQL 遠端登入阿里雲RDS和常用命令

MySQL 遠端登入阿里雲RDS和常用命令

遠端登入阿里雲資料庫RDS:

mysql -h xxx.mysql.rds.aliyuncs.com -P 3306 -u test -p

-h: RDS地址
-P: 埠號
-u: 使用者名稱
-p: 密碼

然後提示輸入密碼就可以了!

檢視所有的資料庫:

show databases;

檢視wait_timeout時間:

show variables like "%timeout%";

檢視全域性wait_timeout時間:

show global variables like "%timeout%";

檢視程序:

show processlist;