So I just got Wiki.js up running for the first time via docker. The /logs/wiki-stderr.log file is empty, and /logs/wiki-stdout.log looks great (I think):
2019-04-19T23:03:10.447Z - info: [SERVER] Wiki.js is initializing...
2019-04-19T23:03:11.187Z - info: [SERVER] Checking data directories...
2019-04-19T23:03:11.188Z - info: [SERVER] Data and Repository directories are OK.
2019-04-19T23:03:12.371Z - info: [SERVER] Checking Git repository...
2019-04-19T23:03:19.114Z - info: [SERVER] Starting HTTP/WS server on port 3000...
2019-04-19T23:03:19.652Z - info: [SERVER] HTTP/WS server started successfully! [RUNNING]
2019-04-19T23:03:19.769Z - info: [SERVER] Search index flushed and ready.
2019-04-19T23:03:19.925Z - info: [AGENT] Background Agent is initializing...
2019-04-19T23:03:20.007Z - info: [SERVER] Git repository is OK.
2019-04-19T23:03:22.490Z - info: [AGENT] Checking Git repository...
2019-04-19T23:03:25.809Z - info: [AGENT] Running all jobs...
2019-04-19T23:03:25.809Z - info: [AGENT] Performing pull from remote Git repository...
2019-04-19T23:03:25.933Z - info: [AGENT] Git repository is OK.
2019-04-19T23:03:26.490Z - info: [AGENT] Git Pull completed.
2019-04-19T23:03:26.512Z - info: [AGENT] Git Push skipped. Repository is already in sync.
2019-04-19T23:03:26.514Z - info: [AGENT] All jobs completed successfully! Going to sleep for now.
The repo directory has the README.md from the Github repo I set up, so that looks great, too.
Then I went to http://localhost:3000 and logged in using the email address from the docker run command and admin123 as the password. It takes me to this screen:
When I select "Create Home Page" it takes me to this:
The save/discard options appear to be disabled? There is nothing I can do from this page. All I can do is go back and forth between these two pages. There is no sidebar. Am I missing something obvious here? I'm a mongo noob but when I do db.wiki.find( {} ) nothing seems to show up, so did my user account not get created properly? Trying show dbs does show the wiki db is there.
So I just got Wiki.js up running for the first time via docker. The
/logs/wiki-stderr.log
file is empty, and/logs/wiki-stdout.log
looks great (I think):The
repo
directory has theREADME.md
from the Github repo I set up, so that looks great, too.Then I went to
http://localhost:3000
and logged in using the email address from thedocker run
command andadmin123
as the password. It takes me to this screen:When I select "Create Home Page" it takes me to this:
The save/discard options appear to be disabled? There is nothing I can do from this page. All I can do is go back and forth between these two pages. There is no sidebar. Am I missing something obvious here? I'm a mongo noob but when I do
db.wiki.find( {} )
nothing seems to show up, so did my user account not get created properly? Tryingshow dbs
does show thewiki
db is there.Thanks.