Ok I'm trying to install Ion Cube on an AWS instance created by Bitnami:
Instuctions on how to install Ion Cube for this environment can be found here:
http://wiki.bitnami.com/Components/PHP#How_in_install_IonCube_extension.3f
The problem I'm having is I have reached the restart PHP-fpm and the Apache server part but I'm receiving this error when I try to restart php-fpm. But first here is the version of php I'm running.
php -v
Zend Engine v2.4.0, Copyright (c) 1998-2014 Zend Technologies with the ionCube PHP Loader v4.6.2, Copyright (c) 2002-2014, by ionCube Ltd.
The following are the commands with the corresponding errors when I try to stop and/ or restart php-fpmresta:
$service stop php-fpm
stop: unrecognized service
$sudo service php-fpm stop
php-fpm: unrecognized service
$sudo service php5-fpm stop
php5-fpm: unrecognized service
$sudo service php5-fpm status
php5-fpm: unrecognized service
$sudo service php-fpm status
php-fpm: unrecognized service
$php-fpm restart
No command 'php-fpm' found, did you mean:
$sudo php-fpm restart
sudo: php-fpm: command not found
$service php-fpm restart
php-fpm: unrecognized service
$sudo php-fpm restart
sudo: php-fpm: command not found
$sudo service PHP-fpm stop
PHP-fpm: unrecognized service
$sudo PHP-fpm restart
sudo: PHP-fpm: command not found
$kill php-fpm
-bash: kill: php-fpm: arguments must be process or job IDs
$sudo kill php-fpm
kill: failed to parse argument: 'php-fpm'
$sudo stop php-fpm
stop: Unknown job: php-fpm
$restart php5-fpm
restart: Unknown job: php5-fpm
$sudo restart php5-fpm
restart: Unknown job: php5-fpm
$restart php4-fpm
restart: Unknown job: php4-fpm
$sudo restart php4-fpm
restart: Unknown job: php4-fpm
What I tried doing next was to show the process ID of php-fpm. So, I executed the following command:
$ sudo netstat -p
i got the following result in the PID/ Program name column
3590/php-fpm.conf)
I then did:
$ sudo kill 3590
typed:
$sudo netstat -p
and it showed 3690/php-fpm.conf
Are there any ideas on how to stop/ stop or restart php-fpm?