Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- mysqldump: Got error: 1045
- mysql root 비밀번호 변경
- 우분투 mysql 비밀번호 없이 로그인 될때
- html pdf 변환
- svn 충돌 해결 resolved
- PHP 정규식 예제
- libxrender1
- (using password: YES)" when trying to connect
- 파라미터 & 오류
- modsecurity 설치
- group_concat 구분자
- mariadb upgrade
- 자바스크립트비밀번호검증
- usb efi 시스템 파티션 삭제
- PHP 구글 OTP 인증
- sha-2 root
- php 배열제거
- svn 충돌 해결 resolve
- httpd.conf 보안 설정
- apple push notification service (apns) is changing
- 비밀번호정규식
- bootstrap modal
- apache mod rewrite
- 비밀번호검증정규식
- 구글 OTP 인증
- 아파치 웹 서버의 정보 숨기기
- bootstrap
- javascript
- PHP 구글 OTP 연동
- wkhtmltopdf 실행 오류
Archives
- Today
- Total
목록root ssh 원격접속 (1)
투덜이 개발자
[Linux] 서버 root ssh 원격접속 설정
리눅스 서버 ssh 원격접속 설정 # vi /etc/ssh/sshd_config 아래 3가지만 해주면 root 원격 접속이 허용됩니다. PermitRootLogin yes ChallengeResponseAuthentication no PasswordAuthentication yes PermitRootLogin : root 사용자의 로그인 허용 여부. (yes, prohibit-password, forced-commands-only, no) 중에서 설정해야 합니다. 설정하지 않으면 prohibit-password 가 됩니다. yes 로 설정 ChallengeResponseAuthentication : ChallengeResponse 라는 특이한 인증 허용여부. (yes, no). 설정하지 않으면 yes 가..
OS/Linux
2021. 6. 3. 23:27