본문 바로가기
Come on IT/Linux-Ubuntu

failed to enable unit: Unit file /lib/systemd/system/nfs-common.service is masked 오류 해결

by JONGSKY 2024. 2. 4.
728x90
SMALL

1. 글을 작성하게 된 계기

 

서버끼리 mount를 시키는 과정에서 아래와 같이 nfs-common이 계속 죽어있는 것을 확인했다.

 

 

 

2. 해결방법

 

 

 

 

- 파일을 제거해 서비스 마스크 해제

 

sudo rm /lib/systemd/system/nfs-common.service

 

 

- 다시 demon 로드

 

sudo systemctl daemon-reload

 

- 상태 확인

 

sudo systemctl status nfs-common

 

- 다시 start

 

sudo systemctl start nfs-common

 

- 다시 상태 확인

 

sudo systemctl status nfs-common

 

정상적으로 실행완료

 

- 부팅시 서비스 활성화 실행

 

sudo systemctl enable nfs-common
sudo systemctl is-enabled nfs-common

 

728x90
LIST