Monday, February 11, 2019

Installation of Cloudify CLI on Ubuntu 14.04 for service deployment using TOSCA standard

In this post we will see how to install Cloudify CLI, through which we can deploy, scale and monitor the different cloud service. For better understanding lets install this in local machine. The basic steps can be refereed and extended for actual cloud environment.

The steps are as follows:
Environment: we will be using Ubuntu 14.04, Python 2.6/2.7
Cloudify  does NOT support Python 3

Step 1: Install Docker on local machine. [ How to install Docker on Ubuntu 14.04? ]
Step 2: Open ubuntu terminal
Step 3: Run the following command

sudo docker run --name cfy_manager_local \
    -d --restart unless-stopped \
    -v /sys/fs/cgroup:/sys/fs/cgroup:ro \
    --tmpfs /run \
    --tmpfs /run/lock \
    --security-opt seccomp:unconfined \
    --cap-add SYS_ADMIN \
    -p 80:80 \
    -p 8000:8000 \
    cloudifyplatform/community:18.10.4


Step 4: Now go to web browser and enter localhost or enter your own IP
             You can see the web interface of the Cloudify Console
Step 5: Enter admin as both username and password.


NEXT: Service Deployement on local machine using Cloudify CLI



No comments:

Post a Comment