[SQL] 纯文本查看 复制代码 初始化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服务即可访问。 |