|
On Aug 19, 2022, at 8:12 AM, Richard Schoen <richard@xxxxxxxxxxxxxxxxx> wrote:
I haven't followed this thread, but one option to check for an active service is simply to use the DB2 services SQL to do a NETSTAT port check via SQL:
Ex SQL to check for port 80:
SELECT * FROM QSYS2.NETSTAT_INFO WHERE CONNECTION_TYPE='IPV4' and LOCAL_PORT=80
This is packaged in a CL command called QSHPORTCHK as part of my
QShell on i Tools (QSHONI) https://github.com/richardschoen/QshOni
And here's a sample where I'm using QSHPORTCHK to check for a Postgres Server and Gitbucket running on an IBMi system.
https://github.com/richardschoen/QshOni/blob/master/samples/gitportsc.
clp
If port check fails, you could then run whatever commands you need. And if they are QSH/PASE commands, you can use the QSHEXEC or QSHBASH commands to fire them up from the green screen or job scheduler.
Also with this example that was given in a prior post:
QSH CMD('/QIBM/ProdData/OS/WebServices/bin/listWebServicesServers.sh')
Can instead be run like this:
QSHONI/QSHEXEC CMDLINE('/QIBM/ProdData/OS/WebServices/bin/listWebServicesServers.sh')
When the command completes, simply read outfile QTEMP/STDOUTQSH to process the results from CL or RPG.
Hope this helps.
Regards,
Richard Schoen
Web: http://www.richardschoen.net
Email: richard@xxxxxxxxxxxxxxxxx
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.