Help Docs

Install the Site24x7 PHP Agent in an Azure Web App

Follow these steps to install and configure the Site24x7 APM Insight PHP Agent in an Azure Web App.

Step 1: Create a deployment script

  1. Navigate to the directory /home/site24x7/ (create it if it doesn’t exist).
  2. Create a new shell script named apm-phpagent-deploy.sh in this location.
  3. Add the following contents to the script:
    #!/bin/sh
    
    apt update && apt install -y wget unzip procps 
    
    S247_LICENSE_KEY=YourLicensekey
    ZPA_APPLICATION_NAME=YourApplicationName
    
    wget -O InstallDataExporter.sh https://staticdownloads.site24x7.com/apminsight/S247DataExporter/linux/InstallDataExporter.sh
    sh InstallDataExporter.sh
    
    wget -O InstallAgentPHP.sh https://staticdownloads.site24x7.com/apminsight/agents/AgentPHP/linux/InstallAgentPHP.sh
    sh InstallAgentPHP.sh
    Note
    • Replace YourLicenseKey with your Site24x7 license key.
    • Replace YourApplicationName with your application name in Site24x7.

Step 2: Modify the Startup command

  1. Open the Azure Portal.
  2. Navigate to your Web App.
  3. Go to Settings > Configuration.
  4. Under the General Settings tab, locate the Startup Command field.
  5. Enter the following command:
    /home/site24x7/apm-phpagent-deploy.sh
  1. Click Save.

Step 3: Restart the Web App

After updating the startup command:

  1. In the Azure Portal, navigate to your Web App.
  2. Click Restart.
Next step:

Go to your Site24x7 APM Insight dashboard and check if the application appears.

Was this document helpful?

Would you like to help us improve our documents? Tell us what you think we could do better.


We're sorry to hear that you're not satisfied with the document. We'd love to learn what we could do to improve the experience.


Thanks for taking the time to share your feedback. We'll use your feedback to improve our online help resources.

Shortlink has been copied!