Vagrant和php7安装失败

时间:2015-12-07 10:39:43

标签: php vagrant virtualbox vagrantfile php-7

今天我想从头开始安装php7。我看了一些教程,现在我的vagrantfile看起来像:

Vagrant.configure(2) do |config|
  config.vm.box = "ubuntu/trusty64"
  config.vm.provision :shell, path: "bootstrap.sh"
  config.vm.network :forwarded_port, guest: 80, host: 4567
  config.vm.provider "virtualbox" do |v|
      v.memory = 2048
      v.cpus = 2
  end
end

bootstrap.sh:

#!/usr/bin/env bash

apt-get update
apt-get install -y apache2
if ! [ -L /var/www ]; then
  rm -rf /var/www
  ln -fs /vagrant /var/www
fi

apt-get update

apt-get install -y make

apt-get install -y php-pear 
apt-get install -y git-core 
apt-get install -y autoconf 
apt-get install -y bison 
apt-get install -y libxml2-dev 
apt-get install -y libbz2-dev 
apt-get install -y libmcrypt-dev 
apt-get install -y libcurl4-openssl-dev 
apt-get install -y libltdl-dev 
apt-get install -y libpng-dev 
apt-get install -y libpspell-dev 
apt-get install -y libreadline-dev
apt-get install -y libssl-dev
apt-get install -y install libt1-dev

mkdir -p /etc/php7/conf.d
mkdir -p /etc/php7/cli/conf.d
mkdir /usr/local/php7

cd /tmp
git clone https://github.com/php/php-src.git --depth=1
cd php-src
./buildconf
./configure \
        --prefix=/usr/local/php7 \
        --enable-bcmath --with-bz2 \
        --enable-calendar \
        --enable-exif \
        --enable-dba \
        --enable-ftp \
        --with-gettext \
        --with-gd \
        --enable-mbstring \
        --with-mcrypt \
        --with-mhash \
        --enable-mysqlnd \
        --with-mysql=mysqlnd \
        --with-mysqli=mysqlnd \
        --with-pdo-mysql=mysqlnd \
        --with-openssl \
        --enable-pcntl \
        --with-pspell \
        --enable-shmop \
        --enable-soap \
        --enable-sockets \
        --enable-sysvmsg \
        --enable-sysvsem \
        --enable-sysvshm \
        --enable-wddx \
        --with-zlib \
        --enable-zip \
        --with-readline \
        --with-curl \
        --with-config-file-path=/etc/php7/cli \
        --with-config-file-scan-dir=/etc/php7/cli/conf.d
make
make test
make install

我使用vagrant版本1.7.4和虚拟版本5.0.10。

我在编译过程中遇到错误。我做错了什么?

编辑:我一步一步测试了vagrant ssh中的所有命令。直到make一切正常,但make test会导致此输出: enter image description here

2 个答案:

答案 0 :(得分:1)

您正在尝试编译PHP7的主分支,这是一个开发分支而且不稳定。您应该尝试编译稳定版本。

在克隆git存储库之后,您必须签出稳定版本。

 git checkout tags/php-7.0.0 

但是,我建议您从PPA(Personal Package Archive)安装PHP7而不是编译它。

OndřejSurý维护ppa:ondrej/php-7.0,可按如下方式安装:

$ apt-get install python-software-properties
$ add-apt-repository ppa:ondrej/php-7.0

然后可以安装PHP7:

$ apt-get update && apt-get purge php5-fpm && apt-get --purge autoremove && apt-get install php7.0-fpm php7.0-mysql

如需进一步说明,BjørnJohansen撰写了How to upgrade to PHP 7 on Ubuntu

答案 1 :(得分:0)

你应该试试

apt-get install build-essential

应该安装编译器和一堆相关/需要的包