溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Linux中怎么禁止用戶登錄

發(fā)布時間:2022-01-20 16:10:38 來源:億速云 閱讀:189 作者:iii 欄目:開發(fā)技術(shù)

本篇內(nèi)容主要講解“Linux中怎么禁止用戶登錄”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學(xué)習(xí)“Linux中怎么禁止用戶登錄”吧!

創(chuàng)建用戶時設(shè)置禁止shell登錄

默認(rèn)情況下,創(chuàng)建用戶時,將按照/etc/default/useradd文件中定義的為用戶分配shell。

Linux中附帶了一個/sbin/nologinshell,當(dāng)用戶嘗試連接時,它會顯示一條消息“This account is current not available”。這是禁止用戶登錄shell的一種方法。下面是使用方式:

useradd -s /sbin/nologin {username}

下面實例,創(chuàng)建一個用戶,shell設(shè)置為/sbin/nologin

[root@localhost ~]# useradd user01 -s /sbin/nologin[root@localhost ~]# tail -1 /etc/passwduser01:x:1000:1000::/home/user01:/sbin/nologin

查看/etc/passwd可以看到user01的shell為/sbin/nologin

Linux中怎么禁止用戶登錄 

給user01用戶設(shè)置密碼,然后ssh登錄測試一下:

[root@localhost ~]# echo '123'|passwd --stdin user01Changing password for user user01.
passwd: all authentication tokens updated successfully.
[root@localhost ~]# ssh user01@localhostuser01@localhost's password:
This account is currently not available.
Connection to localhost closed.

Linux中怎么禁止用戶登錄 

輸入密碼之后,提示This account is current not available,然后連接就關(guān)閉了。

為現(xiàn)有用戶時設(shè)置禁止shell登錄

更改現(xiàn)有用戶的shell,可以使用usermodchsh兩個命令來修改:

chsh命令使用語法如下:

chsh -s /sbin/nologin {username}

下面修改user02用戶的shell:

# Centos8默認(rèn)沒有安裝chsh,使用下面命令安裝:[root@localhost ~]# yum -y install util-linux-user[root@localhost ~]# chsh -s /sbin/nologin user02Changing shell for user02.
chsh: Warning: "/sbin/nologin" is not listed in /etc/shells.
Shell changed.

Linux中怎么禁止用戶登錄

usermod命令使用語法如下:

usermod -s /sbin/nologin {username}

下面修改user03用戶的shell:

[root@localhost ~]# usermod -s /sbin/nologin user03

Linux中怎么禁止用戶登錄

也可以手動修改/etc/passwd文件中的用戶shell。

到此,相信大家對“Linux中怎么禁止用戶登錄”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進入相關(guān)頻道進行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI