以谁为师 发表于 2016-3-11 14:34:37

mysql权限操作整理-02

初始化root密码
1.mysqladmin初始化命令
mysqladmin -u root password 123456

2. 使用sql语句更新密码 mysql –u root进入mysql
update user set password=PASSWORD("123456") where user='root';
FLUSH PRIVILEGES;


新建数据库、用户
create database zabbix character set utf8;
grant all privileges on zabbix.* to zabbix@localhost identified by 'password';
#zabbix.* :zabbix下面所有表;登录user为zabbix@主机是本地localhost;密码password。



添加远程账号
1.新加root远程账号
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '123456' WITH GRANT OPTION;
#*.*涵盖所有库和表;登录账号root,远程地址 %;指定密码123456 ;WITH GRANT OPTION 具有授予权限的能力
2.使用改表的方法
update user set host = '%' where user = 'root';
#更新
select host, user from user;
#查看
重启mysql服务即可访问。

fireworld 发表于 2016-3-11 18:58:00

支持中国红客联盟(ihonker.org)

若冰 发表于 2016-3-12 00:57:24

我是来水经验的……

borall 发表于 2016-3-12 02:15:42

支持,看起来还是可以的

arctic 发表于 2016-3-12 06:12:06

支持中国红客联盟(ihonker.org)

a136 发表于 2016-3-12 08:21:36

谢谢楼主的分享

arctic 发表于 2016-3-12 15:58:44

谢谢楼主的分享

Jack-5 发表于 2016-3-12 17:17:09

支持中国红客联盟(ihonker.org)

云游者 发表于 2016-3-12 17:42:53

我是来水经验的……

菜鸟小羽 发表于 2016-3-13 18:55:33

页: [1] 2 3 4 5 6 7 8 9 10
查看完整版本: mysql权限操作整理-02