zoukankan      html  css  js  c++  java
  • log_slave_updates在线修改

    http://planet.mysql.com/entry/?id=20450

     
    1. mysql> show variables like 'log_slave_updates';  
    2. +-------------------+-------+  
    3. | Variable_name     | Value |  
    4. +-------------------+-------+  
    5. | log_slave_updates | OFF   |  
    6. +-------------------+-------+  
    7. 1 row in set (0.00 sec)  
    8.   
    9. mysql> set global log_slave_updates=1;  
    10. ERROR 1238 (HY000): Variable 'log_slave_updates' is a read only variable  
     
     
      1. mysql> system gdb -p $(pidof mysqld) -ex "set opt_log_slave_updates=1" -batch  
      2. mysql> show variables like 'log_slave_updates';  
      3. +-------------------+-------+  
      4. | Variable_name | Value |  
      5. +-------------------+-------+  
      6. | log_slave_updates | ON |  
      7. +-------------------+-------+  
  • 相关阅读:
    子网掩码的作用与IP网段的划分
    DHCP服务器
    Anaconda安装、更新第三方包
    time模块的使用
    TensorFlow安装
    机器学习-线性回归
    机器学习
    Pyhton-类(2)
    python-类(1)
    Python-函数
  • 原文地址:https://www.cnblogs.com/zengkefu/p/5654842.html
Copyright © 2011-2022 走看看