摘要:
联机文档 独占线程: 如果根据调度程序的自动观察,某个请求独占执行线程的时间超过了正常执行时间,则为“真”。 True if the execute thread is being hogged by a request for much more than the normal execution 阅读全文
摘要:
查看binlog过期时间,设置的时间为90天,这个值默认是0天,也就是说不自动清理,可以根据生产情况修改,本例修改为7天 mysql> show variables like 'expire_logs_days' mysql> set global expire_logs_days=7; 设置之后不 阅读全文
摘要:
select host from user where user='root';查看允许连接的主机 update user set host = '%' where user ='root'; FLUSH PRIVILEGES; 添加用户 CREATE USER 'prod_zdsb'@'local 阅读全文