cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Install php agent on Elastic Beanstalk

Gamer.Deravanesian
Adventurer

How can I install the PHP agent on AWS elastic Beanstalk?

3 REPLIES 3

Sajna.Sreenivasan
AppDynamics Team

Hi Gamer,

 

I would like to understand the requirement better. Are you trying to instrument PHP application deployed on  AWS beanstalk?

If that is the case, you may refer the following for the steps

 

https://docs.appdynamics.com/display/PRO45/Install+the+PHP+Agent

 

Let me know whether we are on the same page here.

 

Thanks,

Sajna Sreenivasan

 



Found something helpful? Click the Accept as Solution button to help others find answers faster.
Liked something? Click the Thumbs Up button.

Dear sajna,

 

Thanks for prompt answer.

Actually, In order to Install the app dynamics PHP application agent on  AWS beanstalk, I guess I should add appropriate commands on a config file inside my projects .ebextensions folder.

 

I would appretiate if you could provide the list of commands which I need to put there.

 

Thanks,

Gamer.

Hi Gamer - The easiest way to get the agent up-and-running is to use .ebextensions to configure your environment to install the agent for you on startup. I've attached a sample appdynamics.config for you below to look at. It will probably work for you as is, but you will need to update line 24 (06install), replacing the following elements with the details for your controller/app and save:

<ACCOUNT_NAME>

<ACCESS_KEY>

<CONTROLLER_URL>

<CONTROLLER_PORT>

<APPLICATION_NAME>

<APPLICATION_TIER>

Cheers,

-Benjamin

AppDynamics.config:

files:
    "/tmp/appdynamics-php-agent-linux_x64-phpagent-4.4.1.343.tar.bz2":
        mode: "000444"
        owner: ec2-user
        group: ec2-user
        source: https://packages.appdynamics.com/php/phpagent-4.4.1.343/appdynamics-php-agent-linux_x64-phpagent-4.4.1.343.tar.bz2

# commands are executed in alphabetical order
commands:
    01reset:
        command: "rm -rf /opt/AppDynamics/phpagent"
        ignoreErrors: true
    02makedir:
        command: "mkdir -p /opt/AppDynamics/phpagent"
    03unzip:
        command: "tar -xvjf /tmp/appdynamics-php-agent-linux_x64-phpagent-4.4.1.343.tar.bz2"
        cwd: /opt/AppDynamics/phpagent
    04owner:
        command: "chown -R webapp:webapp phpagent"
        cwd: /opt/AppDynamics
    05logperms:
        command: "chmod 777 /opt/AppDynamics/phpagent/appdynamics-php-agent-linux_x64/logs"
    06install:
        command: "./install.sh -s -a=<ACCOUNT_NAME>@<ACCESS_KEY> <CONTROLLER_URL> <CONTROLLER_PORT> <APPLICATION_NAME> <APPLICATION_TIER> $HOSTNAME"
        cwd: /opt/AppDynamics/phpagent/appdynamics-php-agent-linux_x64
    07cleanup:
        command: "rm /tmp/appdynamics-php-agent-linux_x64-phpagent-4.4.1.343.tar.bz2"
    08restart:
        command: "service httpd restart"