Install of Apache-2.4[edit]

APR[edit]

# ./configure --prefix=/usr/local/apr
# make
# make test
# make install

APR-Util[edit]

# ./configure --with-apr=/usr/local/apr
# make
# make test
# make install

pcre[edit]

# ./configure --prefix=/usr/local/pcre
# make
# make install
# vi /etc/ld.so.conf
   /usr/local/pcre/lib

Apache[edit]

#  ./configure --prefix=/usr/local/apache --enable-ssl --with-ssl=/usr/local/ssl \
   --with-apr=/usr/local/apr  --with-apr-util=/usr/local/apr \
   --enable-suexec --enable-auth-digest --enable-rewrite \
   --enable-dav --enable-so --with-mpm=prefork
# make
# make install

・起動スクリプト

#  vi /usr/lib/systemd/system/apache.service
[Unit]
Description=httpd-2.4.25 daemon

[Service]
Type=forking
ExecStart=/usr/local/apache/bin/apachectl start

[Install]
WantedBy=multi-user.target

・起動関連

 起動・停止・自動起動
# systemctl start apache
# systemctl stop apache
# systemctl enable apache

トップ   新規 ページ一覧 検索 最終更新   ヘルプ   最終更新のRSS