-
Notifications
You must be signed in to change notification settings - Fork 391
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
Cronicle showing blank page after machine restart #769
Comments
It's really difficult to help you when you don't use the GitHub New Issue Template. We provide that for a reason, namely to collect key information to help us troubleshoot your problem.
|
I see this too... however, I believe it is related to the message after install that states: Please allow for up to 60 seconds for the server to become master. The page does come up after approx 60 seconds. |
@aflabhay I believe that blank screen is typically seen when you have some kind of reverse proxy, which is not configured for websockets, and you client fails to receive bootstrap configuration. To get more details, open dev tool , and check errors in console |
Happened to me, after a clean restart as well. Webconsole says: So I need to figure out how to make this server the master server again (which it always was). EDIT: This fixed my problem: #560 (comment) |
In my deployment setup the server hostname changes on every deployment. That's due to the nature of how Digital Ocean Apps work. Other deployment platforms work similar. Since I only use a single instance, I've applied all comments in https://github.com/jhuckaby/Cronicle/wiki/Troubleshooting#server-hostnames and created the following commands which are executed right before the Cronicle HOSTNAME=$(head -n 1 /etc/hostname | tr -d '\n')
./bin/storage-cli.js put global/servers/0 <<EOF
{
"type": "list_page",
"items": [
{
"hostname": "${HOSTNAME}",
"ip": "127.0.0.1"
}
]
}
EOF
./bin/storage-cli.js put global/server_groups/0 <<EOF
{
"type": "list_page",
"items": [
{
"id": "maingrp",
"title": "Primary Group",
"regexp": "^(${HOSTNAME})\$",
"master": 1
},
{
"id": "allgrp",
"title": "All Servers",
"regexp": ".+",
"master": 0
}
]
}
EOF These commands are part of a In case you have a more sophisticated setup one can use tools like |
Hi,
I tried to restart the Ubuntu 20.04 GCP VM and then restart the chronicle, it is showing blank screen as you can see below. Looks css/htmls are not getting rendered. What could be the issue? Can you plz help here
The text was updated successfully, but these errors were encountered: