server-starter icon indicating copy to clipboard operation
server-starter copied to clipboard

Go port of start_server utility (Server::Starter)

Results 7 server-starter issues
Sort by recently updated
recently updated
newest added

without this, it always returns a UNIXListeners

Hi, @lestrrat [Mac OS & ubuntu env] I was using following command to run my project: ```bash $HOME/go/bin/start_server --pid-file ~/code/my_project/shared/pids/3000.pid -- ~/code/my_project/main 3000 & ``` everything looks fine until I...

Hi I'm trying to run server_starter in Ubuntu Server 16.04, and I'm receiving this message: ``` new worker 4397 seems to have failed to start starting new worker 4402 new...

after receiving #9, I looked at the original code for the first time in ages, and to my surprise, the original code had changed quite a bit. so here's me...

go-server-starter implements the different to Server::Starter's [one](https://github.com/kazuho/p5-Server-Starter/blob/master/lib/Server/Starter.pm#L380). **p5-server-starter** behavior: ``` old workers action ------- ------------ ---------------------------------------------------- 1st HUP 0 spawn new worker and send TERM signal to old workers 2nd...

looking at #9, the code that I thought I ported from Perl has completely been changed. Which is fine and totally expected, except now it's really hard to tell exactly...

The idea is to mimic https://github.com/kazuho/p5-Server-Starter/pull/24 The use-case is described here: http://www.slideshare.net/tokuhirom/serverstarter-meets-java Basically Java is stupid and can only inherit a specific FD (0) from parent.