Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FreeBSD: exec.Command blocks the program at start a service #39226

Closed
tredoe opened this issue May 23, 2020 · 1 comment
Closed

FreeBSD: exec.Command blocks the program at start a service #39226

tredoe opened this issue May 23, 2020 · 1 comment

Comments

@tredoe
Copy link

tredoe commented May 23, 2020

Version of system

FreeBSD 12.1

What version of Go are you using (go version)?

$ go version
go version go1.14.3 freebsd/amd64

Does this issue reproduce with the latest release?

Yes

What operating system and processor architecture are you using (go env)?

go env Output
$ go env

GO111MODULE=""
GOARCH="amd64"
GOBIN=""
GOCACHE="/home/foo/.cache/go-build"
GOENV="/home/foo/.config/go/env"
GOEXE=""
GOFLAGS=""
GOHOSTARCH="amd64"
GOHOSTOS="freebsd"
GOINSECURE=""
GONOPROXY=""
GONOSUMDB=""
GOOS="freebsd"
GOPATH="/home/foo/go"
GOPRIVATE=""
GOPROXY="https://proxy.golang.org,direct"
GOROOT="/usr/local/go"
GOSUMDB="sum.golang.org"
GOTMPDIR=""
GOTOOLDIR="/usr/local/go/pkg/tool/freebsd_amd64"
GCCGO="gccgo"
AR="ar"
CC="clang"
CXX="clang++"
CGO_ENABLED="1"
GOMOD="/home/foo/go/pas/go.mod"
CGO_CFLAGS="-g -O2"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-g -O2"
CGO_FFLAGS="-g -O2"
CGO_LDFLAGS="-g -O2"
PKG_CONFIG="pkg-config"
GOGCCFLAGS="-fPIC -m64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build780223111=/tmp/go-build -gno-record-gcc-switches"

What did you do?

I use exec.Command to try to start a service but it only works to stop it:
https://play.golang.org/p/rO6frqON2F6

What did you expect to see?

I expect that the program finishes.

What did you see instead?

The program remains stopped; I've to press Ctrl+C to interrup it.

After, I use sudo service firebird status and it shows that the service was started correctly. The issue is that the Go program remains blocked.

@ianlancetaylor
Copy link
Contributor

You are running into the problem described at #23019.

@golang golang locked and limited conversation to collaborators May 23, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

3 participants