[Linux]아파치 80포트 서버 중지[With docker]
Programming/Linux

[Linux]아파치 80포트 서버 중지[With docker]

계속 80포트를 할당하고 있어서, 다른 이미지를 올리지 못하고 있었습니다.

아래의 블로그들을 참고하여 문제를 해결 했습니다.

 

https://kitty-geno.tistory.com/31

 

리눅스(Linux) | 명령어 Apache 상태/시작/중지/재시작

Apache 버전 확인 httpd -v Apache 상태 확인 systemctl status httpd service httpd status Apache 시작 systemctl start httpd service httpd start apachectl start Apache 중지 systemctl stop httpd servi..

kitty-geno.tistory.com

 

https://kugancity.tistory.com/entry/%EB%A6%AC%EB%88%85%EC%8A%A4-%ED%8F%AC%ED%8A%B8-%EC%82%AC%EC%9A%A9%EC%A4%91%EC%9D%B8-%ED%94%84%EB%A1%9C%EC%84%B8%EC%8A%A4-%ED%99%95%EC%9D%B8-%EB%B0%A9%EB%B2%95

 

리눅스 포트 사용중인 프로세스 확인 방법

리눅스(Ubuntu)에서 포트 사용중인 프로세스 확인 방법 netstat 을 사용하여 열려있는 포트와 연동된 PID, 프로그램 이름을 확인 할 수 있다. 특정 port 만 확인하고 싶을 경우 netstat -tulpn | grep 포트번

kugancity.tistory.com