web-dev-qa-db-ja.com

Oracle linux7.5でsysctl.confを編集する

Oracleデータベース12cをOraclelinux7.5にインストールします。その過程で、以下のカーネルパラメータを編集して値を設定する必要があります。

fs.aio-max-nr = 1048576
fs.file-max = 6815744
kernel.shmall = 2097152
kernel.shmmax = 536870912
kernel.shmmni = 4096
kernel.sem = 250 32000 100 128
net.ipv4.ip_local_port_range = 9000 65500
net.core.rmem_default = 262144
net.core.rmem_max = 4194304
net.core.wmem_default = 262144
net.core.wmem_max = 1048586

ドキュメントには、/ etc /sysctl.confファイルを編集する必要があると書かれています。 cat /etc/sysctl.confを実行して現在のコンテンツを読み取ると、次のメッセージが表示されます。

# sysctl settings are defined through files in
# /usr/lib/sysctl.d/, /run/sysctl.d/, and /etc/sysctl.d/.    
#
# Vendors settings live in /usr/lib/sysctl.d/.
# To override a whole file, create a new file with the same in
# /etc/sysctl.d/ and put new settings there. To override
# only specific settings, add a file with a lexically later
# name in /etc/sysctl.d/ and put new settings there.
#
# For more information, see sysctl.conf(5) and sysctl.d(5)

Viでrootユーザーで編集しようとすると、sysctl.confが読み取り専用であると表示されます。 '!'でオーバーライドしても、変更は適用されず、パラメーターが変更されません。

2
amsandun

ファイルを編集します/etc/sysctl.conf通常、再起動時にのみシステムに影響しますただし手動で実行する場合:

Sudo sysctl -p

実行時に特定のカーネル変数を設定する場合は、次のようにします。

Sudo sysctl -w kernel.shmmni=4096

すべてのカーネル変数を表示する場合は、次のようにします。

sysctl -a
0
Rui F Ribeiro