Top
Systemwalker Software Configuration Manager Installation Guide
Systemwalker

1.3.2 Tasks Required before Installing on Business Servers

This section explains the tasks that need to be performed before installation.

1.3.2.1 Tuning System Parameters [Linux]

The system parameters must be tuned.

Tuning values for system parameters

Refer to the following tables for information on the system parameters that require tuning and their values.

Settings dependent on the parameter type

Set the parameters as below, depending on the "Type" above.

Refer to the Linux manuals and other documents for details.

Tuning procedure

Use the following procedure to perform tuning tasks:

  1. Use the following command to check the current settings for the system parameters:

    # /sbin/sysctl -a

    Example

    # /sbin/sysctl -a
    . . .
      (omitted)
    . . .
    kernel.sem = 250 32000 32 128
    . . .
    kernel.msgmnb = 65536
    kernel.msgmni = 16
    . . .
      (omitted)
    . . .
  2. Refer to "Tuning values for system parameters", and compare the current settings to the values in the tables above. Calculate an appropriate value for each parameter, taking into account the parameter type ("Maximum" or "Addition").

  3. Edit the /etc/sysctl.conf file. Edit the file as shown in the following example:

    Example

    kernel.sem = 250 32002 32 130
    kernel.msgmnb = 106496
    kernel.msgmni = 1040
  4. Use the following command to check that the changes have been applied to the /etc/sysctl.conf file:

    # /bin/cat /etc/sysctl.conf
  5. To enable the settings in Step 4 above, perform either of the following methods:

    • Apply the settings by rebooting the system.

      # /sbin/shutdown -r now
    • Apply the settings by executing the "/sbin/sysctl -p" command.

      # /sbin/sysctl -p /etc/sysctl.conf (*1)

      *1: There is no need to reboot the system if this command is used.

  6. The output of the following command can be used to check that the changes made to the system parameter settings have been applied:

    # /sbin/sysctl -a

    Example

    # /sbin/sysctl -a 
    . . .
      (omitted)
    kernel.sem = 250 32002 32 130
    . . .
    kernel.msgmnb = 106496
    kernel.msgmni = 1040
    . . .
      (omitted)
    . . .