Merge pull request #562 from jmorganca/mxyng/fix-ollama-host
fix OLLAMA_HOST parsing for ip6
This commit is contained in:
commit
765770efdb
1 changed files with 9 additions and 18 deletions
27
cmd/cmd.go
27
cmd/cmd.go
|
@ -655,28 +655,19 @@ func generateBatch(cmd *cobra.Command, model string) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
func RunServer(cmd *cobra.Command, _ []string) error {
|
func RunServer(cmd *cobra.Command, _ []string) error {
|
||||||
host, port := "127.0.0.1", "11434"
|
host, port, err := net.SplitHostPort(os.Getenv("OLLAMA_HOST"))
|
||||||
|
|
||||||
parts := strings.Split(os.Getenv("OLLAMA_HOST"), ":")
|
|
||||||
if ip := net.ParseIP(parts[0]); ip != nil {
|
|
||||||
host = ip.String()
|
|
||||||
}
|
|
||||||
|
|
||||||
if len(parts) > 1 {
|
|
||||||
port = parts[1]
|
|
||||||
}
|
|
||||||
|
|
||||||
// deprecated: include port in OLLAMA_HOST
|
|
||||||
if p := os.Getenv("OLLAMA_PORT"); p != "" {
|
|
||||||
port = p
|
|
||||||
}
|
|
||||||
|
|
||||||
err := initializeKeypair()
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
host, port = "127.0.0.1", "11434"
|
||||||
|
if ip := net.ParseIP(os.Getenv("OLLAMA_HOST")); ip != nil {
|
||||||
|
host = ip.String()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := initializeKeypair(); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
ln, err := net.Listen("tcp", fmt.Sprintf("%s:%s", host, port))
|
ln, err := net.Listen("tcp", net.JoinHostPort(host, port))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue