Modern GNU / Linux sistemlerinde, pam_limits
kullanıcı başına oturum sayısını sınırlandırabilir.
Kullanıcı başına oturum sayısını sınırlamak için, bir dosyaya /etc/limits.d/
(say /etc/limits.d/maxlogins.conf
) içindeki girişleri ekleyebilirsiniz.
# Some of the lines in this sample might conflict and overwrite each other
# The whole range is included to illustrate the possibilities
#limit users in the users group to two logins each
@users - maxlogins 2
#limit all users to three logins each
* - maxlogins 3
#limit all users except root to 20 simultaneous logins in total
* - maxsyslogins 20
#limit in the users group to 5 logins in total
%users - maxlogins 2
#limit all users with a GID >= 1000 to two logins each
1000: - maxlogins 2
#limit user johndoe to one login
johndoe - maxlogins 2
Pam_limits modülü olmayan diğer Unix benzeri işletim sistemleri ve sistemler farklı olabilir.
@student
"öğrenci" grubunun üyeleri anlamına gelir. Yalnızca "öğrenci" kullanıcısını sınırlamak için "" başını kaldırın@
.