前提・実現したいこと
プログラミング学習初心者です。的外れな質問をしていたら申し訳ありません。
AWSにおいて、wordpressのセットアップを行いたいです。
ここに質問の内容を詳しく書いてください。
諸々の設定を行いましたが、http/ipアドレス/index.phpにアクセスしたときに、下記エラー1のようなものが出てしまい、phpが実行されていないようです。(http/ipアドレス/にアクセスすると、index.phpが表示されず、エラー2(apacheのテストページ)の画面になります。)
発生している問題・エラーメッセージ
エラー1 <?php /** * Front to the WordPress application. This file doesn't do anything, but loads * wp-blog-header.php which does and tells WordPress to load the theme. * * @package WordPress */ /** * Tells WordPress to load the WordPress theme and output it. * * @var bool */ define( 'WP_USE_THEMES', true ); /** Loads the WordPress Environment and Template */ require __DIR__ . '/wp-blog-header.php';
エラー2 This page is used to test the proper operation of the Apache HTTP server after it has been installed. If you can read this page, it means that the Apache HTTP server installed at this site is working properly.
試したこと
行ったことは、ec2 rdsの起動後、
1.Webサーバーのインストール
$ sudo su -
yum -y install httpd mod_ssl
systemctl start httpd
systemctl enable httpd
2.phpインストール
$ sudo su -
amazon-linux-extras install php7.3
途中で "Is this ok [y/d/N]:" と聞かれるので、小文字のyを入力します。
yum -y install php-mbstring php-mysqlnd php-pdo
3.wordpress
$ sudo su -
cd /usr/local/src/
wget https://ja.wordpress.org/latest-ja.tar.gz
tar -xzvf latest-ja.tar.gz
cp -r wordpress/* /var/www/html/
chown -R apache: /var/www/html/
cd /var/www/html/
mv wp-config-sample.php wp-config.php
4.wordpress設定ファイルの編集
vi wp-config.php
(rdsの指定)
// ** MySQL 設定 - この情報はホスティング先から入手してください。 ** //
/** WordPress のためのデータベース名 */
define( 'DB_NAME', '' );
/** MySQL データベースのユーザー名 */
define( 'DB_USER', '' );
/** MySQL データベースのパスワード */
define( 'DB_PASSWORD', '' );
/** MySQL のホスト名 */
define( 'DB_HOST', '' );
/** データベースのテーブルを作成する際のデータベースの文字セット */
define( 'DB_CHARSET', 'utf8' );
/** データベースの照合順序 (ほとんどの場合変更する必要はありません) */
define( 'DB_COLLATE', '' );
5.EC2インスタンスのパブリックDNS
になります。
補足情報(FW/ツールのバージョンなど)
Techacademyのチュートリアル通りに進めています。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/25 07:54
2020/06/25 07:56
2020/06/25 07:57
2020/06/25 07:58
2020/06/25 08:09
2020/06/25 08:18
2020/06/25 08:20