end0tknr's kipple - web写経開発

太宰府天満宮の狛犬って、妙にカワイイ

RHEL8 へ Apache2.4 & mod_php(ver.7.4 from source) を install

https://end0tknr.hateblo.jp/entry/20201129/1606610007

上記entryのphp 7.4版です。

以前のphp 7.2と configure時のoptionが仕様変更になっていましたので、 メモとして残しておきます。 (--with-mysqlを削除、--with-curlを追加)

$ wget https://www.php.net/distributions/php-7.4.30.tar.gz
$ tar -xvf php-7.4.30.tar.gz
$ cd php-7.4.30
./configure   --with-apxs2=/usr/bin/apxs \
              --enable-mbstring \
          --with-mysqli=/usr/bin/mysql_config \
          --with-pdo-mysql=/usr/bin/mysql_config \
          --with-pdo-pgsql=/usr/bin/pg_config \
              --with-curl
$ make
$ make test
$ sudo cp libs/libphp7.so /etc/httpd/modules/