Better handling of when the specified port is already in use

This commit is contained in:
spf13
2014-05-15 15:07:46 -04:00
parent b520f8852d
commit 296d218e67
2 changed files with 29 additions and 0 deletions

View File

@@ -15,6 +15,7 @@ package commands
import (
"fmt"
"net"
"net/http"
"os"
"strconv"
@@ -56,6 +57,19 @@ func server(cmd *cobra.Command, args []string) {
BaseUrl = "http://" + BaseUrl
}
l, err := net.Listen("tcp", ":"+strconv.Itoa(serverPort))
if err == nil {
l.Close()
} else {
jww.ERROR.Println("port", serverPort, "already in use, attempting to use an available port")
sp, err := helpers.FindAvailablePort()
if err != nil {
jww.ERROR.Println("Unable to find alternative port to use")
jww.ERROR.Fatalln(err)
}
serverPort = sp.Port
}
if serverAppend {
viper.Set("BaseUrl", strings.TrimSuffix(BaseUrl, "/")+":"+strconv.Itoa(serverPort))
} else {