반응형
macOS에서 AirPlay가 5000 포트를 사용하는 경우 이를 비활성화하는 방법
> docker run -d --privileged -p 2222:22 -p 5000:5000 --name ubuntu-systemd anti1346/ubuntu2204:systemd
8297d45aab30184d578fe5a2cb96e91cb0e59a89195d3f464f1a1ea787ca23a8
docker: Error response from daemon: Ports are not available: exposing port TCP 0.0.0.0:5000 -> 0.0.0.0:0: listen tcp 0.0.0.0:5000: bind: address already in use.
터미널 명령어로 포트 사용 확인
lsof -nP -i4TCP:5000 | grep LISTEN
ControlCe 595 mac_user 10u IPv4 0xbac2ba0210d38b33 0t0 TCP *:5000 (LISTEN)
AirPlay 수신 모드 비활성화
AirPlay 비활성화 후 포트 5000이 여전히 사용 중인지 확인
lsof -nP -i4TCP:5000 | grep LISTEN
이 명령어는 포트 5000을 사용하는 프로세스를 표시합니다. 만약 아무런 결과가 나오지 않는다면 포트가 비어 있는 상태입니다.
참고URL
- macOS 사용 설명서 : Mac을 AirPlay 수신 모드로 설정하기
- macOS 사용 설명서 : Mac에서 AirPlay 수신 모드 환경설정 변경하기
728x90
반응형
'맥(솔라리스)' 카테고리의 다른 글
macOS Apple Silicon에서 VirtualBox를 설치하는 방법 (0) | 2024.10.07 |
---|---|
macOS M1 - Failed to get D-Bus connection: No such file or directory (0) | 2024.01.12 |
macOS에서 OpenJDK를 사용하여 JDK 17을 설치하는 방법 (0) | 2023.12.18 |
데스크탑 및 스테이지 매니저 (0) | 2023.09.30 |
macOS에서 Terraforming을 설치하는 방법 (0) | 2023.08.20 |