How to access CMP provisioned Nodes
Import
·
Sep 14, 2019
·
article
CMP Provisioned VM access approach based on the cloud provider.
Cloud Provider: AWS
Linux in AWS:
- Key-based authentication will be used.
- Create basic auth type credential and Set only the username and leave the password blank.
- In Cloud Admin Portal -->Manage --> Resource Profiles -->OS profile --> Os Template details set above created credentials.
- The user private key will be used for accessing the provisioned VM.
Note: Go through the image details find out ssh username for the image.
Windows in AWS:
- Password-based authentication will be used.
- Create basic auth type credential and Set username and password blank. ex: UserName: Administrator
- In OS template details set above created credentials.
- An auto-generated password will be retrieved and displayed in stack details.
- Use the auto-generated password to access VM.
- Do not set the password in OS template details for AWS images.
Cloud Provider: AZURE
Linux:
- For azure VM's we support both key and password-based authentication.
- Create basic auth type credential and Set username and password blank. ex: UserName: azureuser/SNOW@1232$%
- In Cloud Admin Portal -->Manage --> Resource Profiles -->OS profile --> OS Template details set above created credentials.
- Use the user private key to access provisioned VM.
- You can also use an os template credentials[configure in step2] to access VM[username and password]
Windows:
- We support only password-based authentication.
- Create basic auth type credential and Set username and password blank. ex: UserName: azureuser/SNOW@1232$%
- In Cloud Admin Portal -->Manage --> Resource Profiles -->OS profile --> Os Template details set above created credentials.
- Use the os template credentials to access VM[username and password].
Note: Create a password is as per the azure VM password guidelines.
Cloud Provider: VMware
Linux:
- We support both key and password-based authentication.
- Create basic auth type credential and Set username and password blank. ex: UserName: azureuser/SNOW@1232$%
- In Cloud Admin Portal -->Manage --> Resource Profiles -->OS profile --> Os Template details set above created credentials.
- Use the user private key to access provisioned VM and you can also use the os template credentials[username and password] to access VM.
Windows:
- We support only password-based authentication.
- Create basic auth type credential and Set username and password blank. ex: UserName: azureuser/SNOW@1232$%
- In Cloud Admin Portal -->Manage --> Resource Profiles -->OS profile --> Os Template details set above created credentials.
- Use the os template credentials to access VM[username and password].
Note:
Download user private key from Cloud User Portal --> Activities -->Keys and run the following
> chmod 400 downloadedkeyname.pem
SSH using the key:
ssh -i privatekey imageusername@VMIPaddress
SSH using the password:
ssh imageusername@VMIPaddress
View original source
https://www.servicenow.com/community/itom-articles/how-to-access-cmp-provisioned-nodes/ta-p/2325211