当前位置: 技术问答>linux和unix
linux上创建用户后,登陆不行
来源: 互联网 发布时间:2016-02-04
本文导语: 使用root登陆系统,使用命令创建用户. #useradd test #passwd test Changing password for user test. New UNIX password: Retype new UNIX password: 然后退出,使用新的用户test登陆,输入密码之后,登陆不了. 不知道是什么原因?? | ...
使用root登陆系统,使用命令创建用户.
#useradd test
#passwd test
Changing password for user test.
New UNIX password:
Retype new UNIX password:
然后退出,使用新的用户test登陆,输入密码之后,登陆不了.
不知道是什么原因??
#useradd test
#passwd test
Changing password for user test.
New UNIX password:
Retype new UNIX password:
然后退出,使用新的用户test登陆,输入密码之后,登陆不了.
不知道是什么原因??
|
提示密码错误还是什么?
用root登录,在终端下su test看看。
用root登录,在终端下su test看看。
|
ssh的问题, 应该是如楼主说的那样, 在allowuser后面添加各个用户帐户.
|
把 allowuser去掉就得了
|
vi /etc/ssh/sshd_config
找到
AllowUsers root
改为
AllowUsers root test
保存退出.
重起ssh services sshd restart
在使用test帐号就可以登陆了^_^
---------------------------------
为什么我在这个sshd_config 里面根本看不见AllowUsers这行啊?
找到
AllowUsers root
改为
AllowUsers root test
保存退出.
重起ssh services sshd restart
在使用test帐号就可以登陆了^_^
---------------------------------
为什么我在这个sshd_config 里面根本看不见AllowUsers这行啊?
|
rm -rf /home/test
再重新
#useradd test
#passwd test
Changing password for user test.
New UNIX password:
Retype new UNIX password:
再重新
#useradd test
#passwd test
Changing password for user test.
New UNIX password:
Retype new UNIX password: