우분투에서 사용하고 있는 포트를 확인합니다.
아래 명령을 통해 현재 사용하고 있는 포트를 확인할 수 있습니다.
$ netstat -tnlp | grep "LISTEN"
netstat -tnlp | grep "LISTEN"
하지만 netstat 명령이 설치되지 않은 경우 아래 에러가 발생합니다.
Command 'netstat' not found, but can be installed with: sudo apt install net-tools
아래 명령을 통해 설치합니다.
$ sudo apt-get install net-tools
'개발 > 정리' 카테고리의 다른 글
2023년 1회 정보처리기사 후기 (feat. 연서중 답안지 파쇄) (2) | 2023.06.09 |
---|---|
[Docker] 도커 네트워크 (Docker Network) (0) | 2023.04.12 |
[Linux] systemctl 명령 에러 System has not been booted with systemd as init system (PID 1). (1) | 2023.04.11 |
웹 브라우저로 개발하기 (온라인 IDE) (1) | 2022.12.28 |
C++ 백준 ios_base::sync_with_stdio(false); cin.tie(null); 구문을 추가해주는 이유 (2) | 2022.12.26 |
댓글