-
Notifications
You must be signed in to change notification settings - Fork 0
/
apache_hhvm.sh
352 lines (287 loc) · 11.3 KB
/
apache_hhvm.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
#!/bin/sh
#rootユーザーで実行 or sudo権限ユーザー
<<COMMENT
作成者:サイトラボ
URL:https://www.site-lab.jp/
URL:https://buildree.com/
注意点:conohaのポートは全て許可前提となります。もしくは80番、443番の許可をしておいてください。システムのfirewallはオン状態となります。centosユーザーのパスワードはランダム生成となります。最後に表示されます
目的:システム更新+apache2.4系のインストール
・apache2.4
・mod_sslのインストール
・hhvmのインストール
・centosユーザーの作成
COMMENT
start_message(){
echo ""
echo "======================開始======================"
echo ""
}
end_message(){
echo ""
echo "======================完了======================"
echo ""
}
#CentOS7か確認
if [ -e /etc/redhat-release ]; then
DIST="redhat"
DIST_VER=`cat /etc/redhat-release | sed -e "s/.*\s\([0-9]\)\..*/\1/"`
#DIST_VER=`cat /etc/redhat-release | perl -pe 's/.*release ([0-9.]+) .*/$1/' | cut -d "." -f 1`
if [ $DIST = "redhat" ];then
if [ $DIST_VER = "7" ];then
#EPELリポジトリのインストール
start_message
yum remove -y epel-release
yum -y install epel-release
end_message
#必要ライブラリのインストール
start_message
yum -y install geoip cpp gcc-c++ cmake git psmisc {binutils,boost,jemalloc,numactl}-devel \
{ImageMagick,sqlite,tbb,bzip2,openldap,readline,elfutils-libelf,gmp,lz4,pcre}-devel \
lib{xslt,event,yaml,vpx,png,zip,icu,mcrypt,memcached,cap,dwarf}-devel \
{unixODBC,expat,mariadb}-devel lib{edit,curl,xml2,xslt}-devel \
glog-devel oniguruma-devel ocaml gperf enca libjpeg-turbo-devel openssl-devel \
make libc-client
end_message
# yum updateを実行
wget wget https://www.logw.jp/download/shell/common/system/update.sh
source ./update.sh
# hhvmのインストール
start_message
echo "hhvmをインストールします"
echo ""
rpm -Uvh http://mirrors.linuxeye.com/hhvm-repo/7/x86_64/hhvm-3.15.3-1.el7.centos.x86_64.rpm
hhvm --version
end_message
# apacheのインストール
echo "apacheをインストールします"
echo ""
PS3="インストールしたいapacheのバージョンを選んでください > "
ITEM_LIST="apache2.4.6 apache2.4.x"
select selection in $ITEM_LIST
do
if [ $selection = "apache2.4.6" ]; then
# apache2.4.6のインストール
echo "apache2.4.6をインストールします"
echo ""
start_message
yum -y install httpd
yum -y install openldap-devel expat-devel
yum -y install httpd-devel mod_ssl
end_message
break
elif [ $selection = "apache2.4.x" ]; then
# 2.4.xのインストール
#IUSリポジトリのインストール
start_message
echo "IUSリポジトリをインストールします"
yum -y install https://repo.ius.io/ius-release-el7.rpm
end_message
#IUSリポジトリをデフォルトから外す
start_message
echo "IUSリポジトリをデフォルトから外します"
cat >/etc/yum.repos.d/ius.repo <<'EOF'
[ius]
name = IUS for Enterprise Linux 7 - $basearch
baseurl = https://repo.ius.io/7/$basearch/
enabled = 1
repo_gpgcheck = 0
gpgcheck = 1
gpgkey = file:///etc/pki/rpm-gpg/RPM-GPG-KEY-IUS-7
[ius-debuginfo]
name = IUS for Enterprise Linux 7 - $basearch - Debug
baseurl = https://repo.ius.io/7/$basearch/debug/
enabled = 0
repo_gpgcheck = 0
gpgcheck = 1
gpgkey = file:///etc/pki/rpm-gpg/RPM-GPG-KEY-IUS-7
[ius-source]
name = IUS for Enterprise Linux 7 - Source
baseurl = https://repo.ius.io/7/src/
enabled = 0
repo_gpgcheck = 0
gpgcheck = 1
gpgkey = file:///etc/pki/rpm-gpg/RPM-GPG-KEY-IUS-7
EOF
end_message
#Nghttp2のインストール
start_message
echo "Nghttp2のインストール"
yum --enablerepo=epel -y install nghttp2
end_message
#mailcapのインストール
start_message
echo "mailcapのインストール"
yum -y install mailcap
end_message
# apacheのインストール
echo "apacheをインストールします"
echo ""
start_message
yum -y --enablerepo=ius install httpd24u
yum -y install openldap-devel expat-devel
yum -y --enablerepo=ius install httpd24u-devel httpd24u-mod_ssl
break
else
echo "どちらかを選択してください"
fi
done
#mod_fcgidのインストール
start_message
yum -y install mod_fcgid
end_message
echo "ファイルのバックアップ"
echo ""
cp /etc/httpd/conf/httpd.conf /etc/httpd/conf/httpd.conf.bk
echo "htaccess有効化した状態のconfファイルを作成します"
echo ""
sed -i -e "s|Options Indexes FollowSymLinks|Options FollowSymLinks ExecCGI|" /etc/httpd/conf/httpd.conf
sed -i -e "145i #FastCGI追記" /etc/httpd/conf/httpd.conf
sed -i -e "146i AddHandler fcgid-script .php" /etc/httpd/conf/httpd.conf
sed -i -e "147i FcgidWrapper /usr/local/bin/php-wrapper .php \n" /etc/httpd/conf/httpd.conf
sed -i -e "147i FcgidWrapper /usr/local/bin/php-wrapper .php \n" /etc/httpd/conf/httpd.conf
sed -i -e "149i #追加" /etc/httpd/conf/httpd.conf
sed -i -e "150i <FilesMatch "\.php$">" /etc/httpd/conf/httpd.conf
sed -i -e "151i SetHandler "proxy:fcgi://127.0.0.1:9001/"" /etc/httpd/conf/httpd.conf
sed -i -e "152i </FilesMatch>" /etc/httpd/conf/httpd.conf
sed -i -e "158d" /etc/httpd/conf/httpd.conf
sed -i -e "158i AllowOverride All" /etc/httpd/conf/httpd.conf
sed -i -e "353i #バージョン非表示" /etc/httpd/conf/httpd.conf
sed -i -e "354i ServerTokens ProductOnly" /etc/httpd/conf/httpd.conf
sed -i -e "355i ServerSignature off \n" /etc/httpd/conf/httpd.conf
#SSLの設定変更(http2を有効化)
echo "ファイルのバックアップ"
echo ""
cp /etc/httpd/conf.modules.d/00-mpm.conf /etc/httpd/conf.modules.d/00-mpm.conf.bk
ls /etc/httpd/conf/
echo "Apacheのバージョン確認"
echo ""
httpd -v
echo ""
end_message
#gzip圧縮の設定
cat >/etc/httpd/conf.d/gzip.conf <<'EOF'
SetOutputFilter DEFLATE
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
SetEnvIfNoCase Request_URI\.(?:gif|jpe?g|png)$ no-gzip dont-vary
Header append Vary User-Agent env=!dont-var
EOF
#スクリプト作成
cat >/usr/local/bin/php-wrapper <<'EOF'
#!/bin/sh
export PHP_FCGI_MAX_REQUESTS=10000
export PHP_FCGI_CHILDREN=0
exec /usr/bin/php-cgi
EOF
#権限変更
start_message
echo "権限を変更"
chown apache /usr/local/bin/php-wrapper
chmod u+x /usr/local/bin/php-wrapper
end_message
#/var/runを再起動後も実行
start_message
echo "再起動後に/var/run/hhvmが消えてしまうので実行されるようにする"
cat >/etc/tmpfiles.d/www.conf <<'EOF'
d /var/run/hhvm 0700 apache apache
EOF
end_message
#hhvmの実行者を変更
start_message
echp "hhvmの実行者をapacheに変更します"
cat >/etc/systemd/system/hhvm.service <<'EOF'
[Unit]
Description=HHVM HipHop Virtual Machine (FCGI)
[Service]
ExecStart=/usr/local/bin/hhvm --config /etc/hhvm/server.ini --user apache --mode daemon -vServer.Type=fastcgi -vServer.Port=9001
[Install]
WantedBy=multi-user.target
EOF
end_message
#デーモンリロード
systemctl daemon-reload
# phpinfoの作成
start_message
touch /var/www/html/info.php
echo '<?hh phpinfo();' >> /var/www/html/info.php
cat /var/www/html/info.php
touch /var/www/html/.hhconfig
end_message
#ユーザー作成
#ユーザー作成
wget wget https://www.logw.jp/download/shell/common/user/useradd.sh
source ./useradd.sh
#所有者の変更
start_message
echo "ドキュメントルートの所有者をcentos、グループをapacheにします"
chown -R centos:apache /var/www/html
end_message
# apacheの起動
echo "apacheとHHVMを起動します"
start_message
systemctl start httpd.service
systemctl start hhvm.service
echo "apacheのステータス確認"
systemctl status httpd.service
systemctl status hhvm.service
end_message
#自動起動の設定
start_message
systemctl enable httpd
systemctl enable hhvm
systemctl list-unit-files --type=service | grep httpd
systemctl list-unit-files --type=service | grep hhvm
end_message
#firewallのポート許可
echo "http(80番)とhttps(443番)の許可をしてます"
start_message
firewall-cmd --permanent --add-service=http
firewall-cmd --permanent --add-service=https
echo ""
echo "保存して有効化"
echo ""
firewall-cmd --reload
echo ""
echo "設定を表示"
echo ""
firewall-cmd --list-all
end_message
umask 0002
cat <<EOF
http://IPアドレス/info.php
https://IPアドレス/info.php
で確認してみてください
503エラーになるはずです。その場合はシステム再起動してください
shutdown -r now もしくはrebootで再起動できます。その後ページが見れるようになります
ドキュメントルート(DR)は
/var/www/html
となります。
htaccessはドキュメントルートのみ有効化しています
有効化の確認
https://www.logw.jp/server/7452.html
vi /var/www/html/.htaccess
-----------------
AuthType Basic
AuthName hoge
Require valid-user
-----------------
ダイアログがでればhtaccessが有効かされた状態となります。
●HTTP2について
このApacheはHTTP/2に非対応となります。ApacheでHTTP2を使う場合は2.4.17以降が必要となります。
ドキュメントルートの所有者:centos
グループ:apache
になっているため、ユーザー名とグループの変更が必要な場合は変更してください
EOF
echo "centosユーザーのパスワードは"${PASSWORD}"です。"
else
echo "CentOS7ではないため、このスクリプトは使えません。このスクリプトのインストール対象はCentOS7です。"
fi
fi
else
echo "このスクリプトのインストール対象はCentOS7です。CentOS7以外は動きません。"
cat <<EOF
検証LinuxディストリビューションはDebian・Ubuntu・Fedora・Arch Linux(アーチ・リナックス)となります。
EOF
fi
exec $SHELL -l