Answer for KodeKloud Question - Install a package

 As per new application requirements shared by the Nautilus project development team, several new packages need to be installed on all app servers in Stratos Datacenter. Most of them are completed except for telnet.

Therefore, install the telnet package on all app-servers.

Sample Answer:

#login to app servers,  <user> and <server> are repective app server username and IP/hostname

    ssh <user>@<server>

# switch to root user

    sudo su 

# install telnet package    

    yum install -y telnet 

* do the above steps for all the app servers 

Note: **The Question copied it for learning purposes.** Commands are correct but based on your question the server, user name, and other details might differ, so please do check.

No comments:

Post a Comment

Featured Post

Answer for Kodekloud DEVOPS Questions - Init container in Kubernetes

Question: 1. Create a Deployment named as ic-deploy-devops. 2. Configure spec as replicas should be 1 , labels app should be ic-devops , ...