Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The customer should decide rpm/deb, but in general, rpms are used by Red Hat, CentOS, SuSE, Oracle Linux and deb is used by Debian and Ubuntu.

For Assessments on app.cloudamize.com (old infra):

  • RPM URL: 

    • https://agentmanager1.cloudamize.com/cxf/downloadFile/cloudamize_agent.rpm (US)

    • https://agentmanager-de.cloudamize.com/cxf/downloadFile/cloudamize_agent.rpm (EU)

  • RPM Install: CLOUDAMIZE_CUSTOMER_KEY=xxxx rpm -i cloudamize_agent.rpm

  • DEB URL:

    • https://agentmanager1.cloudamize.com/cxf/downloadFile/cloudamize_agent.deb

    • https://agentmanager-de.cloudamize.com/cxf/downloadFile/cloudamize_agent.deb (EU)

  • DEB Install: CLOUDAMIZE_CUSTOMER_KEY=xxxx dpkg -i cloudamize_agent.deb

  • TGZ URL:

    • https://agentmanager1.cloudamize.com/cxf/downloadFile/cloudamize_agent.tgz (US)

    • https://agentmanager-de.cloudamize.com/cxf/downloadFile/cloudamize_agent.tgz (EU)

...

  1. tar xf cloudamize_agent.tgz

  2. cd cloudamize_agent

  3. CLOUDAMIZE_CUSTOMER_KEY=xxxx bash install.sh

  4. cd .. && rm -Rf cloudamize_agent cloudamize_agent.tgz

For Assessments on console.cloudamize.com (new infra):

Download:

  • US:

    • %> sh <(curl -X POST https://am.cloudamize.com/cxf/downloadFileV3 -H 'content-type: multipart/form-data' -F custkey=<custkey> -F filename=installCloudamizeAgentV2.sh)

  • EU:

    • %> sh <(curl -X POST https://am-de.cloudamize.com/cxf/downloadFileV3 -H 'content-type: multipart/form-data' -F custkey=<custkey> -F filename=installCloudamizeAgentV2.sh)

Install:

  • US:

    • RPM:

      • curl -X POST https://am.cloudamize.com/cxf/downloadFileV3 -H 'content-type: multipart/form-data' -F custkey=<custkey> -F filename=cloudamize_agent.rpm -o cloudamize_agent.rpm

    • DEB:

      • curl -X POST https://am.cloudamize.com/cxf/downloadFileV3 -H 'content-type: multipart/form-data' -F custkey=<custkey> -F filename=cloudamize_agent.deb -o cloudamize_agent.deb

    • TGZ:

      • curl -X POST https://am.cloudamize.com/cxf/downloadFileV3 -H 'content-type: multipart/form-data' -F custkey=<custkey> -F filename=cloudamize_agent.tgz -o cloudamize_agent.tgz

  • EU:

    • RPM:

      • curl -X POST https://am-de.cloudamize.com/cxf/downloadFileV3 -H 'content-type: multipart/form-data' -F custkey=<custkey> -F filename=cloudamize_agent.rpm -o cloudamize_agent.rpm

    • DEB:

      • curl -X POST https://am-de.cloudamize.com/cxf/downloadFileV3 -H 'content-type: multipart/form-data' -F custkey=<custkey> -F filename=cloudamize_agent.deb -o cloudamize_agent.deb

    • TGZ:

      • curl -X POST https://am-de.cloudamize.com/cxf/downloadFileV3 -H 'content-type: multipart/form-data' -F custkey=<custkey> -F filename=cloudamize_agent.tgz -o cloudamize_agent.tgz

Note: If for some reason environment variables cannot be used during the install, the customer can configure later by running /usr/local/cloudamize/bin/configure.sh

...