web-dev-qa-db-ja.com

RHEL 7 64ビットへの11.2.0のインストールに関する問題

RHEL 7でのOracle ASMの停止に問題がある

 [root@localhost grid]# ./root.sh
Performing root user operation for Oracle 11g

The following environment variables are set as:
    Oracle_OWNER= grid
    Oracle_HOME=  /u01/app/grid/product/11.2.0/grid

Enter the full pathname of the local bin directory: [/usr/local/bin]:
The contents of "dbhome" have not changed. No need to overwrite.
The contents of "oraenv" have not changed. No need to overwrite.
The contents of "coraenv" have not changed. No need to overwrite.

Entries will be added to the /etc/oratab file as needed by
Database Configuration Assistant when a database is created
Finished running generic part of root script.
Now product-specific root actions will be performed.
Using configuration parameter file: /u01/app/grid/product/11.2.0/grid/crs/install/crsconfig_params
Creating trace directory
LOCAL ADD MODE
Creating OCR keys for user 'grid', privgrp 'oinstall'..
Operation successful.
LOCAL ONLY MODE
Successfully accumulated necessary OCR keys.
Creating OCR keys for user 'root', privgrp 'root'..
Operation successful.
CRS-4664: Node lrma086 successfully pinned.
Adding Clusterware entries to inittab
ohasd failed to start
Failed to start the Clusterware. Last 20 lines of the alert log follow:
2015-10-19 10:19:43.306
[client(28082)]CRS-2101:The OLR was formatted using version 3.
2015-10-19 10:19:46.259
[client(28109)]CRS-1001:The OCR was formatted using version 3.
[client(28227)]CRS-10001:CRS-6021: No msg for has:crs-6021 [l][unlimited]
[client(28228)]CRS-10001:CRS-6021: No msg for has:crs-6021 [n][65536]

ohasd failed to start at /u01/app/grid/product/11.2.0/grid/crs/install/roothas.pl line 358, <ALERTLOG> line 6.
/u01/app/grid/product/11.2.0/grid/Perl/bin/Perl -I/u01/app/grid/product/11.2.0/grid/Perl/lib -I/u01/app/grid/product/11.2.0/grid/crs/install /u01/app/grid/product/11.2.0/grid/crs/install/roothas.pl execution failed
1
malatesh

サポートされていないバージョンをインストールしました。Linux7.1の正しいバージョンは11.2.0.4です。

https://docs.Oracle.com/cd/E11882_01/relnotes.112/e23558/toc.htm#CJAFHBIA

Oracle Linux 7およびRed Hat Enterprise Linux 7のサポートOracle Database 11gリリース2(11.2.0.4)以降、Oracle Linux 7およびRed Hat Enterprise Linux 7はLinux x86-64でサポートされます。

0
malatesh

原因

セキュリティ制限の要件が推奨値に従って設定されていません

[client(15674)] CRS-10001:CRS-6021:No msg for has:crs-6021 [n] [65536]というメッセージにより、/ etc/security/limits.confのOracleハードnofile 65536に推奨される値が考慮されます

次に、これらのメッセージは、おそらく/etc/security/limits.confの他のパラメータが設定されていなかったと考えさせます[client(15669)] CRS-10001:CRS-6021:No msg for has:crs-6021 [l] [unlimited] [クライアント(15672)] CRS-10001:CRS-6021:メッセージがありません:crs-6021 [c] [無制限]

解決

Rootユーザーを使用して、/ etc/security/limits.confが次のように設定されていることを確認します。Oracleソフトnproc 2047 Oracleハードnproc 16384 Oracleソフトnofile 1024 Oracleハードnofile 65536 Oracleソフトスタック10240

1
Petar Spasov
0
Pavan Kasturkar