您好,登錄后才能下訂單哦!
前言:該腳本即可批量創建用戶,又可批量刪除用戶,具體針對哪個用戶進行操作,是在一個文本文件中進行定義的。并且使用此腳本創建的用戶,首次登陸必須修改密碼。
[root@localhost ~]# vim create_user.sh
usergroup="" #if your account need secondary group,add here
pwmech="openssl" #"openssl" or "account" is needed.
homeperm="no" # if "yes" then I will modify home dir permission to 711
usepw="123456" #this is all user init password
# 1.check the accountadd.txt file
action="${1}" #"create" is useradd and "delete" is userdel
if [ ! -f accountadd.txt ];
then
echo "There is no accountadd.txt file,stop here"
exit 1
fi
[ "${usergroup}" != "" ] && groupadd -r ${usergroup}
rm -f outputpw.txt
usernames=$(cat accountadd.txt)
for username in ${usernames}
do
case ${action} in
"create")
[ "${usergroup}" != "" ] && usegrp=" -G ${usergroup} " || usegrp=""
useradd ${usegrp} ${username}
echo ${usepw} | passwd --stdin ${username} #set password
chage -d 0 ${username}
[ "${homeperm}" == "yes" ] && chmod 711 /home/${username}
echo "username=${username},password=${usepw}" >> outputpw.txt
;;
"delete")
echo "deleting ${username}"
userdel -r ${username}
;;
*)
echo "Usage:$0[create | delete]"
;;
esac
done
[root@localhost ~]# cat accountadd.txt #將需要創建的用戶名寫入該文件
lv1
lv2
lv3
lv4
#進行測試
[root@localhost ~]# sh create_user.sh create #執行create選項,進行創建
更改用戶 lv1 的密碼 。
passwd:所有的身份驗證令牌已經成功更新。
更改用戶 lv2 的密碼 。
passwd:所有的身份驗證令牌已經成功更新。
更改用戶 lv3 的密碼 。
passwd:所有的身份驗證令牌已經成功更新。
更改用戶 lv4 的密碼 。
passwd:所有的身份驗證令牌已經成功更新。
[root@localhost ~]# tail -n 4 /etc/passwd #查看是否創建成功
lv1:x:1004:1005::/home/lv1:/bin/bash
lv2:x:1005:1006::/home/lv2:/bin/bash
lv3:x:1006:1007::/home/lv3:/bin/bash
lv4:x:1007:1008::/home/lv4:/bin/bash
[root@localhost ~]# sh create_user.sh delete #執行delete選項,進行刪除
deleting lv1
deleting lv2
deleting lv3
deleting lv4
———————— 本文至此結束,感謝閱讀 ————————
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。