All public logs

Combined display of all available logs of Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 12:47, 10 October 2023 Ebasso talk contribs created page IBM Maximo: Running Maximo as Container (Created page with "= Running DB2 as Container = Create db2data directory # mkdir -p /opt/db2data Pull images podman pull icr.io/db2_community/db2 Running Db2 podman run -d --name mydb2 --privileged=true -p 50000:50000 -e LICENSE=accept -e DB2INST1_PASSWORD=db2inst1 \ -v /opt/db2data:/database db2_community/db2 Cheking Logs podman logs -f mydb2 = Running WAS as Container = Create WAS directory # mkdir -p /opt/was/config /opt/was/app Pull images podman pull icr.io/app...")