1.远程登录mysql mysql -h ip -u root -p 密码 2.创建用户 格式:grant 权限 on 数据库.* to 用户名@登录主机 identified by "密码"; 例1:增加一个test1用户,密码为123456,可以在任何主机上登录,并对所有数据库有查询,增加,修改和删除的功能.需要在mysql的root用户下进行 mysql>grant select,insert,update,delete on *.* to test1@"%&qu
mysql在最新的版本中会生成随机密码,存储在/etc/my.conf的文件中,但是大多数使用者不会在意这个,因为随机的密码识别性太差,所以我们可以自己配置数据库用户以及设置密码. 设置跳过密码登陆root用户 skip.grant.table 登陆 mysql -u root -p 修改用户密码 update user set password=password("1q2w3e4r") where user="root"; flush privileges; 创建
创建用户.设置密码: useradd testuser 创建用户testuserpasswd testuser 给已创建的用户testuser设置密码 增加sudo权限: #vi /etc/sudoers 找到 ## Allows people in group wheel to run all commands# %wheel ALL=(ALL) ALL 把 # %wheel ALL=(ALL) ALL 前的 "#" 去掉(注意:保留%) 保存文件. usermod -g whe
将一般的用户加入sudo组is not in the sudoers file. This incident will be reported 解决方法 在一般用户下执行sudo命令提示xxx is not in the sudoers file. This incident will be reported.解决方法: $whereis sudoers -------找出文件所在的位置,默认都是/etc/sudoers 有时候我们只需要执行一条root权限的命令也要su到roo