[ 작업 환경 ]
Centos 7.8
Naver Cloud Platform
[ 문제 상황 ]
$ sudo snap install flutter --classic
error: cannot communicate with server: Post "http://localhost/v2/snaps/flutter": dial unix /run/snapd.socket: connect: no such file or directory
[ 문제 원인 ]
snapd가 가동중이지 않기 때문에 발생하는 문제입니다.
[ 해결 방법 ]
snapd inactive 상태 확인 및 가동 진행
sudo systemctl status snapd.service
sudo systemctl start snapd.service
sudo systemctl status snapd.service
이를 통해 본 오류에 대한 해결은 완료됩니다.