-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix post_activation exception when setting up internal database #244
Fix post_activation exception when setting up internal database #244
Conversation
This comment was marked as resolved.
This comment was marked as resolved.
6f0cd35
to
173e4e2
Compare
We already have an explicit appliance_console_cli --internal --username='root' --password='smartvm' --region=1 --dbdisk=/dev/vdb \
--message-server-config --message-keystore-password="smartvm" \
--server=start Or split up into individual steps: appliance_console_cli --internal --username='root' --password='smartvm' --region=1 --dbdisk=/dev/vdb
appliance_console_cli --message-server-config --message-keystore-password="smartvm"
appliance_console_cli --server=start |
I like the single step version and we can take care of the dependencies internally. So, yeah, seems we can just document that. |
Working on adding documentation for the messaging config since it seems that wasn't added, I'll add the |
173e4e2
to
d66e8f8
Compare
Okay I'm going to take this out of WIP since this is functional and the only issues left aren't related to this fix (specifically #245) Example: |
Once both database and messaging have been configured by the CLI, start evmserverd.service. This will work if you pass both database and messaging config in the same invocation or if you configure them separately.
Example command:
appliance_console_cli --internal --username='root' --password='smartvm' --region=1 --dbdisk=/dev/vdb --message-server-config --message-keystore-password="smartvm" --server=start
Fixes:
Introduced by #195
Follow-up: