python socket.error: [Errno 98] Address already in use [closed]

Solution 1:

There is obviously another process listening on the port. You might find out that process by using the following command:

$ lsof -i :8000

or change your tornado app's port. tornado's error info not Explicitly on this.