SSH를 통해 명령을 실행하고 있습니다.
ssh user@ip sudo /var/app/custom
때로는 약 10%의 경우 이 작업이 실패합니다.
sudo: /var/app/custom: command not found Remote command failed with exit status 1
ssh
해당 명령이 100% 존재하는지 미리 확인할 수 있지만 /var/app/custom
(symfony php 명령임) 일관된 문제는 아닙니다.
애플리케이션은 로컬 루트 파일 시스템(NFS 또는 Samba가 포함되지 않음)에 있습니다.
출력 ssh user@ip stat /var/app/custom
:
Size: 843 Blocks: 8 IO Block: 4096 regular file
Device: ca01h/51713d Inode: 1596471 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1001/username) Gid: (
1001/username)
Access: 2022-09-20 16:52:55.860715830 +0000
Modify: 2022-09-15 20:59:12.000000000 +0000
Change: 2022-09-20 16:52:51.300861557 +0000
Birth: -
출력 ssh user@ip mount
(잘림, 이것이 관련 비트라고 생각함)
/dev/xvda1 on / type ext4 (rw,relatime,discard)
어떤 아이디어가 있나요?