0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

WordPressファイル権限付与手順

Last updated at Posted at 2021-12-16

#WordPressファイル権限付与手順

目的

特定のファイルをWordPressで更新しようとした場合に、権限不足で以下のようにエラーを出力する場合がある。

変更を保存するには事前にこのファイルを書き込み可能にする必要があります。詳しい情報は
ファイルパーミッションの変更を参照してください。

この問題を解消する為に、特定のファイルに対して必要な権限を付与する事が目的。

前提

  • rootに変更する為のパスワードを把握できていること。
  • [対象ファイル]は権限を付与するファイルとして、パスを把握できていること。
  • WordPressは一般的なインストール方法にて構築されていること。

手順

1. rootユーザになる

以降の操作は全てrootユーザで行いますので、必ずrootに変わってください。

su -

2. パスワードの入力

パスワードの入力を求められるので入力する。

3. WordPressの対象ファイルに書き込み権限を付与

以下の2つのコマンドを投入ください。

chown apache.apache [対象ファイル]
chmod 777 [対象ファイル]

4. WordPressよりコンテンツを更新する

コンテンツの更新作業を行う。

5. WordPressの対象ファイルから書き込み権限を削除

chmod 554 [対象ファイル]

6. ログアウトする。

TeraTermはログアウトしてください。

以上です。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?