Thank you for the suggestions, Sriram, Ketan.
I checked both chkconfig and the init.d directory and neither recognized go-server either:
$ sudo chkconfig go-server --list
error reading information on service go-server: No such file or directory
$ sudo sh -c 'ls /etc/init.d/go-*'
ls: cannot access /etc/init.d/go-*: No such file or directory
I searched under /etc and found a few files related to GoCD:
$ sudo find /etc/ -name 'go-*'
/etc/default/go-server.pre-migration
/etc/default/go-server~
/etc/default/go-server.rpmnew
/etc/init/go-server.conf
I think the files in /etc/default are legacy files that are no longer used by GoCD, but the conf file in /etc/init looks legitimate. A bit more research and I confirmed that the go-server service on these servers is controlled via initctl (upstart) rather than by the service command:
$ initctl status go-server
go-server start/running, process 19196
Thank you again for the hints that got me moving in the right direction.
Regards,
Jason Smyth