web-dev-qa-db-ja.com

Apache 2.4およびPHP 5.5をUbuntu 12.04にインストールする

私はubuntu 12.04のvm上でApache 2.4とphp 5.5でテスト環境を設定しようとしています、最初のことはリポジトリを追加することです

apt-add-repository ppa:ptn107/Apache
apt-add-repository ppa:ondrej/php5

次に、Apache 2.4をインストールします

apt-get install Apache2-mpm-worker

apacheバージョンの確認:

# Apache2 -v
Server version: Apache/2.4.6 (Ubuntu)
Server built:   Sep 23 2013 07:23:34

インストールPHP 5.5

apt-get install php5-common php5-mysqlnd php5-xmlrpc php5-curl php5-Gd php5-cli php5-fpm php-pear php5-dev php5-imap php5-mcrypt

PHPバージョンの確認

php -v
PHP 5.5.8-3+sury.org~precise+1 (cli) (built: Jan 24 2014 10:15:11) 
Copyright (c) 1997-2013 The PHP Group
Zend Engine v2.5.0, Copyright (c) 1998-2013 Zend Technologies
     with Zend OPcache v7.0.3-dev, Copyright (c) 1999-2013, by Zend Technologies

だから、mod_fastcgiが必要なのにインストールできないので、すべてが大丈夫なようです:

apt-get install libapache2-mod-fastcgi
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you haverequested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
libapache2-mod-fastcgi : Depends: Apache2.2-common (>= 2.2.4) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

Mod_fastcgiを有効にできない場合、php-fpmでphpファイルを実行するにはどうすればよいですか?私が行方不明のものがありますか?

14
poxtron

ここからfastcgi modとApache2をインストールできます。 https://launchpad.net/~ondrej/+archive/Apache2?field.series_filter=precise

10
webdev

上記のsuciとwedevの回答に加えて、次のようなエラーが表示された場合:

dpkg: error processing /var/cache/apt/archives/Apache2-   bin_2.4.16-4+deb.sury.org~precise+4_AMD64.deb (--unpack):
trying to overwrite '/usr/share/man/man8/Apache2.8.gz', which is also in package Apache2.2-common 2.2.22-1ubuntu1.10

あなたが何か馬鹿げたことをしたので(例えば、私が作業しているubuntuイメージによって提供されるphp2.3の上にphp5をインストールしようとしたときのように)、次のコマンドを実行できます。

Sudo dpkg -i --force-overwrite /var/cache/apt/archives/Apache2-bin_2.4.16-3+deb.sury.org~precise+1_AMD64.deb
Sudo dpkg -i --force-overwrite /var/cache/apt/archives/Apache2-data_2.4.16-3+deb.sury.org~precise+1_all.deb
Sudo dpkg -i --force-overwrite /var/cache/apt/archives/Apache2_2.4.16-3+deb.sury.org~precise+1_AMD64.deb

ここに概要を示します: https://askubuntu.com/questions/666720/ubuntu-apt-get-upgrade-error-on-ubuntu-12-04 by user3703155

これは、Apache2のインストールに関する破損した依存関係を踏みつけるようにパッケージマネージャーに指示すると信じています。

その後実行

apt-get install -f 

に続く

apt-get dist-upgrade

そしてその後はすべて幸せでした。

php -version
PHP 5.5.30-1+deb.sury.org~precise+1 (cli) (built: Oct  4 2015 16:14:34) 
Copyright (c) 1997-2015 The PHP Group
Zend Engine v2.5.0, Copyright (c) 1998-2015 Zend Technologies
with XCache v3.2.0, Copyright (c) 2005-2014, by mOo
with Zend OPcache v7.0.6-dev, Copyright (c) 1999-2015, by Zend Technologies
with XCache Optimizer v3.2.0, Copyright (c) 2005-2014, by mOo
with XCache Cacher v3.2.0, Copyright (c) 2005-2014, by mOo
with XCache Coverager v3.2.0, Copyright (c) 2005-2014, by mOo
1
Decoded