Erpnext install on linode

I have used Easy Install to install erp next production and server is running on my instance .

But,it is not accessible from web browser in 8000 port.What might be the reason?

Server is Ubuntu 16.04 LTS (64 bit) and I have enabled port access through firewall using
ufw allow 8000 command.

Am i missing some thing?

I use erpnext on Linode and it runs fine.

Firstly I think the docs assume a Dev instance whereas it actually runs on port 80 or 443 https .

Otherwise try something like

Netstat -pntl

To check if all services running.

root@vps139314:~# netstat -pntl
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 127.0.0.1:13000 0.0.0.0:* LISTEN 1702/redis-server 1
tcp 0 0 127.0.0.1:3306 0.0.0.0:* LISTEN 1537/mysqld
tcp 0 0 127.0.0.1:6379 0.0.0.0:* LISTEN 1247/redis-server 1
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 1355/nginx -g daemo
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 1188/sshd
tcp 0 0 127.0.0.1:11000 0.0.0.0:* LISTEN 1699/redis-server 1
tcp 0 0 0.0.0.0:25 0.0.0.0:* LISTEN 1711/master
tcp 0 0 127.0.0.1:8000 0.0.0.0:* LISTEN 1695/python
tcp 0 0 127.0.0.1:12000 0.0.0.0:* LISTEN 1708/redis-server 1
tcp6 0 0 :::9000 :::* LISTEN 1696/node
tcp6 0 0 :::22 :::* LISTEN 1188/sshd
tcp6 0 0 :::25 :::* LISTEN 1711/master

I missed out command -

ufw default allow outgoing

To allow all outgoing connections through firewall

Anyways ,thanks Julian !