在Linux系統(tǒng)中,關(guān)機(jī)命令需要root權(quán)限,因此需要輸入管理員用戶的密碼才能執(zhí)行關(guān)機(jī)命令。一般的關(guān)機(jī)命令是"shutdown -h now"或者"poweroff",但在輸入命令后需要先輸入管理員用戶密碼,以確認(rèn)當(dāng)前用戶身份并執(zhí)行關(guān)機(jī)操作。如果未知管理員密碼或沒有root權(quán)限,則無法執(zhí)行關(guān)機(jī)命令。如果需要在普通用戶身份下執(zhí)行關(guān)機(jī),在系統(tǒng)設(shè)置中可以設(shè)置允許普通用戶執(zhí)行關(guān)機(jī)命令,并輸入相關(guān)授權(quán)密碼。但這個授權(quán)密碼不同于管理員root賬戶密碼。
通榆網(wǎng)站制作公司哪家好,找成都創(chuàng)新互聯(lián)公司!從網(wǎng)頁設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、成都響應(yīng)式網(wǎng)站建設(shè)等網(wǎng)站項(xiàng)目制作,到程序開發(fā),運(yùn)營維護(hù)。成都創(chuàng)新互聯(lián)公司2013年開創(chuàng)至今到現(xiàn)在10年的時間,我們擁有了豐富的建站經(jīng)驗(yàn)和運(yùn)維經(jīng)驗(yàn),來保證我們的工作的順利進(jìn)行。專注于網(wǎng)站建設(shè)就選成都創(chuàng)新互聯(lián)公司。
命令:passwd [-k] [-l] [-u [-f]] [-d] [-S] [username]。
名稱:passwd。
使用權(quán)限:所有使用者。
說明:用來更改使用者的密碼。
Linux是一套免費(fèi)使用和自由傳播的類Unix操作系統(tǒng),是一個基于POSIX和UNIX的多用戶、多任務(wù)、支持多線程和多CPU的操作系統(tǒng)。它能運(yùn)行主要的UNIX工具軟件、應(yīng)用程序和網(wǎng)絡(luò)協(xié)議。它支持32位和64位硬件。Linux繼承了Unix以網(wǎng)絡(luò)為核心的設(shè)計(jì)思想,是一個性能穩(wěn)定的多用戶網(wǎng)絡(luò)操作系統(tǒng)。
想知道linux下怎么修改密碼嗎?下面由我為大家整理了linux mysql修改密碼命令,希望大家喜歡!
linux mysql修改密碼命令
1.修改root密碼
linux mysql修改密碼命令方法1:使用mysqladmin命令
--適用于記得root舊密碼,修改root密碼
語法:
mysqladmin -u用戶名 -p舊密碼 password 新密碼
例如:
# mysqladmin -u root -proot password mysql
--注意:如當(dāng)舊密碼輸入錯誤時會報如下錯誤
# mysqladmin -u root -proot1 password mysql
mysqladmin: connect to server at 'localhost' failed
error: 'Access denied for user 'root'@'localhost' (using password: YES)'
linux mysql修改密碼命令方法2:直接更新user表password字段
--適用于忘記root密碼,而對root密碼進(jìn)行重置
Step 1: 修改MySQL的登錄設(shè)置
# vi /etc/my.cnf
--windows系統(tǒng)是my.ini文件
--在[mysqld]的段中加上一句:skip-grant-tables,如沒有[mysqld]字段,可手動添加上
[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
skip-name-resolve
skip-grant-tables
Step 2: 重新啟動mysql
[root@gc ~]# service mysql restart
Shutting down MySQL..[確定]
Starting MySQL...[確定]
Step 3: 登錄并修改MySQL的root密碼
--此時直接用mysql即可無需密碼即可進(jìn)入數(shù)據(jù)庫了
[root@gc ~]# mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.5.24 MySQL Community Server (GPL)
Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql use mysql;
Database changed
mysql update user set password=password('new_password') where user='root';
Query OK, 5 rows affected (0.00 sec)
Rows matched: 5 Changed: 5 Warnings: 0
mysql flush privileges;
Query OK, 0 rows affected (0.00 sec)
--注意:如果沒做step1,直接用mysql登錄時會報如下錯誤
[root@gc ~]# mysql
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
Step 4: 將MySQL的登錄設(shè)置修改回來
再刪除/etc/my.cnf文件中的skip-grant-tables
Step 5: 重新啟動mysql
[root@gc ~]# service mysql restart
Shutting down MySQL..[確定]
Starting MySQL...[確定]
2.修改mysql其它用戶密碼
同樣,普通用戶也可以用上面的方法
--使用mysqladmin命令
[root@njdyw ~]# mysqladmin -u user1 -ppass1 password pass2
--直接修改數(shù)據(jù)庫表
[root@njdyw ~]# mysql -u user1 -ppass1 –Dmysql
mysql update user set password=password('pass2') where user='user1';
mysql flush privileges;
Linux修改密碼用 passwd 命令,用root用戶運(yùn)行passwd ,passwd user_name可以設(shè)置或修改任何用戶的密碼,普通用戶運(yùn)行passwd只能修改它自己的密碼?!禠inux就該這么學(xué)》
[root@linuxprobe.com ~]# passwd ##修改root用戶密碼
Changing password for user root..
New password: ##輸入新密碼
Retype new password: ##再次確認(rèn)新密碼
passwd: all authentication tokens updated successfully.
[root@linuxprobe.com ~]# passwd hadoop ##修改hadoop用戶密碼
Changing password for user hadoop.
New password: ##輸入新密碼
Retype new password: ##再次確認(rèn)新密碼
passwd: all authentication tokens updated successfully.