05 2021 档案
摘要:在从库执行 # stop slave; # set global sql_slave_skip_counter=1; # start slave; 这只是暂时的,错误之后可能还会报出,一定要从根部找出原因去解决。
阅读全文
摘要:windos 可以访问链接下载 , linux可以用wget 进行下载 http://nchc.dl.sourceforge.net/project/amoeba/Amoeba%20for%20mysql/3.x/amoeba-mysql-3.0.5-RC-distribution.zip (如果下
阅读全文
摘要:SELECT COUNT(*) TABLES, table_schema FROM information_schema.TABLES WHERE table_schema = '库名';
阅读全文
摘要:1 赋予指定用户权限 grant select,insert on *.* to 'shop'@'%'; 2 查询指定用户权限 show grants for shop; 3 撤销指定用户权限 REVOKE ALL ON *.* FROM 'shop'@'%'; 附上一条链接仅供参考:https:/
阅读全文
摘要:1 vim /etc/ssh/sshd_config 将 PasswordAuthentication yes 改为 no 2 重启sshd服务 service sshd restart
阅读全文
摘要:1.cli模式下登录mysql mysql -uroot -p 然后执行 show processlist; 此命令可以查到mysql正在运行的一些进程,最前面有进程的id 2.使用mysqladmin杀死相应的id mysqladmin -uroot -p kill id
阅读全文
摘要:https://www.cnblogs.com/chenmh/p/5300370.html
阅读全文
摘要:https://www.cnblogs.com/wangbaobao/p/7087032.html
阅读全文
摘要:java -jar -Duser.timezone=GMT+08 xxx.jar
阅读全文