前回
RHEL 8.5にOSS版httpd 2.4.52をインストールする
systemdで起動できるように設定ファイルを作成
cd /usr/lib/systemd/system
sudo touch httpd.service
sudo vi httpd.service
以下を追加
(redhatのものを参考にしているが要検証)
[Unit]
Description=The Apache HTTP Server
#Wants=httpd-init.service
# After=network.target remote-fs.target nss-lookup.target httpd-init.service
After=network.target remote-fs.target nss-lookup.target
Documentation=man:httpd.service(8)
[Service]
Type=simple
Environment=LANG=C
ExecStart=/usr/sbin/httpd $OPTIONS -DFOREGROUND
ExecReload=/usr/sbin/httpd $OPTIONS -k graceful
# Send SIGWINCH for graceful stop
KillSignal=SIGWINCH
KillMode=mixed
PrivateTmp=true
[Install]
WantedBy=multi-user.target
起動確認
sudo systemctl start httpd
sudo systemctl status httpd
次
php 7.4.28を利用したいのでremiリポジトリのphpを利用して設定する
RHEL 8.5にOSS版httpd 2.4.52をインストールする(番外編-phpを利用する)