- first. I do not think filebeat supports the -s flag. To use -s you need more than 'signals'
- second: your `mkssys` statement is fine - but you do need to research why it is not responding to signal 15. Once you have found a signal (e.g., 1 aka SIGHUP) you could change that argument
- Lastly, you should add some wrappers in /etc/rc.d/rc2.d/. For example: SXXfilebeat and KYYfilebeat that call startsrc and stopsrc for you when the system boots, or is shutdown. They can be linked - they are called with 'start' or 'stop' as $1.
- For example:
```
michael:[/etc/rc.d/rc2.d]cat S01sshd
#!/bin/ksh
# AIXTOOLS openssh start/stop
##################################################
# name: S01sshd|K99sshd
# purpose: script that will start or stop the sshd daemon.
##################################################
case "$1" in
start )
startsrc -g ssh
;;
stop )
stopsrc -g ssh
;;
* )
echo "Usage: $0 (start | stop)"
exit 1
esac
```
#AIX#Support#SupportMigration