728x90
먼저 root로 접속해준다
sudo su
root 권한으로 하지않으면 아래와 같은 에러문구가 출력된다
adduser: Only root may add a user or group to the system.
계정 생성
adduser 계정아이디
해당 커맨드를 입력하면 아래와같이 추가 입력 부분이 출력된다.
New password:
Retype new password:
passwd: password updated successfully
Changing the user information for rkdvnfms5
Enter the new value, or press ENTER for the default
Full Name []:
Room Number []:
Work Phone []:
Home Phone []:
Other []:
Is the information correct? [Y/n] Y
나는 패스워드만 입력해주었다.
사용자 추가
/etc/sudoers 파일에 아래 내용을 추가해주어야한다.
계정아이디 ALL=(ALL:ALL) ALL
아마 쓰기권한이 없을 것 이기 때문에 권한도 추가해주자
chmod u+w /etc/sudoers
계정/비밀번호 로그인 활성화
/etc/ssh/sshd_config 파일 내 아래 부분을 yes로 바꾸어주면 된다.
PasswordAuthentication yes
수정 후 서비스 재시작
service sshd restart
새로 터미널 열어서 확인
728x90
'Server' 카테고리의 다른 글
iptables 80포트 설정 (0) | 2022.09.13 |
---|---|
Nginx request 제한 설정하기 (0) | 2021.09.16 |
Nginx 413 Request Entity Too Large 에러 (0) | 2021.09.14 |
Nginx https 적용하기 openssl 사용, http https로 리다이렉트 (0) | 2021.09.08 |