한 번에 사용 권한 변경

1351 단어 Linuxtech
ssh 등을 통해 로그인하면 각 서버 내의 디렉터리, 파일을 통일적으로 변경할 수 있습니다.
다음과 같은 방법을 사용할 수 있다.
// ディレクトリ
find ./* -type d -exec chmod 0705 {} +
// ファイル
find ./* -type f -exec chmod 0644 {} + 
대표적인 임대 서버라면 다음과 같은 느낌을 받을 수 있다.
Xserver
https://www.xserver.ne.jp/manual/man_server_permission.php
// ディレクトリ
find ./* -type d -exec chmod 0705 {} +
// ファイル
find ./* -type f -exec chmod 0644 {} +
벚꽃 대여 서버
https://help.sakura.ad.jp/206206041/
// ディレクトリ
find ./* -type d -exec chmod 0755 {} +
// ファイル
find ./* -type f -exec chmod 0705 {} +
롤리팝, 혈장
https://lolipop.jp/manual/hp/permission/
https://support.heteml.jp/hc/ja/articles/360042135454-CGI-SSI-PHP-sendmail
// ディレクトリ
find ./* -type d -exec chmod 0705 {} +
// ファイル
find ./* -type f -exec chmod 0604 {} +

좋은 웹페이지 즐겨찾기