systemd Remote-fs.target이 fstab에서 제거된 원격 파일 시스템 마운트를 시도합니다.

systemd Remote-fs.target이 fstab에서 제거된 원격 파일 시스템 마운트를 시도합니다.

CentOS 7 시스템입니다.

이것은 실제로 kafka 서비스로 시작됩니다. Remote-fs.target에 대한 종속성으로 인해 Kafka를 시작할 수 없습니다.

Remote-fs.target을 수동으로 실행하려고 하면 다음과 같습니다.

sudo systemctl start remote-fs.target
A dependency job for remote-fs.target failed. See 'journalctl -xe' for details.

그래서 저는 Journalctl -xe를 실행하고 다음을 얻습니다.

Jun 09 15:33:10 lobo2 systemd[1]: Mounting /home/AAI33947/h...
-- Subject: Unit home-AAI33947-h.mount has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit home-AAI33947-h.mount has begun starting up.
Jun 09 15:33:10 lobo2 mount[118920]: error 2 (No such file or directory) opening credential file /home/AAI33947/.cifspwd
Jun 09 15:33:10 lobo2 systemd[1]: home-AAI33947-h.mount mount process exited, code=exited status=2
Jun 09 15:33:10 lobo2 systemd[1]: Failed to mount /home/AAI33947/h.
-- Subject: Unit home-AAI33947-h.mount has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit home-AAI33947-h.mount has failed.
-- 
-- The result is failed.
Jun 09 15:33:10 lobo2 systemd[1]: Dependency failed for Remote File Systems.
-- Subject: Unit remote-fs.target has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit remote-fs.target has failed.
-- 
-- The result is dependency.

그래서 fstab을 확인한 결과 /home/AAI33947/h에 cifs 마운트 명령이 있음을 발견했습니다.

그러나 해당 사용자는 더 이상 우리와 함께 있지 않으며 해당 마운트에 대한 원격 대상 및 로컬 마운트 지점이 더 이상 존재하지 않습니다. 그래서 fstab에서 해당 줄을 삭제했습니다.

그러나 Remote-fs.target을 실행하려고 하면 여전히 동일한 오류가 발생합니다. 더 이상 fstab에 있지 않더라도 여전히 원격 파일 시스템을 마운트하려고 시도하고 있습니다.

어떻게 되어가나요? 이 원격 파일 시스템이 더 이상 수행할 필요가 없다는 것을 어떻게 인식하게 할 수 있습니까? 재부팅하면 가능할 것 같지만 현재 진행 중인 다른 일을 방해하지 않으려고 노력하고 있습니다.

감사해요!

답변1

당신이 달리고 있다면체계, /etc/fstab시작 시 설치 단위를 생성합니다. 변경 하는 경우 해당 단위를 새로 고치려면 fstab실행해야 합니다 . 변경 후 데몬을 다시 로드하지 않고 명령을 실행하면 명령이 실제로 이 문제에 대한 경고를 표시합니다.sudo systemctl daemon-reloadmount -afstab

관련 정보