Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

default admin account/password for Cloudbreak image

avatar
New Member

I downloaded the Cloudbreak image , and uploaded it to my Openstack enviroment.

https://public-repo-1.hortonworks.com/HDP/cloudbreak/cloudbreak-2016-05-26-11-18.img

Then, I created instances with this image,

however I can't log in into it in Openstack Consol page..

I tried to set admin_pass , but it didn't work.

What is the default account/password of this image file?

  ambari_cbgateway_0:
    type: OS::Nova::Server
    properties:
      image: { get_param: image }
      flavor: { get_param: flavor }
      key_name: { get_param: key }
      admin_user: centos
      admin_pass: ssopassword
      metadata: {"cb_instance_private_id":"0","cb_instance_group_name":"cbgateway"}
      networks:
        - network: { get_param: private_network }
      user_data_format: SOFTWARE_CONFIG
      user_data:  { get_resource: core_user_data_config }

1 ACCEPTED SOLUTION

avatar
Rising Star

Default user is: cloudbreak

There is no default password, you should add ssh key.

View solution in original post

2 REPLIES 2

avatar
Rising Star

Default user is: cloudbreak

There is no default password, you should add ssh key.

avatar
New Member

Thanks.

I will try ssh key.