Install PHP agent with Red Hat Package Manager (RPM)
Steps
To install the PHP agent:
Install the agent package from
https://pkg.contrastsecurity.com
. Use this script in your shell to configure your RPM-based system for our package repository. You may needsudo
permissions.tee /etc/yum.repos.d/contrast.repo <<-"EOF" [contrast] name=Contrast centos-$releasever repo baseurl=https://pkg.contrastsecurity.com/rpm-public/redhat-$releasever/ gpgcheck=0 enabled=1 EOF
Once complete, use one of these commands to install the agent and service. The command used depends on which platform you are installing the agent:
sudo yum install contrast-php-agent
OR
sudo dnf install contrast-php-agent
Continue with configuration.
To configure the PHP agent:
There are two ways to configure the agent to work in your environment.
Use the
contrast-php-util
command. This command installs along with the PHP agent and can be used from the command line to enable the agent in your environment.contrast-php-util enable-agent
This will create an
ini
file in the scan directory used by PHP to manage extensionsOR
Edit the PHP configuration file, called
php.ini
. On many systems it can be found under/usr/local/etc/php/
.If the
php-config
command is available, it can be used to find the configuration file path usingphp-config --ini-path
. If no configuration file yet exists under that path, it will need to be created.echo "extension=/usr/local/lib/contrast/php/contrast.so" >> php-config --ini-path/php.ini
On systems in which the
php-config
command is not available PHP itself can be used to tell you where theini
file is located:php -i | grep php.ini
The Configuration File (php.ini) Path line will tell you which
ini
file is active. You can then edit that file to add this to the end of the file:extension=/usr/local/lib/contrast/php/contrast.so
Note that in certain environments, the
ini
file used by the command line instance of PHP might be different from that loaded in the server environment. FPM will use anini
file often located in the/etc/php/<php version>/fpm/
directory. Please ensure that you are operating on the proper PHP instance.Continue with the final setup.
To finalize setup:
Ensure that the necessary extensions are enabled.
The PHP agent requires that the
mbstring
,json
, andcurl
PHP extensions be installed and enabled. If they are not, edit thephp.ini
config file as above and ensure that these lines are present in the configuration file:extension=curl extension=mbstring extension=json
Configure the PHP agent using the PHP YAML template or environment variables (if not already done).
Start your application in the normal way.
Exercise and test your application.
Verify that the PHP agent is running by checking the Contrast web interface and/or looking for the PHP agent log output (depending on configuration).
Notes
Library analysis and route discovery are currently performed on the first request to the application. For this reason, we expect the first request to be considerably slower than subsequent requests.
The agent has not been tested with third-party PHP extensions. The behavior of the agent with any other third-party extensions (including APMs, etc.) is undefined. The agent is known to be incompatible with xdebug and should not be used concurrently.
The agent may not work properly when preloading is enabled. Disabling preloading when using the agent is recommended.
By default, the agent assumes that the server’s working directory when it runs the PHP application is the same as the top-level directory of the application source tree. The agent uses this path to perform library analysis and route discovery. If this is not the case, you will need to use the
application.path
setting in the configuration to set the top-level working directory of your application.