不重啟mysql情況修改引數變數

不一樣的天空w發表於2019-08-26

https://www.cnblogs.com/huidaoli/p/3232265.html


地球人都知道,更新mysql配置my.cnf需要重啟mysql才能生效,但是有些時候mysql線上上,不一定允許你重啟,這時候應該怎麼辦呢?

看一個例子:

1
2
3
4
5
6
7
8
9
10
mysql> show variables like 'log_slave_updates';
+-------------------+-------+
| Variable_name     | Value |
+-------------------+-------+
| log_slave_updates | OFF   |
+-------------------+-------+
1 row in set (0.00 sec)
 
mysql> set global log_slave_updates=1;
ERROR 1238 (HY000): Variable 'log_slave_updates' is a read only variable

看到了吧?報錯了!

後來查了一下資料,發現有一個叫gdb的東西,感覺相當牛X,可以實現線上更改mysql引數,請看例子:

1
2
3
4
5
6
7
8
mysql> system gdb -p $(pidof mysqld) -ex "set opt_log_slave_updates=1" -batch
mysql> show variables like 'log_slave_updates';
+-------------------+-------+
| Variable_name     | Value |
+-------------------+-------+
| log_slave_updates | ON    |
+-------------------+-------+
1 row in set (0.00 sec)

但是在一些可重複的引數,不能直接用set更改,那這時候又要怎麼辦呢?老外給了一個解決方案:

1
2
3
4
5
6
7
8
9
10
mysql> show slave status \G
...
     Replicate_Do_DB: test
...
mysql> system gdb -p $(pidof mysqld)
          -ex 'call rpl_filter->add_do_db(strdup("hehehe"))' -batch
mysql> show slave status \G
...
      Replicate_Do_DB: test,hehehe
...

=========================================================================

   mysql很多引數都需要重啟才能生效,有時候條件不允許,可以使用gdb作為最後的手段

先看看修改之前

mysql> show global variables like '%connection%';
+--------------------------+-------------------+
| Variable_name            | Value             |
+--------------------------+-------------------+
| character_set_connection | latin1            |
| collation_connection     | latin1_swedish_ci |
| max_connections          | 151               |
| max_user_connections     | 0                 |
+--------------------------+-------------------+
4 rows in set (0.01 sec)


使用gdb來修改


[root@asm ~]# gdb -p $(pidof mysqld) -ex "set max_connections=1500" -batch

 其他的引數可以相應的修改


再檢視當前的配置

mysql> show global variables like '%connection%';
+--------------------------+-------------------+
| Variable_name            | Value             |
+--------------------------+-------------------+
| character_set_connection | latin1            |
| collation_connection     | latin1_swedish_ci |
| max_connections          | 1500              |
| max_user_connections     | 0                 |
+--------------------------+-------------------+
4 rows in set (0.00 sec)

 可以看出修改成功了,不過使用gdb有風險,特別是生產環境,有可能導致程式down掉,僅作為最後手段使用.


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31397003/viewspace-2654937/,如需轉載,請註明出處,否則將追究法律責任。

相關文章