mysql> show global variables like "%read_only%"; mysql> flush tables with read lock; mysql> set global read_only=1; mysql> show global variables like "%read_only%"; 将MySQL从只读状态设置为读写状态的命令:
mysql> unlock tables; mysql> set global read_only=0; 对于需要保证master-slave主从同步的salve库 将slave从库设置为只读状态,需要执行的命令为:
mysql> set global read_only=1; 将salve库从只读状态变为读写状态,需要执行的命令是:
mysql> set global read_only=0; 对于Mysql数据库读写状态,主要靠"read_only"全局参数来设定;默认情况下, 数据库是用于读写操作的,所以read_only参数也是0或faluse状态,这时候不论是本地用户还是远程访问数据库的用户,都可以进行读写操作;