質問編集履歴
3
試したことの追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -84,11 +84,11 @@
|
|
84
84
|
|
85
85
|
$ sudo su -
|
86
86
|
|
87
|
-
|
87
|
+
yum -y install httpd mod_ssl
|
88
88
|
|
89
|
-
|
89
|
+
systemctl start httpd
|
90
90
|
|
91
|
-
|
91
|
+
systemctl enable httpd
|
92
92
|
|
93
93
|
|
94
94
|
|
@@ -96,13 +96,13 @@
|
|
96
96
|
|
97
97
|
$ sudo su -
|
98
98
|
|
99
|
-
|
99
|
+
amazon-linux-extras install php7.3
|
100
100
|
|
101
101
|
途中で "Is this ok [y/d/N]:" と聞かれるので、小文字のyを入力します。
|
102
102
|
|
103
103
|
|
104
104
|
|
105
|
-
|
105
|
+
yum -y install php-mbstring php-mysqlnd php-pdo
|
106
106
|
|
107
107
|
|
108
108
|
|
@@ -110,25 +110,25 @@
|
|
110
110
|
|
111
111
|
$ sudo su -
|
112
112
|
|
113
|
-
|
113
|
+
cd /usr/local/src/
|
114
114
|
|
115
|
-
|
115
|
+
wget https://ja.wordpress.org/latest-ja.tar.gz
|
116
116
|
|
117
|
-
|
117
|
+
tar -xzvf latest-ja.tar.gz
|
118
118
|
|
119
|
-
|
119
|
+
cp -r wordpress/* /var/www/html/
|
120
120
|
|
121
|
-
|
121
|
+
chown -R apache: /var/www/html/
|
122
122
|
|
123
|
-
|
123
|
+
cd /var/www/html/
|
124
124
|
|
125
|
-
|
125
|
+
mv wp-config-sample.php wp-config.php
|
126
126
|
|
127
127
|
|
128
128
|
|
129
129
|
4.wordpress設定ファイルの編集
|
130
130
|
|
131
|
-
|
131
|
+
vi wp-config.php
|
132
132
|
|
133
133
|
(rdsの指定)
|
134
134
|
|
2
試したことの追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -78,31 +78,103 @@
|
|
78
78
|
|
79
79
|
|
80
80
|
|
81
|
-
ec2
|
81
|
+
行ったことは、ec2 rdsの起動後、
|
82
82
|
|
83
|
-
|
83
|
+
1.Webサーバーのインストール
|
84
84
|
|
85
|
-
|
85
|
+
$ sudo su -
|
86
86
|
|
87
|
-
|
87
|
+
# yum -y install httpd mod_ssl
|
88
88
|
|
89
|
-
|
89
|
+
# systemctl start httpd
|
90
90
|
|
91
|
-
index.php wp-blog-header.php wp-includes wp-signup.php
|
92
|
-
|
93
|
-
license.txt wp-comments-post.php wp-links-opml.php wp-trackback.php
|
94
|
-
|
95
|
-
readme.html wp-config.php wp-load.php xmlrpc.php
|
96
|
-
|
97
|
-
|
91
|
+
# systemctl enable httpd
|
98
|
-
|
99
|
-
wp-activate.php wp-content wp-mail.php
|
100
|
-
|
101
|
-
wp-admin wp-cron.php wp-settings.php
|
102
92
|
|
103
93
|
|
104
94
|
|
95
|
+
2.phpインストール
|
96
|
+
|
97
|
+
$ sudo su -
|
98
|
+
|
99
|
+
# amazon-linux-extras install php7.3
|
100
|
+
|
101
|
+
途中で "Is this ok [y/d/N]:" と聞かれるので、小文字のyを入力します。
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
# yum -y install php-mbstring php-mysqlnd php-pdo
|
106
|
+
|
107
|
+
|
108
|
+
|
109
|
+
3.wordpress
|
110
|
+
|
111
|
+
$ sudo su -
|
112
|
+
|
113
|
+
# cd /usr/local/src/
|
114
|
+
|
115
|
+
# wget https://ja.wordpress.org/latest-ja.tar.gz
|
116
|
+
|
117
|
+
# tar -xzvf latest-ja.tar.gz
|
118
|
+
|
119
|
+
# cp -r wordpress/* /var/www/html/
|
120
|
+
|
121
|
+
# chown -R apache: /var/www/html/
|
122
|
+
|
123
|
+
# cd /var/www/html/
|
124
|
+
|
125
|
+
# mv wp-config-sample.php wp-config.php
|
126
|
+
|
127
|
+
|
128
|
+
|
129
|
+
4.wordpress設定ファイルの編集
|
130
|
+
|
131
|
+
# vi wp-config.php
|
132
|
+
|
133
|
+
(rdsの指定)
|
134
|
+
|
135
|
+
// ** MySQL 設定 - この情報はホスティング先から入手してください。 ** //
|
136
|
+
|
137
|
+
/** WordPress のためのデータベース名 */
|
138
|
+
|
139
|
+
define( 'DB_NAME', '' );
|
140
|
+
|
141
|
+
|
142
|
+
|
143
|
+
/** MySQL データベースのユーザー名 */
|
144
|
+
|
145
|
+
define( 'DB_USER', '' );
|
146
|
+
|
147
|
+
|
148
|
+
|
149
|
+
/** MySQL データベースのパスワード */
|
150
|
+
|
151
|
+
define( 'DB_PASSWORD', '' );
|
152
|
+
|
153
|
+
|
154
|
+
|
155
|
+
/** MySQL のホスト名 */
|
156
|
+
|
157
|
+
define( 'DB_HOST', '' );
|
158
|
+
|
159
|
+
|
160
|
+
|
161
|
+
/** データベースのテーブルを作成する際のデータベースの文字セット */
|
162
|
+
|
163
|
+
define( 'DB_CHARSET', 'utf8' );
|
164
|
+
|
165
|
+
|
166
|
+
|
167
|
+
/** データベースの照合順序 (ほとんどの場合変更する必要はありません) */
|
168
|
+
|
169
|
+
define( 'DB_COLLATE', '' );
|
170
|
+
|
171
|
+
|
172
|
+
|
173
|
+
5.EC2インスタンスのパブリックDNS
|
174
|
+
|
175
|
+
|
176
|
+
|
105
|
-
|
177
|
+
になります。
|
106
178
|
|
107
179
|
### 補足情報(FW/ツールのバージョンなど)
|
108
180
|
|
1
タグの追加
test
CHANGED
File without changes
|
test
CHANGED
File without changes
|