zwl1619
zwl1619

Reputation: 4232

PHP7.1 can not start on centos7.2

I am installing PHP 7.1 on centos 7.2, after running yum install php71,start php via this command:

# systemctl start php-fpm

error:

Failed to start php-fpm.service: Unit php-fpm.service failed to load: No such file or directory.

searching php-fpm with find command:

[root@i001 ~]# find / -name php-fpm
/etc/opt/remi/php71/sysconfig/php-fpm  //370Bytes
/opt/remi/php71/root/usr/sbin/php-fpm  //4.21MB
/var/opt/remi/php71/log/php-fpm   //folder
/var/opt/remi/php71/run/php-fpm   //folder

The result of php-v:

-bash: php: command not found

What should I do?

Upvotes: 0

Views: 2140

Answers (1)

Remi Collet
Remi Collet

Reputation: 7031

It seems you have installed PHP 7.1 from my repository.

Please read the Wizard instructions.

You have choose to use SCL (for parallel installation), perhaps will be simpler to use standard base packages from remi-php71 repository.

Else, the service name is "php71-php-fpm".

Upvotes: 2

Related Questions