mysql建立修改登入密碼
mysql安裝完成後,預設情況下,管理員賬號root是無密碼的,這個必須要設定。
1、mysql建立密碼:
[root@web01 mysql]# mysqladmin -u root password 'ceshi123' #為mysql設定密碼
[root@web01 mysql]# mysql #直接使用mysq 登入,會報錯
error 1045 (28000): access denied for user 'root'@'localhost' (using password: no)
[root@web01 mysql]# mysql -uroot -pceshi123 #設定密碼後的正確登入方式
welcome to the mysql monitor. commands end with ; or \g.
your mysql connection id is 5
server version: 5.5.49 mysql community server (gpl)
oracle is a registered trademark of oracle corporation and/or its
affiliates. other names may be trademarks of their respectiveowners.
type 'help;' or '\h' for help. type '\c' to clear the current input statement.
mysql>
2、修改密碼:
[root@web01 mysql]# mysqladmin -uroot -pceshi123 password 123456
3、刪除配置密碼的命令:
history -c 或者 history -d n #n為指定編號的命令
mysql登入密碼 mysql修改登入密碼三種方式
一.用set password命令 首先登入mysql,使用mysql自帶的那個客戶端連線上mysql。格式 mysql set password for 使用者名稱 localhost password 新密碼 例子 mysql set password for root localhost pa...
修改Mysql登入密碼
1 wget 2.安裝mysql community release el7 5.noarch.rpm包 1 sudo rpm ivh mysql community release el7 5.noarch.rpm 安裝這個包後,會獲得兩個mysql的yum repo源 etc yum.repos...
修改MySQL登入密碼
安裝mysql時,如果碰到忘記密碼情況,或者使用解壓縮方式安裝,想要重置密碼,可以使用如下方式進行修改密碼嘗試。1.關閉mysql服務。net stop mysql2.免密碼登入服務。mysqld shared memory skip grant tables 3.重新開啟命令視窗,不使用密碼登入。...