Red Hat Enterprise Linux Serverバージョン6.7(San Diego)にApache 2.4をインストールするには、次の手順を実行しました。
ステップ1
cd /etc/yum.repos.d/
wget http://repos.fedorapeople.org/repos/jkaluza/httpd24/epel-httpd24.repo
ステップ2
yum install httpd24.x86_64
Apacheは次の場所にインストールされます。
/opt/rh/httpd24/root/etc/httpd
mod_pagespeed
次に、次のコマンドを実行してApacheインストールにインストールしようとしています。
cd /etc/yum.repos.d/
wget https://dl-ssl.google.com/dl/linux/direct/mod-pagespeed-stable_current_x86_64.rpm
rpm -U mod-pagespeed-*.rpm
ただし、実行中にrpm -U mod-pagespeed-*.rpm
次のエラーが発生します。
warning: mod-pagespeed-stable_current_x86_64.rpm: Header V4 DSA/SHA1 Signature, key ID 7fac5991: NOKEY
error: Failed dependencies:
httpd >= 2.2 is needed by mod-pagespeed-stable-1.9.32.10-7443.x86_64
コンピュータにApacheをインストールする標準的な方法を使用していないことを知っていますが、mod_pagespeed
現在インストールされているApacheを削除せずにこれを行う方法はありますか?
別のオプションは、Apache2.4を使用する代わりに、RHEL標準リポジトリからApacheをインストールすることです。
ベストアンサー1
これは、RHEL / CentOSおよびDebian / UbuntuベースのシステムにApacheまたはNginx用の最新バージョンのmod_pagespeedモジュールをインストールする方法の正しいガイドです。
http://www.tecmint.com/install-mod_pagespeed-to-boost-apache-nginx-performance/
コア:
RHEL/CentOSとFedoraで
----------- On 32-bit Systems -----------------
# wget https://dl-ssl.google.com/dl/linux/direct/mod-pagespeed-stable_current_i386.rpm
# yum install at [# if you don't already have 'at' installed]
# rpm -Uvh mod-pagespeed-stable_current_i386.rpm
----------- On 64-bit Systems -----------------
# wget https://dl-ssl.google.com/dl/linux/direct/mod-pagespeed-stable_current_x86_64.rpm
# yum install at [# if you don't already have 'at' installed]
# rpm -Uvh mod-pagespeed-stable_current_x86_64.rpm
DebianとUbuntuで
----------- On 32-bit Systems -----------------
$ wget https://dl-ssl.google.com/dl/linux/direct/mod-pagespeed-stable_current_i386.deb
$ sudo dpkg -i mod-pagespeed-stable_current_i386.deb
$ sudo apt-get -f install
----------- On 64-bit Systems -----------------
$ wget https://dl-ssl.google.com/dl/linux/direct/mod-pagespeed-stable_current_amd64.deb
$ sudo dpkg -i mod-pagespeed-stable_current_amd64.deb
$ sudo apt-get -f install