Skip to content
Snippets Groups Projects
Commit 49975d70 authored by Alec Leamas's avatar Alec Leamas
Browse files

Providing better message if port 3000 is in use, closing ticket 287.

parent 2a153316
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
#
# Start diaspora websocket and main services
#
# See issue 287
# Is someone listening on 3000 already? (ipv4 only test ?)
services=$( netstat -nl | grep '[^:]:3000[ \t]')
test -n "$services" && {
echo "Warning: something is already using port 3000"
echo " $services"
}
# Check if Mongo is running
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment