質問編集履歴

3

新たなエラーを記述しました。

2018/10/02 11:36

投稿

falconHM
falconHM

スコア6

test CHANGED
File without changes
test CHANGED
@@ -119,3 +119,129 @@
119
119
  ```
120
120
 
121
121
  これに関して検索をしてみても記述に間違いがあるような箇所を発見出来ません。。。
122
+
123
+
124
+
125
+ ---
126
+
127
+ 10/2追記します。
128
+
129
+ サーバーの再起動はできるようになったのですが、error_logに下記エラーが出力されていました。
130
+
131
+ ```
132
+
133
+ [Tue Oct 02 20:05:10 2018] [notice] caught SIGTERM, shutting down
134
+
135
+ [Tue Oct 02 20:05:10 2018] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/suexec)
136
+
137
+ [Tue Oct 02 20:05:19 2018] [warn] Init: Session Cache is not configured [hint: SSLSessionCache]
138
+
139
+ [Tue Oct 02 20:05:19 2018] [notice] Digest: generating secret for digest authentication ...
140
+
141
+ [Tue Oct 02 20:05:19 2018] [notice] Digest: done
142
+
143
+ [Tue Oct 02 20:05:19 2018] [notice] Apache/2.2.15 (Unix) DAV/2 mod_ssl/2.2.15 OpenSSL/1.0.1e-fips configured -- resuming normal operations
144
+
145
+ ```
146
+
147
+ [warn] Init: Session Cache is not configured [hint: SSLSessionCache]
148
+
149
+ 上記で色々検索して解決策を見ているのですが解決に至っていません。。。
150
+
151
+ 現在のvhost.confは以下になります。
152
+
153
+ ```
154
+
155
+ # setting for ssl
156
+
157
+ LoadModule ssl_module modules/mod_ssl.so
158
+
159
+
160
+
161
+
162
+
163
+ #Listen 443
164
+
165
+ #NameVirtualHost *:443
166
+
167
+
168
+
169
+ <IfModule mod_ssl.c>
170
+
171
+
172
+
173
+ <VirtualHost *:443>
174
+
175
+ SSLEngine on
176
+
177
+ SSLCertificateKeyFile /etc/httpd/conf/ssl.key/server.key
178
+
179
+ SSLCertificateFile /etc/httpd/conf/ssl.crt/server.crt
180
+
181
+ SSLCertificateChainFile /etc/httpd/conf/ssl.crt/internal.crt
182
+
183
+
184
+
185
+ ServerName falcon.click
186
+
187
+ DocumentRoot /var/www/html/
188
+
189
+
190
+
191
+ <Directory "/var/www/html/">
192
+
193
+ AllowOverride All
194
+
195
+ Options Indexes FollowSymLinks
196
+
197
+ </Directory>
198
+
199
+ </VirtualHost>
200
+
201
+
202
+
203
+ </IfModule>
204
+
205
+ ```
206
+
207
+ 現在のiptablesは下記になります。
208
+
209
+ ```
210
+
211
+ Chain INPUT (policy ACCEPT)
212
+
213
+ num target prot opt source destination
214
+
215
+ 1 ACCEPT all -- anywhere anywhere state RELATED,ESTABLISHED
216
+
217
+ 2 ACCEPT icmp -- anywhere anywhere
218
+
219
+ 3 ACCEPT all -- anywhere anywhere
220
+
221
+ 4 ACCEPT tcp -- anywhere anywhere state NEW tcp dpt:ssh
222
+
223
+ 5 ACCEPT tcp -- anywhere anywhere tcp dpt:http
224
+
225
+ 6 ACCEPT tcp -- anywhere anywhere tcp dpt:https
226
+
227
+ 7 ACCEPT tcp -- anywhere anywhere tcp dpt:61203
228
+
229
+ 8 REJECT all -- anywhere anywhere reject-with icmp-host-prohibited
230
+
231
+
232
+
233
+ Chain FORWARD (policy ACCEPT)
234
+
235
+ num target prot opt source destination
236
+
237
+ 1 REJECT all -- anywhere anywhere reject-with icmp-host-prohibited
238
+
239
+
240
+
241
+ Chain OUTPUT (policy ACCEPT)
242
+
243
+ num target prot opt source destination
244
+
245
+ ```
246
+
247
+ 色々と調べてはいるのですが、、、何かエラーの原因になる箇所わかりますでしょうか。。。?

2

追記を記入

2018/10/02 11:36

投稿

falconHM
falconHM

スコア6

test CHANGED
File without changes
test CHANGED
@@ -103,3 +103,19 @@
103
103
 
104
104
 
105
105
  何か手順を間違えている箇所ありますでしょうか。。。?m(_ _)m
106
+
107
+
108
+
109
+ ---
110
+
111
+ 9/12追記します。
112
+
113
+ httpd.confのInclude conf.d/*.confをInclude conf.d/vhost.confにしてみたらエラーが下記だけになりました。
114
+
115
+ ```ここに言語を入力
116
+
117
+ [warn] NameVirtualHost *:443 has no VirtualHosts
118
+
119
+ ```
120
+
121
+ これに関して検索をしてみても記述に間違いがあるような箇所を発見出来ません。。。

1

リンク表記の変更

2018/09/12 14:43

投稿

falconHM
falconHM

スコア6

test CHANGED
File without changes
test CHANGED
@@ -12,7 +12,7 @@
12
12
 
13
13
  下記ページを参考に「中間証明書をサーバに配置」まで実施しました。
14
14
 
15
- https://webdirector-blog.com/c_3/p_35/
15
+ [さくらVPS(CentOS7.2+Apache2.4)でSSL証明書(JPRS)を発行してhttpsにするまで](https://webdirector-blog.com/c_3/p_35/)
16
16
 
17
17
 
18
18