标签:数据库 mysql 使用 date password stop cal star 脚本
#链接数据库
mysql -h 192.168.101.148 -u root -p
#允许远程链接
mysql> GRANT ALL PRIVILEGES ON *.* TO ‘root‘@‘%‘ IDENTIFIED BY ‘123456‘ WITH GRANT OPTION;
操作完后切记执行以下命令刷新权限
FLUSH PRIVILEGES
#修改某个账号的密码
mysql> update user set password=password(‘123‘) where user=‘root‘ and host=‘localhost‘;
#使用 mysqld 脚本启动 关闭,重启:
/etc/init.d/mysqld start
/etc/init.d/mysqld stop
/etc/init.d/mysqld restart
标签:数据库 mysql 使用 date password stop cal star 脚本
原文地址:http://www.cnblogs.com/baogechen/p/7760191.html