This entry is part 8 of 10 in the series 11gR2 RAC on x86 64bit Solaris 10

In this phase we will …..

Upload Binararies

You can use psftp or any ftp tool to upload the software downloaded from Oracle Technology Network.

?Download text
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
	 Directory of J:\Software\Oracle Software\RDBMS\Unix\Solaris\11g
 
	02/28/2010  07:54 PM    <DIR>          .
	02/28/2010  07:54 PM    <DIR>          ..
	11/24/2009  03:57 AM    <DIR>          grid
	12/21/2009  09:37 AM     1,342,890,396 solaris.x64_11gR2_database_1of2.zip
	12/21/2009  08:46 AM     1,005,450,726 solaris.x64_11gR2_database_2of2.zip
	12/21/2009  08:36 AM     1,065,998,995 solaris.x64_11gR2_grid.zip
	               3 File(s)  3,414,340,117 bytes
	               3 Dir(s)  37,088,567,296 bytes free
 
	J:\Software\Oracle Software\RDBMS\Unix\Solaris\11g>psftp 192.168.1.200
	login as: oracle
	Using username "oracle".
	Using keyboard-interactive authentication.
	Password:
	Remote working directory is /
	psftp> cd /stage
	Remote directory is now /stage
	psftp> mput *.zip
	local:solaris.x64_11gR2_database_1of2.zip => remote:/stage/solaris.x64_11gR2_dat
	abase_1of2.zip
	local:solaris.x64_11gR2_database_2of2.zip => remote:/stage/solaris.x64_11gR2_dat
	abase_2of2.zip
	local:solaris.x64_11gR2_grid.zip => remote:/stage/solaris.x64_11gR2_grid.zip

Setup User Equivalence

This involves generating a pair of DSA and RSA keys, on both nodes by user oracle, and combining all the four files to a single file called authorized keys. This is done to ensure that the oracle user is able to login without a password between the nodes and within the node. If this is not setup correctly, the Oracle binaries cannot be copied accross to the second node. The cluvfy tool will also fail if this is not set.

  • Generate DSA, RSA on Node 1
  • ?Download text
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    
    	login as: oracle
    	Using keyboard-interactive authentication.
    	Password:
    	Last login: Sun Feb 28 19:55:58 2010 from 192.168.1.2
    	Sun Microsystems Inc.   SunOS 5.10      Generic January 2005
    	$ pwd
    	/export/home/oracle
    	$ ls -la
    	total 6
    	drwxr-xr-x   2 oracle   dba          512 Feb 28 19:58 .
    	drwxr-xr-x   4 root     root         512 Feb 28 19:58 ..
    	-rw-------   1 oracle   oinstall      16 Feb 28 19:58 .sh_history
    	$ mkdir .ssh
    	$ cd .ssh
    	$ ls -la
    	total 4
    	drwxr-xr-x   2 oracle   oinstall     512 Feb 28 19:59 .
    	drwxr-xr-x   3 oracle   dba          512 Feb 28 19:59 ..
    	$ ssh-keygen -t dsa
    	Generating public/private dsa key pair.
    	Enter file in which to save the key (/export/home/oracle/.ssh/id_dsa):
    	Enter passphrase (empty for no passphrase):
    	Enter same passphrase again:
    	Your identification has been saved in /export/home/oracle/.ssh/id_dsa.
    	Your public key has been saved in /export/home/oracle/.ssh/id_dsa.pub.
    	The key fingerprint is:
    	25:3a:3a:af:4a:66:b9:07:65:bf:22:55:56:cf:31:48 oracle@rac-node-01
    	$  ssh-keygen -t rsa
    	Generating public/private rsa key pair.
    	Enter file in which to save the key (/export/home/oracle/.ssh/id_rsa):
    	Enter passphrase (empty for no passphrase):
    	Enter same passphrase again:
    	Your identification has been saved in /export/home/oracle/.ssh/id_rsa.
    	Your public key has been saved in /export/home/oracle/.ssh/id_rsa.pub.
    	The key fingerprint is:
    	6e:86:9d:e2:11:63:df:e3:0b:8b:d1:40:89:af:f4:de oracle@rac-node-01
    	$ ls -la
    	total 12
    	drwxr-xr-x   2 oracle   oinstall     512 Feb 28 19:59 .
    	drwxr-xr-x   3 oracle   dba          512 Feb 28 19:59 ..
    	-rw-------   1 oracle   oinstall     668 Feb 28 19:59 id_dsa
    	-rw-r--r--   1 oracle   oinstall     608 Feb 28 19:59 id_dsa.pub
    	-rw-------   1 oracle   oinstall     883 Feb 28 19:59 id_rsa
    	-rw-r--r--   1 oracle   oinstall     228 Feb 28 19:59 id_rsa.pub
    	$
  • Merge keys on Node 1
  • ?Download text
    1
    2
    3
    4
    5
    6
    
    	$ cat id_dsa.pub >> authorized_keys
    	$ cat id_rsa.pub  >> authorized_keys
    	$ cat authorized_keys
    ssh-dss AAAAB3NzaC1kc3MAAACBAKyzq9uf6icHfv6wc5YaxpDaMjwdQtj/xU8S31UDq13KbrSmxmY2gDgt0e+cGz77un/dr3iz0zOEMLleMgSZiBnW4TtLTM64GzC94dRLQSGco3ku8EsWKUCYFZrKKVbHOmMwqgoGLIcfaOqv6M3i58Uav4SX8hQ27h8OuPRae6i9AAAAFQDgIVBpisYvHRZ4ROyIUVqhpnzxdQAAAIBJ//8UdN4x8UrjdNhft2bSjvc1/q0pLOYDAKDBESda8e4bf9TJ3hhCLtdiXFo6UOZPJJmR9gBctylmc0UHRoCL6PpjW7M9zHxenWYUi1F5CsPj+6z5hGCyMEshzdEDDaQhLJ0DB3w43RK4kyiZldm6yO4LCh79D4gGhh26/AO9xQAAAIBl0f+1tK0z7HN4+UCE/4XCJimJ+Eate2vKP7TSL+xp1Wq3+EQDfxtJdvnhsj8jYap89D+TdGeq51uGYoZZhRmFShXGPJ+1Fga3J0it50hCJswtsvCs6vvK6/HnxCuFZI43IYJJP98p1Fg28LBt3N4lM68FRtkuTCJGckLhhLcIJg== oracle@rac-node-01
    ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAIEAwg5PIAn26akKO3v4i37uY+8m/9DH+njW8JMXdX7FQRjaestHKY2rnxP5uA6WKurnNTA8lHoPOKRuC5yZC2dQ2qUR2nSn2e4KSELU5mwIY4SLvYzt44rtI/z4+nJJOYlhzTz4hn+iRMQq4pW7lGoCQp6hn6Dien5JmXjPaohkMqs= oracle@rac-node-01
    $
  • Generate DSA, RSA keys on node 2
  • ?Download text
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    
    login as: oracle
    Using keyboard-interactive authentication.
    Password:
    Last login: Sun Feb 28 19:56:40 2010 from 192.168.1.2
    Sun Microsystems Inc.   SunOS 5.10      Generic January 2005
    $ ls -la
    total 6
    drwxr-xr-x   2 oracle   dba          512 Feb 28 19:58 .
    drwxr-xr-x   4 root     root         512 Feb 28 19:58 ..
    -rw-------   1 oracle   oinstall      10 Feb 28 19:58 .sh_history
    $ mkdir .ssh
    $ cd .ssh
    $ ssh-keygen -t dsa
    Generating public/private dsa key pair.
    Enter file in which to save the key (/export/home/oracle/.ssh/id_dsa):
    Enter passphrase (empty for no passphrase):
    Enter same passphrase again:
    Your identification has been saved in /export/home/oracle/.ssh/id_dsa.
    Your public key has been saved in /export/home/oracle/.ssh/id_dsa.pub.
    The key fingerprint is:
    2d:ba:49:ec:14:fe:5e:a4:a5:7c:9b:51:c7:08:b1:e4 oracle@rac-node-02
    $ ssh-keygen -t rsa
    Generating public/private rsa key pair.
    Enter file in which to save the key (/export/home/oracle/.ssh/id_rsa):
    Enter passphrase (empty for no passphrase):
    Enter same passphrase again:
    Your identification has been saved in /export/home/oracle/.ssh/id_rsa.
    Your public key has been saved in /export/home/oracle/.ssh/id_rsa.pub.
    The key fingerprint is:
    c9:ad:ec:4a:df:2a:bd:40:7f:d8:6a:fb:de:38:58:c4 oracle@rac-node-02
    $ ls -la
    total 12
    drwxr-xr-x   2 oracle   oinstall     512 Feb 28 20:01 .
    drwxr-xr-x   3 oracle   dba          512 Feb 28 20:01 ..
    -rw-------   1 oracle   oinstall     668 Feb 28 20:01 id_dsa
    -rw-r--r--   1 oracle   oinstall     608 Feb 28 20:01 id_dsa.pub
    -rw-------   1 oracle   oinstall     883 Feb 28 20:01 id_rsa
    -rw-r--r--   1 oracle   oinstall     228 Feb 28 20:01 id_rsa.pub
  • Merge keys on node 2
  • ?Download text
    1
    2
    3
    4
    5
    
    $  cat id_dsa.pub >> authorized_keys
    $  cat id_rsa.pub  >> authorized_keys
    $  cat authorized_keys
    ssh-dss AAAAB3NzaC1kc3MAAACBANVIL656IEJCva9FB0w9kex8ftkicLMyFZjOSWEjtecyJFGmQ36j                    4p10tD43O44QXj9ODsyYJ2wiMJeRTqhoKHRG5iyLvFQzDRVrNGvPIzeczJaJnU9YEbvvsVSi8E3Tpd7N                    lWPueZttnhWAI5kp4EFWbHGIvyV1Fn/ZX9KgzpZ1AAAAFQDWUTxYGqd6eklVq+SElIBKRVSjHQAAAIAF                    tFRcQh7SL7Sd4/+CFItNXGIlKhRaskIC2wFd9Ye5nZZ4qyqMWQd5XeEqHvFgOoBCj70Ha/JLUmS9JU7z                    XSj1dLXA2j2kg7bSkJZlbBhwzcBfaK6XaI0LBWvC5dOqJevYPAIfYdt8dB9+Sqy6HuFH68dohFzowuUg                    CTwCgMtgswAAAIAvtPgM7c8CFVV8JL3txgbiy07dGdqa2/W0C1uyllqp0i1bR1qoe9xxCCKJFgz7NJwo                    IQH5c7yEQycWciozMtmczvBRS+8Z/K3u8yErTuAnkI+WlK1hbA6JOyPG82WRsCJrlH48pakCbvJAmcwH                    UtBSUfRM7B5nh73FkmP4n/vUDQ== oracle@rac-node-02
    ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAIEAwovwlSQ01Zg1UvOf6t5kKrb/3t0+OzK6mVzm/24Qmo2x                    +J/lrSIbJEFfS/5/y5tbY6O/rOKcdT5CQ1acHJ1yyoUEEonXredlD2xy5mmytcv9Mr5DCbmmi+OBvZWo                    OodYKanTxwqIpY4VvdfVqeMvyXhqdIih3tpwkYPWTtuELMU= oracle@rac-node-02
  • Create copy of authorized_keys on node2 and scp to node 1
  • ?Download text
    1
    2
    3
    4
    5
    6
    7
    8
    9
    
    $ scp authorized_keys 192.168.1.200:/export/home/oracle/.ssh/node2.keys
    The authenticity of host '192.168.1.200 (192.168.1.200)' can't be established.
    RSA key fingerprint is b5:0d:16:86:db:eb:fb:9d:06:62:df:70:ab:77:b2:78.
    Are you sure you want to continue connecting (yes/no)? yes
    Warning: Permanently added '192.168.1.200' (RSA) to the list of known hosts.
    Password:
    authorized_keys      100% |*************************************************|   836       00:00
    $ pwd
    /export/home/oracle/.ssh
  • Merge Node 2 keys with node 1 keys
  • ?Download text
    1
    2
    3
    4
    5
    6
    7
    8
    
    On Node 1
    $ cat node2.keys >> authorized_keys
    $ cat authorized_keys
    ssh-dss AAAAB3NzaC1kc3MAAACBAKyzq9uf6icHfv6wc5YaxpDaMjwdQtj/xU8S31UDq13KbrSmxmY2gDgt0e+cGz77un/dr3iz0zOEMLleMgSZiBnW4TtLTM64GzC94dRLQSGco3ku8EsWKUCYFZrKKVbHOmMwqgoGLIcfaOqv6M3i58Ua                    AAAAFQDgIVBpisYvHRZ4ROyIUVqhpnzxdQAAAIBJ//8UdN4x8UrjdNhft2bSjvc1/q0pLOYDAKDBESda                    UOZPJJmR9gBctylmc0UHRoCL6PpjW7M9zHxenWYUi1F5CsPj+6z5hGCyMEshzdEDDaQhLJ0DB3w43RK4                    hh26/AO9xQAAAIBl0f+1tK0z7HN4+UCE/4XCJimJ+Eate2vKP7TSL+xp1Wq3+EQDfxtJdvnhsj8jYap8                    ShXGPJ+1Fga3J0it50hCJswtsvCs6vvK6/HnxCuFZI43IYJJP98p1Fg28LBt3N4lM68FRtkuTCJGckLh                    node-01
    ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAIEAwg5PIAn26akKO3v4i37uY+8m/9DH+njW8JMXdX7FQRja                    NTA8lHoPOKRuC5yZC2dQ2qUR2nSn2e4KSELU5mwIY4SLvYzt44rtI/z4+nJJOYlhzTz4hn+iRMQq4pW7                    aohkMqs= oracle@rac-node-01
    ssh-dss AAAAB3NzaC1kc3MAAACBANVIL656IEJCva9FB0w9kex8ftkicLMyFZjOSWEjtecyJFGmQ36j                    J2wiMJeRTqhoKHRG5iyLvFQzDRVrNGvPIzeczJaJnU9YEbvvsVSi8E3Tpd7NlWPueZttnhWAI5kp4EFW                    AAAAFQDWUTxYGqd6eklVq+SElIBKRVSjHQAAAIAFtFRcQh7SL7Sd4/+CFItNXGIlKhRaskIC2wFd9Ye5                    OoBCj70Ha/JLUmS9JU7zXSj1dLXA2j2kg7bSkJZlbBhwzcBfaK6XaI0LBWvC5dOqJevYPAIfYdt8dB9+                    CTwCgMtgswAAAIAvtPgM7c8CFVV8JL3txgbiy07dGdqa2/W0C1uyllqp0i1bR1qoe9xxCCKJFgz7NJwo                    zvBRS+8Z/K3u8yErTuAnkI+WlK1hbA6JOyPG82WRsCJrlH48pakCbvJAmcwHUtBSUfRM7B5nh73FkmP4                    node-02
    ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAIEAwovwlSQ01Zg1UvOf6t5kKrb/3t0+OzK6mVzm/24Qmo2x                    Y6O/rOKcdT5CQ1acHJ1yyoUEEonXredlD2xy5mmytcv9Mr5DCbmmi+OBvZWoOodYKanTxwqIpY4VvdfV                    TtuELMU= oracle@rac-node-02
    $
  • Copy merged keys to Node 2
  • ?Download text
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    
    $ scp authorized_keys 192.168.1.201:/export/home/oracle/.ssh/authorized_keys
    The authenticity of host '192.168.1.201 (192.168.1.201)' can't be established.
    RSA key fingerprint is b5:0d:16:86:db:eb:fb:9d:06:62:df:70:ab:77:b2:78.
    Are you sure you want to continue connecting (yes/no)? yes
    Warning: Permanently added '192.168.1.201' (RSA) to the list of known hosts.
    Password:
    authorized_keys      100% |*****************************|  1672       00:00
    $ cat authorized_keys
    ssh-dss AAAAB3NzaC1kc3MAAACBAKyzq9uf6icHfv6wc5YaxpDaMjwdQtj/xU8S31UDq13KbrSmxmY2gDgt0e+cGz77un/dr3iz0zOEMLleMgSZiBnW4TtLTM64GzC94dRLQSGco3ku8EsWKUCYFZrKKVbHOmMwqgoGLIcfaOqv6M3i58Uav4SX8hQ27h8OuPRae6i9AAAAFQDgIVBpisYvHRZ4ROyIUVqhpnzxdQAAAIBJ//8UdN4x8UrjdNhft2bSjvc1/q0pLOYDAKDBESda8e4bf9TJ3hhCLtdiXFo6UOZPJJmR9gBctylmc0UHRoCL6PpjW7M9zHxenWYUi1F5CsPj+6z5hGCyMEshzdEDDaQhLJ0DB3w43RK4kyiZldm6yO4LCh79D4gGhh26/AO9xQAAAIBl0f+1tK0z7HN4+UCE/4XCJimJ+Eate2vKP7TSL+xp1Wq3+EQDfxtJdvnhsj8jYap89D+TdGeq51uGYoZZhRmFShXGPJ+1Fga3J0it50hCJswtsvCs6vvK6/HnxCuFZI43IYJJP98p1Fg28LBt3N4lM68FRtkuTCJGckLhhLcIJg== oracle@rac-node-01
    ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAIEAwg5PIAn26akKO3v4i37uY+8m/9DH+njW8JMXdX7FQRjaestHKY2rnxP5uA6WKurnNTA8lHoPOKRuC5yZC2dQ2qUR2nSn2e4KSELU5mwIY4SLvYzt44rtI/z4+nJJOYlhzTz4hn+iRMQq4pW7lGoCQp6hn6Dien5JmXjPaohkMqs= oracle@rac-node-01
    ssh-dss AAAAB3NzaC1kc3MAAACBANVIL656IEJCva9FB0w9kex8ftkicLMyFZjOSWEjtecyJFGmQ36j4p10tD43O44QXj9ODsyYJ2wiMJeRTqhoKHRG5iyLvFQzDRVrNGvPIzeczJaJnU9YEbvvsVSi8E3Tpd7NlWPueZttnhWAI5kp4EFWbHGIvyV1Fn/ZX9KgzpZ1AAAAFQDWUTxYGqd6eklVq+SElIBKRVSjHQAAAIAFtFRcQh7SL7Sd4/+CFItNXGIlKhRaskIC2wFd9Ye5nZZ4qyqMWQd5XeEqHvFgOoBCj70Ha/JLUmS9JU7zXSj1dLXA2j2kg7bSkJZlbBhwzcBfaK6XaI0LBWvC5dOqJevYPAIfYdt8dB9+Sqy6HuFH68dohFzowuUgCTwCgMtgswAAAIAvtPgM7c8CFVV8JL3txgbiy07dGdqa2/W0C1uyllqp0i1bR1qoe9xxCCKJFgz7NJwoIQH5c7yEQycWciozMtmczvBRS+8Z/K3u8yErTuAnkI+WlK1hbA6JOyPG82WRsCJrlH48pakCbvJAmcwHUtBSUfRM7B5nh73FkmP4n/vUDQ== oracle@rac-node-02
    ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAIEAwovwlSQ01Zg1UvOf6t5kKrb/3t0+OzK6mVzm/24Qmo2x+J/lrSIbJEFfS/5/y5tbY6O/rOKcdT5CQ1acHJ1yyoUEEonXredlD2xy5mmytcv9Mr5DCbmmi+OBvZWoOodYKanTxwqIpY4VvdfVqeMvyXhqdIih3tpwkYPWTtuELMU= oracle@rac-node-02
    $
  • Check connectivity
  • ?Download text
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    
    On Node 1
    $ ssh rac-node-02
    The authenticity of host 'rac-node-02 (192.168.1.201)' can't be established.
    RSA key fingerprint is b5:0d:16:86:db:eb:fb:9d:06:62:df:70:ab:77:b2:78.
    Are you sure you want to continue connecting (yes/no)? yes
    Warning: Permanently added 'rac-node-02' (RSA) to the list of known hosts.
    Last login: Sun Feb 28 20:05:51 2010 from rac-node-02.loc
    Sun Microsystems Inc.   SunOS 5.10      Generic January 2005
    $ ssh rac-node-01
    Last login: Sun Feb 28 20:05:43 2010 from rac-node-02.loc
    Sun Microsystems Inc.   SunOS 5.10      Generic January 2005

    On Node 2

    ?Download text
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    
    $ ssh rac-node-01
    The authenticity of host 'rac-node-01 (192.168.1.200)' can't be established.
    RSA key fingerprint is b5:0d:16:86:db:eb:fb:9d:06:62:df:70:ab:77:b2:78.
    Are you sure you want to continue connecting (yes/no)? yes
    Warning: Permanently added 'rac-node-01' (RSA) to the list of known hosts.
    Last login: Sun Feb 28 20:03:26 2010 from rac-node-02.loc
    Sun Microsystems Inc.   SunOS 5.10      Generic January 2005
    $ exit
    Connection to rac-node-01 closed.
    $ ssh rac-node-02
    The authenticity of host 'rac-node-02 (192.168.1.201)' can't be established.
    RSA key fingerprint is b5:0d:16:86:db:eb:fb:9d:06:62:df:70:ab:77:b2:78.
    Are you sure you want to continue connecting (yes/no)? yes
    Warning: Permanently added 'rac-node-02,192.168.1.201' (RSA) to the list of known hosts.
    Last login: Sun Feb 28 20:04:12 2010 from rac-node-01.loc
    Sun Microsystems Inc.   SunOS 5.10      Generic January 2005

Run Cluster Verification Utility

Run the cluster verification utility to check if configuration is ok

?Download text
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
$ pwd
/stage/cluster/grid
 
$./runcluvfy.sh stage -pre crsinst -n rac-node-01,rac-node-02 -q /dev/rdsk/c1t1d0s0,/dev/rdsk/c1t2d0s0,/dev/rdsk/c1t3d0s0     
Performing pre-checks for cluster services setup
 
Checking node reachability...
Node reachability check passed from node "rac-node-01"
 
 
Checking user equivalence...
User equivalence check passed for user "oracle"
 
Checking node connectivity...
 
Checking hosts config file...
 
Verification of the hosts config file successful
 
Node connectivity passed for subnet "192.168.1.0" with node(s) rac-node-02,rac-node-01
TCP connectivity check passed for subnet "192.168.1.0"
 
Node connectivity passed for subnet "10.0.0.0" with node(s) rac-node-02,rac-node-01
TCP connectivity check passed for subnet "10.0.0.0"
 
 
Interfaces found on subnet "192.168.1.0" that are likely candidates for a private interconnect are:
rac-node-02 e1000g0:192.168.1.201
rac-node-01 e1000g0:192.168.1.200
 
Interfaces found on subnet "10.0.0.0" that are likely candidates for a private interconnect are:
rac-node-02 e1000g1:10.10.10.2
rac-node-01 e1000g1:10.10.10.1
 
WARNING:
Could not find a suitable set of interfaces for VIPs
 
Node connectivity check passed
 
 
Checking shared storage accessibility...
 
"/dev/rdsk/c1t1d0s0" is shared
 
WARNING:
PRVF-4212 : The specified Voting Disk location "/dev/rdsk/c1t1d0s0" is not  a partition
 
 
Shared storage check was successful on nodes "rac-node-02,rac-node-01"
 
Checking shared storage accessibility...
 
"/dev/rdsk/c1t2d0s0" is shared
 
WARNING:
PRVF-4212 : The specified Voting Disk location "/dev/rdsk/c1t2d0s0" is not  a partition
 
 
Shared storage check was successful on nodes "rac-node-02,rac-node-01"
 
Checking shared storage accessibility...
 
"/dev/rdsk/c1t3d0s0" is shared
 
WARNING:
PRVF-4212 : The specified Voting Disk location "/dev/rdsk/c1t3d0s0" is not  a partition
 
 
Shared storage check was successful on nodes "rac-node-02,rac-node-01"
Total memory check passed
Available memory check passed
Swap space check passed
Free disk space check passed for "rac-node-02:/var/tmp/"
Free disk space check passed for "rac-node-01:/var/tmp/"
Check for multiple users with UID value 100 passed
User existence check passed for "oracle"
Group existence check passed for "oinstall"
Group existence check passed for "dba"
Membership check for user "oracle" in group "oinstall" [as Primary] passed
Membership check for user "oracle" in group "dba" passed
Run level check passed
Hard limits check passed for "maximum open file descriptors"
Soft limits check passed for "maximum open file descriptors"
Hard limits check passed for "maximum user processes"
Soft limits check passed for "maximum user processes"
System architecture check passed
Kernel version check passed
Kernel parameter check passed for "project.max-sem-ids"
Kernel parameter check passed for "process.max-sem-nsems"
Kernel parameter check passed for "project.max-shm-memory"
Kernel parameter check passed for "project.max-shm-ids"
Package existence check passed for "SUNWarc-..."
Package existence check passed for "SUNWbtool-..."
Package existence check passed for "SUNWhea-..."
Package existence check passed for "SUNWlibm-..."
Package existence check passed for "SUNWlibms-..."
Package existence check passed for "SUNWsprot-..."
Package existence check passed for "SUNWtoo-..."
Package existence check passed for "SUNWi1of-..."
Package existence check passed for "SUNWxwfnt-..."
Package existence check passed for "SUNWlibC-..."
Package existence check passed for "SUNWcsl-..."
Operating system patch check passed for "Patch 139575-03"
Operating system patch check passed for "Patch 139556-08"
Operating system patch check passed for "Patch 137104-02"
Operating system patch check passed for "Patch 120754-06"
Operating system patch check passed for "Patch 119961-05"
Operating system patch check passed for "Patch 119964-14"
Check for multiple users with UID value 0 passed
Current group ID check passed
Core file name pattern consistency check passed.
 
User "oracle" is not part of "root" group. Check passed
Default user file creation mask check passed
 
Starting Clock synchronization checks using Network Time Protocol(NTP)...
 
NTP Configuration file check started...
Network Time Protocol(NTP) configuration file not found on any of the nodes. Oracle Cluster Time Synchronization Service(CTSS) can be used instead of NTP for time synchronization on the cluster nodes
 
Clock synchronization check using Network Time Protocol(NTP) passed
 
 
Pre-check for cluster services setup was successful.

Change any values that shows up in the “failed” list. You can ignore the warnings in this list

Popularity: 7% [?]

5 Responses to “Part 8 – Oracle 11gR2 RAC Solaris 10 – Prepare for CRS installation”

  1. Oracle Masters » Blog Archive » Part 1 – Oracle 11gR2 RAC Solaris 10 – Introduction Says:
    Oracle Masters » Blog Archive » Part 1 – Oracle 11gR2 RAC Solaris 10 – Introduction

    [...] Configure OSPart 7 – Oracle 11gR2 RAC Solaris 10 – Clone and configure second nodePart 8 – Oracle 11gR2 RAC Solaris 10 – Prepare for CRS installationPart 9 – Oracle 11gR2 RAC Solaris 10 – CRS InstallationPart 10 – Oracle 11gR2 RAC [...]

  2. mehmood Says:
    mehmood

    please help with configuration of DNS files for scan. I want to install 11g R2 GRid infra on Redhat linux 5.4. I am waiting for your help and comments.

  3. Ramesh Menon Says:
    Ramesh Menon

    Hi,

    Since this is a question related to Linux, kindly check this link …

    http://www.oracle-base.com/articles/linux/DnsConfigurationForSCAN.php

    Best Regards
    Ramesh J Menon

  4. abdul Says:
    abdul

    Checking hosts config file

    nodename status comment
    rac2 failed Invalid entry
    rac1 failed Invalid entry

    ERROR
    PRVF-4190: Verification of the hosts config faile failed

    Can u help me out

  5. Ramesh Menon Says:
    Ramesh Menon

    At what stage are you getting this error? Is it during cluvfy? What is the entry in your /etc/hosts?

Leave a Reply