The service 'php-fpm72' down

jdn1976

Verified User
Joined
Mar 30, 2020
Messages
107
Hello, when I setup the server, I have setup with setup.sh auto
So it install by default php 7.2. Then I was custom the server, I have installed php 5.6 and 7.3. I left php 5.6 by default.
But since then I make this change, the php 7.2 show always down, and do not start. Any ideas?
 
Code:
I have installed php 5.6 and 7.3. I left php 5.6 by default.
Then your php72 doesn't install anymore

then you can remove php72 in service monitor by solution
 
Code:
I have installed php 5.6 and 7.3. I left php 5.6 by default.
Then your php72 doesn't install anymore

then you can remove php72 in service monitor by solution

Ok, but I want enabled php 5.6 (default), php 7.2 and php 7.3.
When the server was setup it installed the 7.2 as default. Then I went to custom build, add 5.6, I move 7.2 from the first position to second position, and also selected php 7.3. I build in order do enable php 5.6 and 7.3 and since then 7.2 stop working.
 
php7.2 can only in first position

Problem solved. I rebuild all the php versions again using this on custom build

Build PHPInstall/update PHP.Version 5.6 as php-fpm (default), 7.2 as php-fpm (additional), 7.3 as php-fpm (additional) and no as php-fpm (additional).
 
This may help for understanding.


note: The first php version will be the default, and will run all webapps. Everything else is optional.

Just as an FYI

lets say you have set currently
php 1 7.2
php 2 5.6
php 3 7.3
php 4 7.0

So some user chooses number php 3 7.3

Later you move them around to something different.

php 1 7.4
php 2 5.6
php 3 7.2
php 4 7.3

the users are now using php7.2 since it is in position 3. Its position based switching not version based switching.
 
Back
Top