show code js

2013年9月5日 星期四

MySQL優化PartII加速及防死機

show VARIABLES like '%max_connect_errors%';
set global max_connect_errors = 1844674407370954751;

show VARIABLES like '%connect_timeout%';
set global connect_timeout = 60;

show VARIABLES like '%skip_name_resolve%';
[mysqld]
skip-name-resolve
;此項若是設定後將無法使用domain指定主機,必須以ip指定主機位置,且只能於ini或cnf中設定無法直接修改,修改後請重新啟動MySQL,請留意
;留意事項(1)增加為ip的登入帳號(2)連結mysql的字串使用domain的均改為ip

show VARIABLES like '%slave_net_timeout%';
set global slave_net_timeout = 30;

show VARIABLES like '%net_read_timeout%';
set global net_read_timeout = 60;

show VARIABLES like '%net_write_timeout%';
set global net_write_timeout = 120;

沒有留言:

張貼留言