Profile picture

[Linux] Ubuntu 22.04 : netplan apply 시 에러 발생 : permissions for /etc/netplan/01-network-manager-all.yaml are too open.

JaehyoJJAng2023년 07월 10일

개요

/etc/netplan/01-network-manager-all.yaml 파일의 변경 내용을 적용하기 위해서 sudo netplan apply 실행 시 아래와 같은 에러 발생

permissions for /etc/netplan/01-network-manager-all.yaml are too open. netplan configuration should not be accessible by others. warning:root:cannot call open vswitch: ovsdb-server.service is not running.

해결 방법


/etc/netplan/*.yaml 파일의 기본 권한(622)를 600으로 변경

chmod 600 /etc/netplan/*.yaml

관련 issue
https://askubuntu.com/questions/1477287/need-help-with-a-netplan-configuration-issue


Loading script...