Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Update skip key generation command to include selecting the database.

...

Workaround:
Skip key generation and cloudstack works fine.
This is done by setting developer=true in the configuration table, by running the following SQL statement in MySQLUpdate configuration set

Code Block

use cloud;
update configuration set value='false' where name='developer';

This changes the developer mode to false, which combined with a non 'cloud' username will skip the key generation.

...