This Go executable run a GnoNative service.
The default path is /tmp/socket
.
go run . uds
go run . uds -path /tmp/gnonative.sock
The default port is 26658
.
go run . tcp
go run . tcp -addr localhost:26658
The gRPC server prints the TCP address/socket path it listens to:
server UDS path: xxx
or server TCP address: xxx
To close it, press Ctrl+C in the terminal.
go run .