摘要:
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 阅读全文