上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 26 下一页
摘要: 1 赋予指定用户权限 grant select,insert on *.* to 'shop'@'%'; 2 查询指定用户权限 show grants for shop; 3 撤销指定用户权限 REVOKE ALL ON *.* FROM 'shop'@'%'; 附上一条链接仅供参考:https:/ 阅读全文
posted @ 2021-05-27 17:16 哦~杰克 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 1 vim /etc/ssh/sshd_config 将 PasswordAuthentication yes 改为 no 2 重启sshd服务 service sshd restart 阅读全文
posted @ 2021-05-27 14:53 哦~杰克 阅读(441) 评论(0) 推荐(0) 编辑
摘要: 1.cli模式下登录mysql mysql -uroot -p 然后执行 show processlist; 此命令可以查到mysql正在运行的一些进程,最前面有进程的id 2.使用mysqladmin杀死相应的id mysqladmin -uroot -p kill id 阅读全文
posted @ 2021-05-27 10:15 哦~杰克 阅读(666) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/chenmh/p/5300370.html 阅读全文
posted @ 2021-05-18 16:49 哦~杰克 阅读(28) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/wangbaobao/p/7087032.html 阅读全文
posted @ 2021-05-17 17:11 哦~杰克 阅读(125) 评论(0) 推荐(0) 编辑
摘要: java -jar -Duser.timezone=GMT+08 xxx.jar 阅读全文
posted @ 2021-05-08 17:38 哦~杰克 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 1 https://blog.51cto.com/lizhenliang/1362313 (只做参考!!!挺靠谱的。) 阅读全文
posted @ 2021-04-30 09:11 哦~杰克 阅读(37) 评论(0) 推荐(0) 编辑
摘要: grant all privileges on *.* to 'yangxin'@'%' identified by 'yangxin123456' with grant option; 阅读全文
posted @ 2021-04-29 15:48 哦~杰克 阅读(542) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/uphold/p/11221179.html (照着链接里面做吧!) 阅读全文
posted @ 2021-04-28 11:29 哦~杰克 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 1 chmod +x /etc/init.d/mysqld 2 chkconfig --add mysqld 3 chkconfig mysqld on 阅读全文
posted @ 2021-04-26 14:46 哦~杰克 阅读(155) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 26 下一页