1. 程式人生 > >mysql 設定引數常用方法

mysql 設定引數常用方法

1)設定mysql的全域性方法,設定完立刻重啟mysql
vim /etc/my.cnf
[mysqld]
interactive_timeout=1800
wait_timeout=1800

  1. 全域性永久生效現在資料庫中設定,在修改檔案等需要重啟資料庫的時候在重啟mysql

set global interactive_timeout = 1800;
set global wait_timeout = 1800;

–檢視
show global variables like “wait_timeout”;

  1. 回話變數臨時修改 ,只適合當前的回話,退出回話還原
    set wait_timeout=1200;
    set session wait_timeout=1200;
    set session interactive_timeout=1200;