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 | 29 | 30 | 31 |
Tags
- ubuntu
- SSH
- LIST
- VS Code
- Linux
- pip
- C++
- YOLO
- 채보
- 컨테이너
- Selenium
- Python
- 기타 연주
- mysql
- 프로그래머스
- error
- paramiko
- 핑거스타일
- C#
- OpenCV
- pandas
- Docker
- JSON
- Numpy
- C
- 오류
- label
- windows forms
- Visual Studio
- pytorch
Archives
- Today
- Total
기계는 거짓말하지 않는다
Ubuntu SSH 설치, 설정 본문
원격으로 서버에 접속해야 할 경우 SSH를 사용한다.
설치
sudo apt update
sudo apt install openssh-server
실행 확인
SSH 설치 후 자동으로 실행되지만 확인하는 명령어이다.
명령어 실행 후 Active: 부분을 확인한다.
sudo systemctl status ssh
방화벽(Firewall) 확인, SSH 허용
sudo ufw status # 방화벽 활성화 확인
sudo ufw allow ssh # ssh 허용
SSH 활성, 비활성화, 정지, 시작
sudo systemctl enable ssh # 활성화
sudo systemctl disable ssh # 비활성화
sudo systemctl start ssh # 시작
sudo systemctl stop ssh # 정지
SSH inbound 설정 편집(root 권한 ssh 로그인, timeout, port 등)
sudo vi /etc/ssh/sshd_config
'Linux' 카테고리의 다른 글
Ubuntu 20.04 LTS OpenCV 4.2.0 설치 (0) | 2023.02.18 |
---|---|
Ubuntu Timezone 설정 (한국 시간) (0) | 2023.02.18 |
Ubuntu hostname 변경 (0) | 2023.02.10 |
Linux SSH .bashrc 적용 불가 (0) | 2022.12.23 |
Linux Bash Shell 반복문 (0) | 2022.12.16 |
Comments