2021-06-08 18:24:43 +00:00
|
|
|
# AIX Notes
|
|
|
|
|
2021-06-10 06:55:03 +00:00
|
|
|
Works on IBM Power VIO (Virtual IO) servers, as well as regular IBM Power AIX installations.
|
|
|
|
|
2021-06-08 18:24:43 +00:00
|
|
|
## Installation
|
|
|
|
|
2021-09-10 19:58:14 +00:00
|
|
|
We require Java 8, which should already be installed on AIX, or is available to install.
|
2021-06-10 06:55:03 +00:00
|
|
|
The RPM packages are *"noarch"* Java bytecode, so we can use the **--ignoreos** option to install:
|
|
|
|
|
2021-06-08 18:24:43 +00:00
|
|
|
```shell
|
|
|
|
rpm -i --ignoreos sysmon-client.rpm sysmon-plugins.rpm
|
|
|
|
```
|
|
|
|
|
|
|
|
## Run automatically at boot
|
|
|
|
|
2022-02-25 14:45:11 +00:00
|
|
|
See the [sysv-init.md](sysv-init.md) file for instructions, or run from inittab:
|
|
|
|
|
|
|
|
```shell
|
|
|
|
mkitab "sysmon:2:respawn:env JAVA_HOME=/usr/java8_64 /opt/sysmon/client/bin/client -s http://10.x.y.z:9925/metrics"
|
|
|
|
init q
|
|
|
|
```
|