摘要:
MySQL刚刚安装完毕时 + mysqld initialize + grep password /var/log/mysqld.log 获取临时密码 + mysql uroot p 输入临时密码登录MySQL + alter user 'root'@'localhost' identified b 阅读全文
摘要:
MySQL复制 MySQL传统的主从复制 master节点的配置 + server_id=1 + sync_binlog=1 + log_bin=master bin + mysql create user 'repl'@'192.168.1.%' identified by 'password'; 阅读全文