5
2

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 5 years have passed since last update.

AWS LightsailでWordpress起動したときにいつもしていること

Last updated at Posted at 2018-11-20

AWS LightsailでWordpress起動後、画面右下のロゴを消す方法がいつもわからなくなる。
また、Wordpressのログインパスワードがわからなくなる。それぞれ、やり方をメモ。

起動時に右下にbitnamiのロゴが出るので削除する

$ sudo /opt/bitnami/apps/wordpress/bnconfig --disable_banner 1

Wordpressのログインパスワードの確認

$ cat bitnami_application_password

Wordpressにuserでログイン後にすること

  • Adminのユーザーアカウントを追加して再ログイン、デフォルトのuserアカウントは消してしまう
  • General Settingsで言語設定、タイムゾーン、Date Formatを変更
  • パーマリンク設定にて、カスタム構造を選んで、「/%category%/%postname%/」を設定する

独自ドメインの設定

独自ドメインを設定するときは以下。コンソールでログイン後、wp-config.phpを編集。

$ vim /opt/bitnami/apps/wordpress/htdocs/wp-config.php

WP_SITEURL、WP_HOMEをコメントアウトして、2行を追加。

//define('WP_SITEURL', 'http://' . $_SERVER['HTTP_HOST'] . '/');
//define('WP_HOME', 'http://' . $_SERVER['HTTP_HOST'] . '/');

define('WP_SITEURL', 'http://自分のドメイン/');
define('WP_HOME', 'http://自分のドメイン/');

Apache再起動

$ sudo /etc/init.d/bitnami restart apache
5
2
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
5
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?