목록IT/Error (5)
And Brain said,
kubectl 명령어 실행 시 아래의 에러 메시지를 만난다면, The connection to the server HOST:6443 was refused - did you specify the right host or port? 다음과 같은 명령어들을 실행해주시면 됩니다. containerd config default | tee /etc/containerd/config.toml sed -i 's/SystemdCgroup = false/SystemdCgroup = true/g' /etc/containerd/config.toml service containerd restart service kubelet restart 이 명령어들은 containerd의 설정을 Kubernetes와 호환되도록 업데이트해줍니다..
kubectl get nodes 명령어로 노드들을 가져오려했더니 이런 에러가 난다면, systemctl stop kubelet sudo systemctl start kubelet strace -eopenat kubectl version 위 세가지 명령어를 입력해줍니다. 잘 가져오는 것을 확인. 나의 경우엔 메모리 부족으로 인해 발생한 에러 같다.
이 에러는 고정 IP를 할당한 서버에 DNS 값을 설정하지 않을 때 나는 에러다. 아마 당신이 우분투 GUI를 써서 고정 IP를 할당했다면 이 화면을 알 것이다. DNS 값을 제대로 적었는지, 혹은 빼먹었는지 확인해보자.
분명 yarn을 install 했음에도 yarn을 실행을 못할 경우. 이는 스크립트를 실행할 권한이 없을 때 생기는 오류다. 일단 관리자 권한으로 Windows PowerShell을 킨다. get-ExecutionPolicy로 권한을 확인한다. 이제 저 권한을 RemoteSigned로 바꿔준다. 이제 VSC에서 yarn이 정상 작동함을 확인할 수 있다.
Sometimes you may encounter sudo command not found. Here's how to fix it. // How to fix : sudo command not found yum install sudo or apt-get install sudo If you have a problem, sudo : apt command not found or sudo : apt-get command not found when using sudo apt or sudo apt-get. Then just use yum. sudo yum ~~ Vice versa. This is because internal package management commands are different. Red Hat ..