Download PDF
Download page Install the PHP Agent by Shell Script.
Install the PHP Agent by Shell Script
Related pages:
This page describes how to install the PHP Agent using the included install.sh
script.
Installing the PHP Agent
These steps describe how to install the PHP Agent with the installation script, install.sh
.
Verify support and system requirements for your environment as described in Install the PHP Agent.
Create the
php-agent
installation directory. The directory should be owned by the same user that runs Apache or PHP-FPM (FastCGI Process Manager). AppDynamics recommends naming the directory/opt/appdynamics/php-agent.
This document refers to the PHP Agent installation directory as:
<php_agent_install>
. Replace the<php_agent_install> syntax
with the full path to your agent installation directory. For example, change<php_agent_install>
to/opt/appdynamics/php-agent
If there is more than one Apache instance on a machine, run
install.sh
once for each Apache instance, each time with the appropriate node,php_ini
dir andphp_ext
dir options.See Run the PHP Proxy Daemon Manually
See Files Added to Your Installation
From the command line, change directories to the PHP agent installation directory and untar the agent distribution tarball, as in the following example:
cd <php_agent_install> tar -xvjf appdynamics-php-agent-x64-linux.tar.bz2
Set the following permissions on your <
php_agent_install>
directory.php
: Make every directory that leads to the PHP agent logs directory readable and executable by all and writable by the directory owner:chmod -R 755 <php_agent_install>
logs
: If possible, make the logs subdirectory readable/writable/executable by all:chmod 777 <php_agent_install>/logs
Directory access permissions of 777 may be too permissive for some organizations. In this case, simply make sure that the directory is owned by the
apache
/php
/proxy
user.
Run the installation script using this syntax:
<php_agent_install>/install.sh [-s] -a=<account_name>@<account_access_key> [--http-proxy-host=<proxy_host>] [--http-proxy-port=<proxy_port>] [-e <php_ext_dir>] [-i <php_ini_dir>] [-p <php_binary_dir>] [-v <php_version>] <controller-host> <controller-port> <app_name> <tier_name> <node_name>
The command arguments are described as follows:- -s option: You can optionally specify the
-s
option if you want the agent to use SSL (HTTPS) to connect to the controller. In this case, set the Controller port to the HTTPS port of the controller. -a account_name@account_access_key
: The required controller account name and account key. To find your account name and access key, click in the upper right corner of the AppDynamics UI, then click License.http-proxy-host
andhttp-proxy-port
: Set the<http-proxy-host>
and<
http-proxy-port>
to route data to the controller through a proxy server. The<http-proxy-host>
is the hostname or IP address of the proxy server. The<http-proxy-port>
is the proxy server HTTP or HTTPS port, whichever you are using. If you set thehttp-proxy-host
you must set thehttp-proxy-port
as well.http-proxy-user
,http-proxy-password-file:
The username and password file if using a proxy and the proxy server requires credentials.-e
option: Extensions directory for theappdynamics_agent.so
file. Needed on Ubuntu as well as when the default PHP CLI binary cannot be determined.-
i option:ini
directory for theappdynamics_agent.ini
file. Needed on Ubuntu as well as when the default PHP CLI binary cannot be determined.-v
option: version of PHP that you are instrumenting. Valid formats are version numbers to one or two decimal positions, for example,5.4
and5.4.21
are both valid. Needed only when the default PHP CLI binary cannot be determined or there is no PHP CLI binary.-p
option: path to the PHP binaryenable-cli-long-running
: Set totrue
to defend PHP in long-running CLI applications. Defaults tofalse.
See Long-Running CLI Applications with the Suhosin Patch.--log-dir=<dir>
: The directory to which the agent and proxy logs should be written. Defaults to the<php_agent_install>/logs
directory.--proxy-ctrl-dir=<dir>
: The proxy control directory. If not specified, the installer creates a temporary directory.
If all options are used, the
-e
,-i
and-v
options have precedence over the -p option.On Ubuntu, the installation needs to be performed as the root user. Also, you need to use the
-e
option to indicate the correct extensions directory for theappdynamics_agent.so
file and the-i
option for the correctini
directory for theappdynamics_agent.ini
file.- -s option: You can optionally specify the
Restart the webserver, unless you are installing an agent to monitor PHP-CLI only.
If your installation failed, see Resolve PHP Agent Installation Issues.
Installation Command Samples
The following illustrates a sample command to install the agent:
install.sh controller 8090 -a=PHPCust@XC6v2n8m2$543 myApp myTier myNode
To install the agent using SSL, use the -s
switch, as follows:
install.sh -s -a=PHPCust@XC6v2n8m2$543 controller1.appdynamics.com 8818 myApp myTier myNode
The following sample command illustrates installation with a proxy server present:
install.sh --http-proxy-host=myproxyhost --http-proxy-port=8099 -a=PHPCust@XC6v2n8m2$543 controller 8090 myApp myTier myNode