Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

default admin account/password for Cloudbreak image

avatar
Contributor

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
Contributor

Thanks.

I will try ssh key.