Automated Testing

Automated Testing

Automated Testing

Build an automated testing process to enable continuous integration of your hybrid cloud applications including z/OS

 View Only
  • 1.  z1090instcheck - does it read from sysctl.conf?

    Posted Wed March 27, 2013 10:21 AM
    The following is /etc/sysctl.conf: kernel.core_pattern=core-%e-%p-%t .
    However, z1090instcheck shows 10. REDHAT kernel.core_pattern is |/usr/libexec/abrt-hook-ccpp which is BAD

    I presume z1090instcheck reads from sysctl.conf. Ideas on why it is seeing that BAD pattern?

    Thanks!
    wilbert


  • 2.  Re: z1090instcheck - does it read from sysctl.conf?

    Posted Wed March 27, 2013 10:42 AM
    Wilbert,
    Did you reboot after making the updates as follows?

    1. gedit /etc/sysctl.conf (the following lines should begin in column 1)
    kernel.shmmax=18000000000
    kernel.core_pattern=core-%e-%p-%t
    kernel.core_uses_pid=1
    kernel.msgmni=512
    kernel.msgmax=65536
    kernel.msgmnb=65536
    net.core.rmem_max=1048576
    net.core.rmem_default=1048576
    1. /sbin/sysctl -p /etc/sysctl.conf

    You must shutdown and reboot after making the changes, and before running z1090instcheck.

    RDzJohn
    RDzJohn


  • 3.  Re: z1090instcheck - does it read from sysctl.conf?

    Posted Wed March 27, 2013 11:03 AM
    Per the client, yes, the lines started in column 1 and the system was rebooted.

    Thanks!
    wilbert


  • 4.  Re: z1090instcheck - does it read from sysctl.conf?

    Posted Wed March 27, 2013 12:51 PM
    after running (as root) /sbin/sysctl -p /etc/sysctl.conf
    the system should reflect the changes immediately. if you then run

    /sbin/sysctl -a |grep pattern

    Then you should see

    kernel.core_pattern = core-%e-%p-%t

    If that changes during a reboot then some other process in the reboot is making changes.
    (z1090instcheck should also show the change immediately after /sbin/sysctl -p)
    SystemAdmin