Laverna / laverna

Laverna is a JavaScript note taking application with Markdown editor and encryption support. Consider it like open source alternative to Evernote.
https://laverna.cc/index.html
Mozilla Public License 2.0
9.18k stars 801 forks source link

Error on opening #958

Closed shreyashah115 closed 6 years ago

shreyashah115 commented 6 years ago

Right after installing and opening, getting this error. [macOS]

image

daed commented 6 years ago

It looks like something else is already using port 9000. Especially with the "Cannot GET /" in the window. Sounds like a non-http connection on the other side.

daed commented 6 years ago

From the terminal, you can use lsof -nP +c 15 | grep LISTEN to find out what is using which port. Scroll through the right hand column and look for something like 127.0.0.1:9000, then check the process name on the left hand side. You'll need to shut whatever it is down before you can run laverna.

Alternatively, you can change the port numbers for laverna, but I'm not too sure how to do that yet.

Source for command: https://wilsonmar.github.io/ports-open/

shreyashah115 commented 6 years ago

Thanks for responding!