Top
Systemwalker Software Configuration Manager Software Parameter Setting Guide for ServerView Resource Orchestrator
FUJITSU Software

3.1.2 System Parameter Tuning [Linux]

The system parameters will require tuning.

System Parameter Tuning Values

For information on which system parameters must be tuned, and what the values will be, refer to the system parameter tuning values shown below.

Settings in Accordance with Parameter Type

Configure the settings shown below according to the parameter "Type".

When Type is Maximum

If the values that have already been set (default values or values from previous settings) are the same as or greater than those in the tables shown below, they will not need to be changed. If they are lower than the values in the tables shown below, change them to these values.

When Type is Addition

Add the values in the tables shown below to those that have already been set (default values or values from previous settings). Before adding these values, check the system limit. If the addition of these values will cause the system limit to be exceeded, set the system limit instead.

Refer to "Linux manuals" for details.

Tuning Tasks Procedure

Perform tuning using the following procedure:

  1. Use the following command to check the value for the corresponding parameter set for the current system:

    # /sbin/sysctl -a

    Example

    # /sbin/sysctl -a
    ...
      (Omitted)
    ...
    kernel.sem = 250 32000 32 128
    ...
    kernel.msgmnb = 65536
    kernel.msgmni = 16
    ...
      (Omitted)
    ...
  2. Refer to "System Parameter Tuning Values" and compare the listed value with the one currently set. Calculate a new value that will be appropriate, considering the Maximum and Addition types for each parameter.

  3. Edit /etc/sysctl.conf. Edit this as shown in the example below.

    Example

    kernel.sem = 250 32002 32 130
    kernel.msgmnb = 106496
    kernel.msgmni = 1040
  4. Using the following command, check that the edited content for /etc/sysctl/conf was set:

    # /bin/cat /etc/sysctl.conf
  5. To enable the settings in 4., perform one of the following procedures:

    • Reboot the system

      # /sbin/shutdown -r now
    • Execute the command /sbin/sysctl -p

      # /sbin/sysctl -p /etc/sysctl.conf (Note)

      Note: If this command was used, there will be no need to reboot the system.

  6. Check that the system parameter set is reflected in the output of the following command:

    # /sbin/sysctl -a

    Example

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