This message was deleted.
# elemental
a
This message was deleted.
h
During installation, there's a preconfigured root password After reboot, there's no root password (and thus no login possible). I'd consider this a security feature since there's (usually) no need for root logins or ssh access.
You can set a root password in MachineRegistration via something like
Copy code
#cloud-config
users:
- name: "bar"
  passwd: "foo"
  groups: "users"
  ssh_authorized_keys:
  - faaapploo
b
Ok, Thanks
Will try this out 👍