這篇文章跟大家介紹了Mysql安裝與設定調優,然後在文中跟大家提到了mysql修改root密碼的多種方法,需要的朋友參考下吧
#一、安裝
apt-get install mysql-server 需要設定帳號密碼
apt-get isntall mysql-client apt-get libmysqlclient-dev
2.sudo netstat -tap | grep mysql 查看是否安裝成功
root@xyz:~# netstat -tap | grep mysql tcp6 0 0 [::]:mysql [::]:* LISTEN 7510/mysqld -->安装成功
#二、設定mysql遠端存取
##1. 編輯mysql設定文件,把其中bind-address = 127.0.0.1註解了vi /etc/mysql/mysql.conf.d/mysqld.cnf2. 使用root進入mysql指令行,執行如下2個指令,範例中mysql的root帳號密碼:root
grant all on *.* to root@'%' identified by 'root' with grant option; flush privileges;3. 重啟mysql
/etc/init.d/mysql restart
##三、MySQL修改root密碼的多種方法
方法1:用SET PASSWORD指令
mysql -u root mysql> SET PASSWORD FOR 'root'@'localhost' = PASSWORD('newpass');
mysqladmin -u root password "newpass"
mysqladmin -u root password oldpass "newpass"
mysql -u root mysql> use mysql; mysql> UPDATE user SET Password = PASSWORD('newpass') WHERE user = 'root'; mysql> FLUSH PRIVILEGES; 在丢失root密码的时候,可以这样 mysqld_safe --skip-grant-tables& mysql -u root mysql mysql> UPDATE user SET password=PASSWORD("new password") WHERE user='root'; mysql> FLUSH PRIVILEGES;
總結
###################################################以上是Mysql中關於修改root密碼以及安裝與設定調優的方法介紹的詳細內容。更多資訊請關注PHP中文網其他相關文章!