You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ bash ./install.sh --help
usage of install.sh
./install.sh [-h|--help][-u|--upgrade][--paths "path1,path2"][--env "ENV_VAR1=value1,ENV_VAR2=value2"]
-h|--help show usage information
-u|--upgrade upgrade installed sfagent
--paths comma seperated list of paths to include in PATH of sfagent service
ex: "/opt/jdk1.8.0_211/bin,/opt/jdk1.8.0_211/jre/bin"
--env comma seperated list of Environemt variables
ex: "HTTP_PROXY=http://proxy.example.com,HTTPS_PROXY=https://proxy.example.com"
examples:
./install.sh
./install.sh --paths "/opt/jdk1.8.0_211/bin,/opt/jdk1.8.0_211/jre/bin"
./install.sh --upgrade
./install.sh --upgrade --paths "/opt/jdk1.8.0_211/bin,/opt/jdk1.8.0_211/jre/bin"
./install.sh --env "HTTP_PROXY=http://proxy.example.com,HTTPS_PROXY=https://proxy.example.com"
Install commands (run as root user with sudo privileges)( release branch)
Download script using Wget:
wget https://raw.githubusercontent.com/snappyflow/apm-agent/master/install.sh
Download script using curl
curl -fsSL -o install.sh https://raw.githubusercontent.com/snappyflow/apm-agent/master/install.sh
chmod +x install.sh
sudo ./install.sh
Yes, you can also run
curl -s https://raw.githubusercontent.com/snappyflow/apm-agent/master/install.sh | bash
Install commands (run as root user with sudo privileges)( master branch)
Download script using Wget:
wget https://raw.githubusercontent.com/snappyflow/apm-agent/dev/install.sh
Download script using curl
curl -fsSL -o install.sh https://raw.githubusercontent.com/snappyflow/apm-agent/dev/install.sh
chmod +x install.sh
sudo ./install.sh
Yes, you can also run
curl -s https://raw.githubusercontent.com/snappyflow/apm-agent/dev/install.sh | bash
Upgrade commands (run as root user with sudo privileges)
sudo ./install.sh -u
or
sudo ./install.sh --upgrade
Include additional paths in PATH variable during install/upgrade
useful if java is not installed on the system PATH's