更改mysql user 的密码

设置环境变量:
export PATH=$PATH:/cnet/mysql/bin

登录到数据库:
mysql -h hostname -P 3306 -u yourusername --password=current_password

更改密码:
mysql> set password for 'username'@'%' = PASSWORD('newpwd')

退出:
mysql> exit;

你可能感兴趣的:(Oracle)