SSL Failure every afternoon - InitializeSecurityContext (returned code=InternalError)

Hi, I hope someone can help me with this.
I've got an ASP.Net application that initiates an HTTPS request to another server as needed.  The Application Pool is automatically recycled every night, and the end users have no trouble until about 12:30 to 1:00 pm every day.  At that point
this HTTPS request starts failing.  This happens on 20 load balanced web servers (Windows 2008 R2) at almost the same time.   If the Application Pool is recycled then that web server can make the HTTPS requests again.
I've compared the network trace log for a good request versus a failed request and I can't see any differences until the error happens.
I suspect something in IIS memory, or Windows Networking, is leaking or getting confused after being used a certain number of times...?   It was failing when I was using:
vHttpReq = CreateObject("WinHttp.WinHttpRequest.5.1")vHttpReq.Open("POST", pPost, False)
I recently change it to use the .Net web request and it Still fails (but now I can get .Net tracing):
vHTTPWebReq = DirectCast(Net.HttpWebRequest.Create(Me.m_VendorPath), Net.HttpWebRequest)
Is there some additional tracing or logging that might give more details about "returned code=InternalError" ?
Here is an example of a request that fails:
System.Net Verbose: 0 : [1376] WebRequest::Create(https://website)
System.Net Verbose: 0 : [1376] HttpWebRequest#22178585::HttpWebRequest(https://website#-1667086462)
System.Net Verbose: 0 : [1376] Exiting HttpWebRequest#22178585::HttpWebRequest()
System.Net Verbose: 0 : [1376] Exiting WebRequest::Create() -> HttpWebRequest#22178585
System.Net Verbose: 0 : [1376] HttpWebRequest#22178585::GetRequestStream()
System.Net Information: 0 : [1376] Associating HttpWebRequest#22178585 with ServicePoint#37880405
System.Net Information: 0 : [1376] Associating Connection#24339725 with HttpWebRequest#22178585
System.Net.Sockets Verbose: 0 : [1376] Socket#32990491::Socket(InterNetwork#2)
System.Net.Sockets Verbose: 0 : [1376] Exiting Socket#32990491::Socket()
System.Net.Sockets Verbose: 0 : [1376] Socket#14380334::Socket(InterNetworkV6#23)
System.Net.Sockets Verbose: 0 : [1376] Exiting Socket#14380334::Socket()
System.Net.Sockets Verbose: 0 : [1376] Socket#32990491::Connect(100:443#1677886995)
System.Net.Sockets Information: 0 : [1376] Socket#32990491 - Created connection from 10.10.5.40:63705 to 168.135.2.100:443.
System.Net.Sockets Verbose: 0 : [1376] Exiting Socket#32990491::Connect()
System.Net.Sockets Verbose: 0 : [1376] Socket#14380334::Close()
System.Net.Sockets Verbose: 0 : [1376] Socket#14380334::Dispose()
System.Net.Sockets Verbose: 0 : [1376] Exiting Socket#14380334::Close()
System.Net Information: 0 : [1376] Connection#24339725 - Created connection from 10.10.5.40:63705 to 168.135.2.100:443.
System.Net Information: 0 : [1376] TlsStream#52707602::.ctor(host=website.com, #certs=1)
System.Net Information: 0 : [1376] Associating HttpWebRequest#22178585 with ConnectStream#11199461
System.Net Information: 0 : [1376] HttpWebRequest#22178585 - Request: POST /secure/stuff.do?app=d HTTP/1.1
System.Net Information: 0 : [1376] SecureChannel#35796066::.ctor(hostname=website.com, #clientCertificates=1, encryptionPolicy=RequireEncryption)
System.Net Information: 0 : [1376] SecureChannel#35796066 - Attempting to restart the session using the user-provided certificate: [Version]
V3
[Subject]
OID.0.9.2342.19200300.100.1.1=476817, E=host.com, CN=name, OU=08290275, O=site.com
[Public Key]
Algorithm: RSA
Length: 2048
Key Blob: 30 82 01 0a 02 82 01 01 00 c0 17 f5 6e eb 90 e5 c3 29 70 d0 d5 e4 8e a0 21 aa 5c b7
System.Net Information: 0 : [1376] SecureChannel#35796066 - Left with 1 client certificates to choose from.
System.Net Information: 0 : [1376] SecureChannel#35796066 - Trying to find a matching certificate in the certificate store.
System.Net Information: 0 : [1376] SecureChannel#35796066 - Locating the private key for the certificate: [Version]
V3
[Subject]
[Not Before]
1/2/2015 3:49:41 PM
[Not After]
1/1/2018 3:49:41 PM
[Thumbprint]
FC856FD50073152861A51D80F33D2CA768C12328
[Signature Algorithm]
sha1RSA(1.2.840.113549.1.1.5)
[Public Key]
Algorithm: RSA
Length: 2048
Key Blob: 30 82 01 0a 02 82 01 01 00 c0 17 f5 6e eb 90 e5 c3 29 70 d0 d5 e4 8e a0 21 aa 5c b7
System.Net Information: 0 : [1376] SecureChannel#35796066 - Certificate is of type X509Certificate2 and contains the private key.
System.Net Information: 0 : [1376] Using the cached credential handle.
System.Net Information: 0 : [1376] InitializeSecurityContext(credential = System.Net.SafeFreeCredential_SECURITY, context = (null), targetName = website.com, inFlags = ReplayDetect, SequenceDetect, Confidentiality, AllocateMemory, InitManualCredValidation)
System.Net Information: 0 : [1376] InitializeSecurityContext(In-Buffer length=0, Out-Buffer length=150, returned code=ContinueNeeded).
System.Net.Sockets Verbose: 0 : [1376] Socket#32990491::Send()
System.Net.Sockets Verbose: 0 : [1376] Data from Socket#32990491::Send
System.Net.Sockets Verbose: 0 : [1376] 00000000 : 16 03 01 00 91 01 00 00-8D 03 01 54 AA DE 6B 28 : ...........T..k(
System.Net.Sockets Verbose: 0 : [1376] 00000010 : C7 29 9B 9C 0D D8 AB 09-BA E9 A6 8E 34 84 0D AF : .)..........4...
System.Net.Sockets Verbose: 0 : [1376] 00000020 : 9A 7F C4 42 E5 D7 BF 42-98 6A F3 20 17 C5 24 96 : ...B...B.j. ..$.
System.Net.Sockets Verbose: 0 : [1376] 00000030 : 6D F7 D8 9C 7D BB 74 16-F3 5E 55 A6 09 88 DA 49 : m...}.t..^U....I
System.Net.Sockets Verbose: 0 : [1376] 00000040 : D4 BD CC C4 4E 38 C7 05-82 53 D9 44 00 18 00 2F : ....N8...S.D.../
System.Net.Sockets Verbose: 0 : [1376] 00000050 : 00 35 00 05 00 0A C0 13-C0 14 C0 09 C0 0A 00 32 : .5.............2
System.Net.Sockets Verbose: 0 : [1376] 00000060 : 00 38 00 13 00 04 01 00-00 2C FF 01 00 01 00 00 : .8.......,......
System.Net.Sockets Verbose: 0 : [1376] 00000070 : 00 00 13 00 11 00 00 0E-64 73 78 2E 64 65 6C 75 : ........********
System.Net.Sockets Verbose: 0 : [1376] 00000080 : 78 65 2E 63 6F 6D 00 0A-00 06 00 04 00 17 00 18 : **.com..........
System.Net.Sockets Verbose: 0 : [1376] 00000090 : 00 0B 00 02 01 00 : ......
System.Net.Sockets Verbose: 0 : [1376] Exiting Socket#32990491::Send() -> 150#150
System.Net.Sockets Verbose: 0 : [1376] Socket#32990491::Receive()
System.Net.Sockets Verbose: 0 : [1376] Data from Socket#32990491::Receive
System.Net.Sockets Verbose: 0 : [1376] 00000000 : 16 03 01 12 70 : ....p
System.Net.Sockets Verbose: 0 : [1376] Exiting Socket#32990491::Receive() -> 5#5
System.Net.Sockets Verbose: 0 : [1376] Socket#32990491::Receive()
System.Net.Sockets Verbose: 0 : [1376] Data from Socket#32990491::Receive
System.Net.Sockets Verbose: 0 : [1376] (printing 1024 out of 4376)
System.Net.Sockets Verbose: 0 : [1376] 00000005 : 02 00 00 53 03 01 54 AA-DE 6C 6E 24 DF 69 10 67 : ...S..T..ln$.i.g
System.Net.Sockets Verbose: 0 : [1376] 00000015 : 47 AD EF 4C B4 16 23 98-66 65 5F 3B B9 AE 54 FA : G..L..#.fe_;..T.
System.Net.Sockets Verbose: 0 : [1376] 00000025 : 63 E4 02 77 7D 38 20 57-43 63 04 35 3B 35 3E 4F : c..w}8 WCc.5;5>O
System.Net.Sockets Verbose: 0 : [1376] 00000035 : E0 22 80 21 6A E3 DE 73-BB 30 AC 03 BD 1D E8 32 : .".!j..s.0.....2
System.Net.Sockets Verbose: 0 : [1376] 00000045 : F9 B7 FE 35 E8 EB D9 C0-14 00 00 0B FF 01 00 01 : ...5............
System.Net.Sockets Verbose: 0 : [1376] 00000055 : 00 00 0B 00 02 01 00 0B-00 10 4B 00 10 48 00 05 : ..........K..H..
System.Net.Sockets Verbose: 0 : [1376] 00000065 : 3B 30 82 05 37 30 82 04-1F A0 03 02 01 02 02 10 : ;0..70..........
System.Net.Sockets Verbose: 0 : [1376] 00000075 : 05 D8 54 9C B4 A9 49 50-E0 2B F3 79 7E 28 9A A8 : ..T...IP.+.y~(..
System.Net.Sockets Verbose: 0 : [1376] 00000085 : 30 0D 06 09 2A 86 48 86-F7 0D 01 01 05 05 00 30 : 0...*.H........0
System.Net.Sockets Verbose: 0 : [1376] 00000095 : 81 BC 31 0B 30 09 06 03-55 04 06 13 02 55 53 31 : ..1.0...U....US1
System.Net.Sockets Verbose: 0 : [1376] 000000A5 : 17 30 15 06 03 55 04 0A-13 0E 56 65 72 69 53 69 : .0...U....VeriSi
System.Net.Sockets Verbose: 0 : [1376] 000000B5 : 67 6E 2C 20 49 6E 63 2E-31 1F 30 1D 06 03 55 04 : gn, Inc.1.0...U.
System.Net.Sockets Verbose: 0 : [1376] 000000C5 : 0B 13 16 56 65 72 69 53-69 67 6E 20 54 72 75 73 : ...VeriSign Trus
System.Net.Sockets Verbose: 0 : [1376] 000000D5 : 74 20 4E 65 74 77 6F 72-6B 31 3B 30 39 06 03 55 : t Network1;09..U
System.Net.Sockets Verbose: 0 : [1376] 000000E5 : 04 0B 13 32 54 65 72 6D-73 20 6F 66 20 75 73 65 : ...2Terms of use
System.Net.Sockets Verbose: 0 : [1376] 000000F5 : 20 61 74 20 68 74 74 70-73 3A 2F 2F 77 77 77 2E : at https://www.
System.Net.Sockets Verbose: 0 : [1376] 00000105 : 76 65 72 69 73 69 67 6E-2E 63 6F 6D 2F 72 70 61 : verisign.com/rpa
System.Net.Sockets Verbose: 0 : [1376] 00000115 : 20 28 63 29 31 30 31 36-30 34 06 03 55 04 03 13 : (c)101604..U...
System.Net.Sockets Verbose: 0 : [1376] 00000125 : 2D 56 65 72 69 53 69 67-6E 20 43 6C 61 73 73 20 : -VeriSign Class
System.Net.Sockets Verbose: 0 : [1376] 00000135 : 33 20 49 6E 74 65 72 6E-61 74 69 6F 6E 61 6C 20 : 3 International
System.Net.Sockets Verbose: 0 : [1376] 00000145 : 53 65 72 76 65 72 20 43-41 20 2D 20 47 33 30 1E : Server CA - G30.
System.Net.Sockets Verbose: 0 : [1376] 00000155 : 17 0D 31 34 30 35 30 35-30 30 30 30 30 30 5A 17 : ..140505000000Z.
System.Net.Sockets Verbose: 0 : [1376] 00000165 : 0D 31 35 30 35 32 32 32-33 35 39 35 39 5A 30 7C : .150522235959Z0|
System.Net.Sockets Verbose: 0 : [1376] 00000175 : 31 0B 30 09 06 03 55 04-06 13 02 55 53 31 12 30 : 1.0...U....US1.0
System.Net.Sockets Verbose: 0 : [1376] 00000185 : 10 06 03 55 04 08 13 09-4D 69 6E 6E 65 73 6F 74 : ...U....Minnesot
System.Net.Sockets Verbose: 0 : [1376] 00000195 : 61 31 12 30 10 06 03 55-04 07 14 09 53 68 6F 72 : a1.0...U....Shor
System.Net.Sockets Verbose: 0 : [1376] 000001A5 : 65 76 69 65 77 31 1B 30-19 06 03 55 04 0A 14 12 : eview1.0...U....
System.Net.Sockets Verbose: 0 : [1376] 000001B5 : 44 65 6C 75 78 65 20 43-6F 72 70 6F 72 61 74 69 : ****************
System.Net.Sockets Verbose: 0 : [1376] 000001C5 : 6F 6E 31 0F 30 0D 06 03-55 04 0B 14 06 44 65 6C : on1.0...U....***
System.Net.Sockets Verbose: 0 : [1376] 000001D5 : 75 78 65 31 17 30 15 06-03 55 04 03 14 0E 64 73 : ****.0...U....**
System.Net.Sockets Verbose: 0 : [1376] 000001E5 : 78 2E 64 65 6C 75 78 65-2E 63 6F 6D 30 82 01 22 : ********.com0.."
System.Net.Sockets Verbose: 0 : [1376] 000001F5 : 30 0D 06 09 2A 86 48 86-F7 0D 01 01 01 05 00 03 : 0...*.H.........
System.Net.Sockets Verbose: 0 : [1376] 00000205 : 82 01 0F 00 30 82 01 0A-02 82 01 01 00 E6 F3 6F : ....0..........o
System.Net.Sockets Verbose: 0 : [1376] 00000215 : 16 D5 99 5E 50 16 53 87-47 8B 1E 35 86 84 DB 69 : ...^P.S.G..5...i
System.Net.Sockets Verbose: 0 : [1376] 00000225 : 64 A9 2E 9B AF 0C C9 CD-06 3E 5A DE 7A 88 E9 DF : d........>Z.z...
System.Net.Sockets Verbose: 0 : [1376] 00000235 : B9 CB 15 90 7E CA AE 5E-7F B1 9D E1 86 91 2D 57 : ....~..^......-W
System.Net.Sockets Verbose: 0 : [1376] 00000245 : F7 27 3D 95 D7 1A D8 F0-83 89 77 42 22 87 56 D3 : .'=.......wB".V.
System.Net.Sockets Verbose: 0 : [1376] 00000255 : 8C 43 F8 4B 57 F8 6F 45-28 A4 71 2A 21 20 FE F6 : .C.KW.oE(.q*! ..
System.Net.Sockets Verbose: 0 : [1376] 00000265 : 99 C4 BD C9 29 AA F5 DF-55 7A 07 97 40 A4 2C 86 : ....)...Uz..@.,.
System.Net.Sockets Verbose: 0 : [1376] 00000275 : B0 C3 91 60 34 4E 2C DB-86 3C 88 02 1D 29 0E BF : ...`4N,..<...)..
System.Net.Sockets Verbose: 0 : [1376] 00000285 : FF BF DE 64 0D 17 7C 33-D8 47 94 40 D0 6F 8E 37 : ...d..|[email protected]
System.Net.Sockets Verbose: 0 : [1376] 00000295 : E9 2C 82 72 B0 D4 80 97-6D 94 68 F2 3D 19 F9 99 : .,.r....m.h.=...
System.Net.Sockets Verbose: 0 : [1376] 000002A5 : 7C 13 55 C8 A8 75 5D F5-F8 C1 2C A8 6F 38 A7 BB : |.U..u]...,.o8..
System.Net.Sockets Verbose: 0 : [1376] 000002B5 : 3B 98 12 E1 6F 12 F4 9D-76 B1 98 34 78 F5 6C 0E : ;...o...v..4x.l.
System.Net.Sockets Verbose: 0 : [1376] 000002C5 : 10 71 D7 D0 50 23 C3 77-8B 45 73 D1 47 DA B0 E2 : .q..P#.w.Es.G...
System.Net.Sockets Verbose: 0 : [1376] 000002D5 : CD 16 97 4B 4A B4 06 42-2F E1 89 5B 31 AF 3F 75 : ...KJ..B/..[1.?u
System.Net.Sockets Verbose: 0 : [1376] 000002E5 : 77 5A C7 A4 BA 35 8D 05-26 C4 80 05 4B 02 DB 7E : wZ...5..&...K..~
System.Net.Sockets Verbose: 0 : [1376] 000002F5 : 4F CA BE EF C7 C4 F7 9B-20 8C BC A1 18 29 81 67 : O....... ....).g
System.Net.Sockets Verbose: 0 : [1376] 00000305 : FA A5 D1 A6 15 6F DD E0-2B 64 43 55 6B 02 03 01 : .....o..+dCUk...
System.Net.Sockets Verbose: 0 : [1376] 00000315 : 00 01 A3 82 01 72 30 82-01 6E 30 19 06 03 55 1D : .....r0..n0...U.
System.Net.Sockets Verbose: 0 : [1376] 00000325 : 11 04 12 30 10 82 0E 64-73 78 2E 64 65 6C 75 78 : ...0...*********
System.Net.Sockets Verbose: 0 : [1376] 00000335 : 65 2E 63 6F 6D 30 09 06-03 55 1D 13 04 02 30 00 : *.com0...U....0.
System.Net.Sockets Verbose: 0 : [1376] 00000345 : 30 0E 06 03 55 1D 0F 01-01 FF 04 04 03 02 05 A0 : 0...U...........
System.Net.Sockets Verbose: 0 : [1376] 00000355 : 30 28 06 03 55 1D 25 04-21 30 1F 06 08 2B 06 01 : 0(..U.%.!0...+..
System.Net.Sockets Verbose: 0 : [1376] 00000365 : 05 05 07 03 01 06 08 2B-06 01 05 05 07 03 02 06 : .......+........
System.Net.Sockets Verbose: 0 : [1376] 00000375 : 09 60 86 48 01 86 F8 42-04 01 30 65 06 03 55 1D : .`.H...B..0e..U.
System.Net.Sockets Verbose: 0 : [1376] 00000385 : 20 04 5E 30 5C 30 5A 06-0A 60 86 48 01 86 F8 45 : .^0\0Z..`.H...E
System.Net.Sockets Verbose: 0 : [1376] 00000395 : 01 07 36 30 4C 30 23 06-08 2B 06 01 05 05 07 02 : ..60L0#..+......
System.Net.Sockets Verbose: 0 : [1376] 000003A5 : 01 16 17 68 74 74 70 73-3A 2F 2F 64 2E 73 79 6D : ...https://d.sym
System.Net.Sockets Verbose: 0 : [1376] 000003B5 : 63 62 2E 63 6F 6D 2F 63-70 73 30 25 06 08 2B 06 : cb.com/cps0%..+.
System.Net.Sockets Verbose: 0 : [1376] 000003C5 : 01 05 05 07 02 02 30 19-1A 17 68 74 74 70 73 3A : ......0...https:
System.Net.Sockets Verbose: 0 : [1376] 000003D5 : 2F 2F 64 2E 73 79 6D 63-62 2E 63 6F 6D 2F 72 70 : //d.symcb.com/rp
System.Net.Sockets Verbose: 0 : [1376] 000003E5 : 61 30 1F 06 03 55 1D 23-04 18 30 16 80 14 D7 9B : a0...U.#..0.....
System.Net.Sockets Verbose: 0 : [1376] 000003F5 : 7C D8 22 A0 15 F7 DD AD-5F CE 29 9B 58 C3 BC 46 : |."....._.).X..F
System.Net.Sockets Verbose: 0 : [1376] Exiting Socket#32990491::Receive() -> 4376#4376
System.Net.Sockets Verbose: 0 : [1376] Socket#32990491::Receive()
System.Net.Sockets Verbose: 0 : [1376] Data from Socket#32990491::Receive
System.Net.Sockets Verbose: 0 : [1376] 0000111D : 32 08 1C 01 7D 08 B7 18-D5 9F 6D 66 70 4A 63 32 : 2...}.....mfpJc2
System.Net.Sockets Verbose: 0 : [1376] 0000112D : 17 91 0E E0 05 72 93 BD-03 E1 74 6B CB D9 F9 FB : .....r....tk....
System.Net.Sockets Verbose: 0 : [1376] 0000113D : F8 E9 AA 40 DC 31 93 4A-10 D7 BC 5A 57 99 BA 06 : [email protected]...
System.Net.Sockets Verbose: 0 : [1376] 0000114D : D2 38 92 6C 66 C9 BA 6C-33 69 A3 BB 84 F3 F6 D7 : .8.lf..l3i......
System.Net.Sockets Verbose: 0 : [1376] 0000115D : 94 DA 08 81 90 42 98 26-59 3A 76 BA 0A F1 AB 43 : .....B.&Y:v....C
System.Net.Sockets Verbose: 0 : [1376] 0000116D : 08 1A F0 97 70 C9 A2 93-B1 57 45 FB C6 BC EF CE : ....p....WE.....
System.Net.Sockets Verbose: 0 : [1376] 0000117D : DC 19 FD 93 24 DE 01 E0-35 DD 7B DA 6B 29 04 49 : ....$...5.{.k).I
System.Net.Sockets Verbose: 0 : [1376] 0000118D : FF 1B 71 38 D3 FD F8 3A-5F DA 14 97 4F CE 5E 9C : ..q8...:_...O.^.
System.Net.Sockets Verbose: 0 : [1376] 0000119D : 1F 4F E8 13 25 DB F1 0B-E9 15 97 3B B5 73 03 D7 : .O..%......;.s..
System.Net.Sockets Verbose: 0 : [1376] 000011AD : 53 04 14 DC 4A 05 D8 14-06 27 97 0D FB 45 F8 43 : S...J....'...E.C
System.Net.Sockets Verbose: 0 : [1376] 000011BD : 22 37 FA DA 37 8F 7A B5-02 3D EB 41 12 31 B4 8D : "7..7.z..=.A.1..
System.Net.Sockets Verbose: 0 : [1376] 000011CD : A9 51 02 B6 67 AD 3B FE-5E 28 97 83 DD 6C 17 4A : .Q..g.;.^(...l.J
System.Net.Sockets Verbose: 0 : [1376] 000011DD : BE 0C D7 0F 03 9C 80 B2-62 C8 91 48 E0 6B DE A4 : ........b..H.k..
System.Net.Sockets Verbose: 0 : [1376] 000011ED : 82 F4 DA 25 42 6A 8F D4-72 0D 00 00 77 03 01 02 : ...%Bj..r...w...
System.Net.Sockets Verbose: 0 : [1376] 000011FD : 40 00 71 00 6F 30 6D 31-1B 30 19 06 03 55 04 0A : @.q.o0m1.0...U..
System.Net.Sockets Verbose: 0 : [1376] 0000120D : 13 12 44 65 6C 75 78 65-20 43 6F 72 70 6F 72 61 : ..**************
System.Net.Sockets Verbose: 0 : [1376] 0000121D : 74 69 6F 6E 31 14 30 12-06 03 55 04 0B 13 0B 49 : ****1.0...U....I
System.Net.Sockets Verbose: 0 : [1376] 0000122D : 54 20 53 65 63 75 72 69-74 79 31 1E 30 1C 06 03 : T Security1.0...
System.Net.Sockets Verbose: 0 : [1376] 0000123D : 55 04 03 13 15 44 65 6C-75 78 65 20 43 6F 72 70 : U....***********
System.Net.Sockets Verbose: 0 : [1376] 0000124D : 6F 72 61 74 69 6F 6E 20-43 41 31 18 30 16 06 0A : *********A1.0...
System.Net.Sockets Verbose: 0 : [1376] 0000125D : 09 92 26 89 93 F2 2C 64-01 01 13 08 44 65 6C 75 : ..&...,d....****
System.Net.Sockets Verbose: 0 : [1376] 0000126D : 78 65 43 41 0E 00 00 00- : **CA....
System.Net.Sockets Verbose: 0 : [1376] Exiting Socket#32990491::Receive() -> 344#344
System.Net Information: 0 : [1376] InitializeSecurityContext(credential = System.Net.SafeFreeCredential_SECURITY, context = 1aeee8e0:3463a390, targetName = website.com, inFlags = ReplayDetect, SequenceDetect, Confidentiality, AllocateMemory, InitManualCredValidation)
System.Net Information: 0 : [1376] InitializeSecurityContext(In-Buffers count=2, Out-Buffer length=0, returned code=InternalError).
System.Net.Sockets Verbose: 0 : [1376] Socket#32990491::Dispose()
System.Net Error: 0 : [1376] Exception in the HttpWebRequest#22178585:: - The request was aborted: Could not create SSL/TLS secure channel.
System.Net Error: 0 : [1376] Exception in the HttpWebRequest#22178585::EndGetRequestStream - The request was aborted: Could not create SSL/TLS secure channel.

Group Policy uses a server to verify credentials before connections are made.  If the credential server doesn't respond you may fail. It sound like there is some sort of network loading issue that is causing the issue. Probably a timeout needs to be
increase. Other possibilities is some admin program is schedule to run at the same time every day (or a user application is downloading large amount of data every day) which is slowing down the network.  I don't think you will be able to change the
schedule program, so trying to increase the timeouts is the better approach.  
It also looks like there may be a certificate issue.  Not sure if the server that validates the certificate isn't responding quick enough, or there isn't a certificate available because other users have checked out the all certificates.
jdweng

Similar Messages

  • AFPPRN received a return code of failure from the OSD routine FDUPRN

    Hi all,
    Operting system : Solaris 9
    Oracle application: 11.5.10
    i would like to ask query related to buffer area of pinter on solaris server.
    we are trying to print cheques using oracle application on network printer.
    some times it is printing the cheques with out any problem but sometimes it throws and error message in concurrent request log file.
    ****************** L O G F I L E C O N T E N T S ***************
    Printing output file.
    Request ID : 849798
    Number of copies : 1
    Printer : radch1
    Pasta: Error: Error reading input file for type checking.
    APP-FND-00500: AFPPRN received a return code of failure from routine FDUPRN. An error occurred while AOL tried to spawn the print process
    Cause: AFPPRN received a return code of failure from the OSD routine FDUPRN. An error occurred while AOL tried to spawn the print process.
    Action: Review your concurrent request log file for more detailed information.
    Finished executing request completion options.
    Concurrent request completed
    Current system time is 20-AUG-2009 11:49:18
    ****************** L O G F I L E C O N T E N T S ***************
    my question is
    1) Do we need to delete any temporary files from server related to printer.
    Regards

    Hi,
    What is the status of those concurrent requests (Completed with Warning or with Error)?
    1) Do we need to delete any temporary files from server related to printer.Usually, you do not need to delete any files manually, temp files will be created by the application, and there should no issues with the files permissions (unless you have some other instance running on the same node with different applmgr user). However, you can safely clean (.t and .tmp) files as per the following documents.
    Note: 435437.1 - Most Common Solutions to FRM-41839 and .tmp Files Not Being Deleted
    Note: 145487.1 - Files Types .t and .temp and .tmp, are Saving Under /var/tmp
    Note: 162232.1 - Why Does Oracle Forms Create .TMP Files Which Fill Up The Filesystem e.g. /tmp ?
    I would also suggest you search Metalink for APP-FND-00500 and you will get many hits, go through the documents and see if it helps.
    Regards,
    Hussein

  • APP-FND-00500: AFPPRN received a return code of failure from routine FDUPRN

    Hi All,
    i have configured a printer in R12.1.3, when i am trying to print its giving below error...
    please help..
    lp: The printer or class was not found.
    Pasta: Error: Print failed. Command=lp -c -dHP_P4014N /apps/local/inst/apps/UAT_server/appltmp/pasta9331_0.tmp
    Pasta: Error: Check printCommand/ntPrintCommand in pasta.cfg
    Pasta: Error: Preprocess or Print command failed!!!
    APP-FND-00500: AFPPRN received a return code of failure from routine FDUPRN. Program exited with status 1
    Cause: AFPPRN received a return code of failure from the OSD routine FDUPRN. Program exited with status 1.
    Action: Review your concurrent request log file for more detailed information.
    Thanks
    RB

    And found this Exception also... in the diagnostic output.
    EXCEPTION - One or more versions were missing. caught in 'FNDPastaDiag.retrieveSupportFiles'
    java.lang.IllegalArgumentException: One or more versions were missing.
    at oracle.apps.jtf.regress.qatool.base.TextUtility.compareVersions(TextUtility.java:650)
    at oracle.apps.fnd.diagnose.FNDPastaDiag.retrieveSupportFiles(FNDPastaDiag.java:1486)
    at oracle.apps.fnd.diagnose.FNDPastaDiag.runSupportTest(FNDPastaDiag.java:556)
    at oracle.apps.jtf.regress.qatool.base.DiagBase.runTest(DiagBase.java:373)
    at oracle.apps.fnd.oam.diagnostics.exec.LegacyJavaTestExecution.runTest(LegacyJavaTestExecution.java:147)
    at oracle.apps.fnd.oam.diagnostics.exec.LegacyJavaTestExecution.execute(LegacyJavaTestExecution.java:83)
    at oracle.apps.fnd.oam.diagnostics.exec.WorkerThread.run(WorkerThread.java:49)
    at java.lang.Thread.run(Thread.java:619)
    ACTION - Please log an iTAR (Service Request) for product "Support Diagnostics Project" (ID=1332) to notify support about this issue
    Thx
    RB

  • Test web service published returns Error code: InternalError, Http status code: 500

    Further invastigating ther error mentioned here: 
    https://social.msdn.microsoft.com/Forums/azure/en-US/14afa50f-287d-4158-852a-c9532f9f30eb/test-published-web-service-experiment-error-with-status-code-400?forum=MachineLearning
    I have made an even simpler experiment with two python scirpt modules. The experiment again runs fine in Azure ML Studio but fails in the web service test with the error
    Error code: InternalError, Http status code: 500, Request id: 53eef674-190a-4f63-bdc6-a072a45a9c72, Timestamp: Fri, 24 Apr 2015 09:30:37 GMT
    The experiment consists only of two python script modules. The code of the first module:
    import numpy as np
    import pandas as pd
    def azureml_main(dataframe1 = None, dataframe2 = None):
        dataframe1.loc[1] = ["U5000","resB",np.nan]
        dataframe1.loc[2] = ["U5000","resC",2]
        dataframe1.loc[3] = ["U5000","resD",2]
        dataframe1.loc[4] = ["U5000","resE",np.nan]
        dataframe1.loc[5] = ["U6000","resA",np.nan]
        dataframe1.loc[6] = ["U6000","resB",1]
        dataframe1.loc[7] = ["U6000","resC",2]
        dataframe1.loc[8] = ["U6000","resD",np.nan]
        dataframe1.loc[9] = ["U6000","resE",1]
        dataframe1['hasRated'] = pd.Series(1, index=dataframe1.index).astype(bool)
        df_new = pd.DataFrame()
        df_new = pd.DataFrame(dataframe1[["restaurant","rating","hasRated"]])
        return df_new,
    The code of the second module that takes as input the result of the first module:
    def azureml_main(dataframe1 = None, dataframe2 = None):
    return dataframe1,
    A url of a screenshot taken from the experiment.
    http://i.imgur.com/4nrbneA.png
    Please respond. Again I am using a free workspace of Azure ML Studio.
    Thank you very much

    Thank you for your quick reply.
    I hope you will be able to resolve this issue soon.
    asavvopoulos

  • TP return code 0249 /  No connect due to DbSl Load Lib Failure

    Hi,
    When I try to release a Transport in Transaction - SE01, we are
    encountering the following error and the task gets released but the
    Transport doesn't get released. Please find the error message below:
    Test call of transport control program (tp) ended with return code 0249
    Message no. TK094
    Diagnosis
    Your transport request could not be exported, since all requirements were not fulfilled.
    Calling the transport control program tp
    "tp EXPCHK RDDK123345 pf=C:\usr\sap\trans\bin\TP_DOMAIN_R3D.PFL
    -Dtransdir=C:\usr\sa"
    which checks the export requirements, returned the following
    information:
    Return code from tp: 0249
    Error text from tp: ERROR: No connect due to DbSl Load Lib Failure
    System response
    Further processing is terminated.
    Procedure
    Check the following points:
    o Feasibility of the transport control program tp
    o Parameter settings in the transport profile
    o Availability of the transport directory and the subdirectories
    (cofiles, data, log, sapnames, bin)
    o Write authorization for the subdirectories
    o Write authorization for the files of the subdirectories cofiles,
    data, log, sapnames
    Release the request again when the error has been removed
    Appreciate any help to resolve this error.
    Thanks,
    Rajesh

    Hi!
    I have the same issue, but the windows enviroment variable has been set or should the parameter be set in the instance profile?
    Thanks!
    rollo
    //solved
    It was an issue with the RFC's and some mising services in the service file
    Edited by: rollo on Jan 12, 2009 2:40 PM

  • Transport error failure with return code 12 for BIA indexed Cube

    Hello,
    I was trying to transport few cubes from the Dev to the QA system. However, the transport failed repeatedly with return code 12. I noticed that the version of Cubes in the target system had BIA indexes loaded on it.   So, I deleted those indexes and re-transported the cubes.To my surprise, the transport went fine without the BIA indexes. This now opens up a new avenue for discussion of dropping and recreating BIA indexes for those cubes that needs to be transported.
    Any thoughts on this new aspect before. Has anyone faced similar problems. I want to know your experiences before we can take this issue to SAP.
    Thanks,
    Rishi

    Rishi/Vitaly/Marc,
    How do you transport cubes with BIA indexes.
    Do you drop/recreate the BIA index before the transport.
    In my case, the transport kicked off adjustment job exactly as described in [Note 1012008|https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1012008]
    Indexes looks fine once this jobs completes successfully. The transport does not fail.
    Is this approach fine.
    I see that most of the customers drop/recreate indexes before transporting cubes.
    Can I run into data consistency issues with this approach?
    Input required.
    Thanks,
    Saurabh

  • Return Code of sqlldr for failure or success ??

    Hi,
    I would like to know what will be the return code for the sql loader when there is rejection of single record from the data file.
    Can someone please tell me regarding return code of sqlldr so that depending on that i would be able to take some action.
    The other methods which are there to do the same :
    1) To scan the log file and check for rejected keyword
    2) To check weather any bad file is created.
    Any help would be highly appreciated.
    Thanks!!

    Check out this book : Utilities
    http://otn.oracle.com/pls/db92/db92.docindex?remark=homepage
    Joel P�rez

  • Transport error failure with return code 12

    Hello Experts
    I was trying to transport a request which consists of four Cubes, Infosources, datasources, Update rules and communication structure from QA to Test. The transport went without any problems from Dev to QA. However, while transporting to Q, it finished with errors with return code 12 with the following error: I tried to import it thrice with no success
    Program terminated (job: RDDEXECL, no.: 21120900)
    I checked in SM37 and the background job for this transport gets terminated everytime with the following dump:
    Error analysis                                                                               
    An exception occurred which is explained in detail below.  The exception, which is assigned to class 'CX_RSR_X_MESSAGE', was not caught and therefore caused a runtime error. The reason for the exception is: No text available for this exception   
    Does anyone has a clue about this?
    Thanks
    Rishi

    Hi Rishi ,
    The Issue may be with the buffer capacity while transporting .
    As i see from the post that you have captured all the objects
    in one request and sent to target system . As per my experience never include all the objects in one Request .
    Try to separate them depending on the onject types ,i mean datasource , infosource , ODS & cube seperately .
    IF you cannot solve the problem , i think it is better to create a new request as i said in Development and try to move them to production .If next time request fail then you can look at the only that particuler Request only .
    IF you have more information please share .
    Thanks
    Santosh

  • SSL Verify Return Code:21

    Running: +openssl s_client -connect server.domain.com:636+
    I get the following error:
    Verify return code: 21 (unable to verify the first certificate)
    I believe this is an issue with the CA or the Key not being verified/accepted
    I installed the ca bundle from here: http://certs.ipsca.com/Support/SSLServerSUPPORT.asp
    Then I edited the httpd.conf file to include: +SSLCertificateChainFile "/etc/apache2/conf/IPS-IPSCABUNDLE.crt"+
    pasted the crt data in my crt - via server admin
    the issuer checked my site and they said it was installed correctly, however it appears not to be.
    If I go to https://server.domain.com it connects with no issue, if I go to https://server.domain.com:### It asks me if I want to trust the crt.
    Thanks for the help

    It would be helpful if I knew where server admin saves the cert's that are created in it.
    It seems to me that the error is that there is no key given to the client.
    Here is the output of the cal error log. (wow they need a code input... to keep formating correct)
    2009-06-30 08:51:26-0400 [-] [caldav-8009] [OpenDirectoryService] Record disabled due to conflict: <OpenDirectoryRecord[groups@058167af-ace8-519a-ac3d-e166498db024(/Search->/Loca l/Default)] ABCDEFAB-CDEF-ABCD-EFAB-CDEF00000050(admin) 'Administrators'>
    2009-06-30 08:51:26-0400 [-] [caldav-8009] [OpenDirectoryService] Record disabled due to conflict: <OpenDirectoryRecord[groups@058167af-ace8-519a-ac3d-e166498db024(/Search->/LDAP v3/127.0.0.1)] 7D0CD28A-D68E-4501-92EA-A1AA88C8D70C(admin) 'Open Directory Administrators'>
    2009-06-30 08:51:26-0400 [-] [caldav-8009] [OpenDirectoryService] Record disabled due to conflict: <OpenDirectoryRecord[groups@058167af-ace8-519a-ac3d-e166498db024(/Search->/Loca l/Default)] ABCDEFAB-CDEF-ABCD-EFAB-CDEF00000014(staff) 'Users'>
    2009-06-30 08:51:26-0400 [-] [caldav-8009] [OpenDirectoryService] Record disabled due to conflict: <OpenDirectoryRecord[groups@058167af-ace8-519a-ac3d-e166498db024(/Search->/LDAP v3/127.0.0.1)] E1F6927D-1F72-4882-BB9C-BBF51679E801(staff) 'Open Directory Users'>
    2009-06-30 08:51:26-0400 [-] [caldav-8009] [AMP,client] PROPFIND /calendars/_uids_/C2511463-0A52-4A21-B6C8-26ED39AB1585/ HTTP/1.1
    2009-06-30 08:51:26-0400 [-] [caldav-8010] [AMP,client] PROPFIND /calendars/_uids_/E6808172-E1C3-4C20-A120-C5DDE13ABD86/ HTTP/1.1
    2009-06-30 08:51:26-0400 [-] [caldav-8010] [OpenDirectoryService] Reloading users record cache
    2009-06-30 08:51:26-0400 [-] [caldav-8010] [OpenDirectoryService] Record disabled due to conflict: <OpenDirectoryRecord[users@058167af-ace8-519a-ac3d-e166498db024(/Search->/Local /Default)] FFFFEEEE-DDDD-CCCC-BBBB-AAAA00000000(root) 'System Administrator'>
    2009-06-30 08:51:26-0400 [-] [caldav-8010] [OpenDirectoryService] Record disabled due to conflict: <OpenDirectoryRecord[users@058167af-ace8-519a-ac3d-e166498db024(/Search->/LDAPv 3/127.0.0.1)] 791FBD53-1D1C-459E-80C3-C28AE11972B0(root) 'System Administrator'>
    2009-06-30 08:51:26-0400 [-] [caldav-8010] [AMP,client] PROPFIND /principals/_uids_/DDEA30CB-484D-4217-BDC0-2D57321E7D43/ HTTP/1.1
    2009-06-30 08:51:26-0400 [-] [caldav-8009] [AMP,client] PROPFIND /principals/_uids_/DDEA30CB-484D-4217-BDC0-2D57321E7D43/ HTTP/1.1
    2009-06-30 08:51:26-0400 [-] [caldav-8009] [OpenDirectoryService] Reloading resources record cache
    2009-06-30 08:51:26-0400 [-] [caldav-8009] [OpenDirectoryService] Reloading locations record cache
    2009-06-30 08:51:26-0400 [-] [caldav-8009] [AMP,client] PROPFIND /principals/_uids_/8094FA63-F1F8-4EEC-BEA3-A080162C9478/ HTTP/1.1
    2009-06-30 08:51:26-0400 [-] [caldav-8009] [AMP,client] PROPFIND /principals/_uids_/DB0DFA19-A819-4EF2-B15E-514E52FC952F/ HTTP/1.1
    2009-06-30 08:51:26-0400 [-] [caldav-8009] [AMP,client] PROPFIND /principals/_uids_/E6808172-E1C3-4C20-A120-C5DDE13ABD86/ HTTP/1.1
    2009-06-30 08:51:26-0400 [-] [caldav-8009] [AMP,client] PROPFIND /principals/_uids_/C2511463-0A52-4A21-B6C8-26ED39AB1585/ HTTP/1.1

  • Cryptographic Operation: Operation: Decrypt. Return Code: 0x80090010

    Hi,
    Attempting to setup NPS Server 2012 to use 802.1x PEAP.
    Client is distributed the certificate and the certificate shows the trust as having the appropriate chain.
    Thanks
    Logon Attempts are receiving this error message:
    Log Name:      Security
    Source:        Microsoft-Windows-Security-Auditing
    Date:          8/8/2014 12:33:35 PM
    Event ID:      5061
    Task Category: System Integrity
    Level:         Information
    Keywords:      Audit Failure
    User:          N/A
    Computer:      SERVER01.domain.lan
    Description:
    Cryptographic operation.
    Subject:
    Security ID:
    SYSTEM
    Account Name:
    SERVER01$
    Account Domain:
    DOMAIN
    Logon ID:
    0x3E7
    Cryptographic Parameters:
    Provider Name:
    Microsoft Software Key Storage Provider
    Algorithm Name:
    RSA
    Key Name:
    KEYNAME
    Key Type:
    Machine key.
    Cryptographic Operation:
    Operation:
    Decrypt.
    Return Code:
    0x80090010

    It seems the server does not have access to "its own" private key.
    Two ideas:
    1) The service used with NPS (I guess Network Service)
    does not have access to the private key. This service should be given Full Control on the Private Key in the Certificates MMC targeted to the local computer (right-click the cert. in Personal, All Tasks, Manage Keys...)
    2) I have generally sometimes seen issues when the Software Key Storage Provider was used with SSL (Schannel error messages...). Using a
    classical CSP specifically designed for SSL resolved that, e.g. the RSA Schannel provider. You would need to copy your template again and pick such a CSP ("Windows 2003 template" in case this is a W2K8 (R2) CA or compatible with XP/2003 in
    case this is W2K12.
    If you use RSA and the same key size as with the Software Key Storage Provider I don't see any higher risk associated with that.
    Elke

  • Generate prov.xml for Creative Cloud. Return Code 27

    We're trying to follow this guide (Creative Cloud Help | Using Adobe Provisioning Toolkit Enterprise Edition) to serialize a package (or something). We're stuck on generating prov.xml. My best attempt at an entry is:
    C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\CCP\utilities\APTEE>adobe_prtk.exe --tool=VolumeSerialize --generate --serial=xxxx-xxxx-xxxx-xxxx-xxxx-xxxx --regsuppress=ss --eulasuppress --locales=en_US --provfilepath=C:\Program Fil
    es (x86)\Common Files\Adobe\OOBE\PDApp\CCP
    It says half of this is optional, but I'm skeptical.
    Anyway, I'm getting return code 27. This indicates that it is unable to edit the prov.xml file specified. I didn't specify a prov.xml file, I'm trying to make one. The syntax I'm using differs from what I found on the page I linked, as that was giving me syntax errors. I lifted this off someone else's code. I've tried just about every variation I can think of. Any help would be appreciated.
    This is on Windows

    One of these links may help
    http://helpx.adobe.com/creative-cloud/packager.html
    http://forums.adobe.com/community/download_install_setup/creative_suite_enterprise_deploym ent

  • Couldn't verify 'C:\Windows\ccmsetup\ccmsetup.cab' authenticode signature. Return code 0x80096001 - SCCM 2012 R2 Client Deployment

    Hi All,
    I installed SCCM 2012 R2 one primary site from one of our customer & using SQL 2012 SP1 DB at the back-end.
    Facing Issues while deploying agent  from one of our client machine - OS - window 7 Professional Sp1:
    ==========[ ccmsetup started in process 3828 ]==========
    ccmsetup 25-02-2014 02:20:37 PM
    284 (0x011C)
    Running on platform X86 ccmsetup
    25-02-2014 02:20:37 PM 284 (0x011C)
    Updated security on object C:\Windows\ccmsetup\cache\.
    ccmsetup 25-02-2014 02:20:37 PM
    284 (0x011C)
    Launch from folder C:\Windows\ccmsetup\ ccmsetup
    25-02-2014 02:20:37 PM 284 (0x011C)
    CcmSetup version: 5.0.7958.1000 ccmsetup
    25-02-2014 02:20:37 PM 284 (0x011C)
    Successfully started the ccmsetup service ccmsetup
    25-02-2014 02:20:37 PM 332 (0x014C)
    In ServiceMain ccmsetup
    25-02-2014 02:20:37 PM 1480 (0x05C8)
    Folder 'Microsoft\Configuration Manager' not found. Task does not exist.
    ccmsetup 25-02-2014 02:20:37 PM
    332 (0x014C)
    CcmSetup is exiting with return code 0 ccmsetup
    25-02-2014 02:20:37 PM 332 (0x014C)
    Running on 'Microsoft Windows 7 Professional ' (6.1.7601). Service Pack (1.0). SuiteMask = 272. Product Type = 18
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
    Ccmsetup command line: "C:\Windows\ccmsetup\ccmsetup.exe" /runservice "/config:C:\Windows\ccmsetup\MobileClientUnicode.tcf" "/RetryWinTask:1"
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
    Command line parameters for ccmsetup have been specified.  No registry lookup for command line parameters is required.
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
    Command line: "C:\Windows\ccmsetup\ccmsetup.exe" /runservice "/config:C:\Windows\ccmsetup\MobileClientUnicode.tcf" "/RetryWinTask:1"
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
    SslState value: 224 ccmsetup
    25-02-2014 02:20:37 PM 1480 (0x05C8)
    CCMHTTPPORT:    80 ccmsetup
    25-02-2014 02:20:37 PM 1480 (0x05C8)
    CCMHTTPSPORT:    443 ccmsetup
    25-02-2014 02:20:37 PM 1480 (0x05C8)
    CCMHTTPSSTATE:    480 ccmsetup
    25-02-2014 02:20:37 PM 1480 (0x05C8)
    CCMHTTPSCERTNAME:     ccmsetup
    25-02-2014 02:20:37 PM 1480 (0x05C8)
    FSP:    SCCM.MYDOMAIN.COM ccmsetup
    25-02-2014 02:20:37 PM 1480 (0x05C8)
    CCMCERTISSUERS:    CN=MYDOMAIN-CA-CA; DC=MYDOMAIN; DC=COM
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
    CCMFIRSTCERT:    1 ccmsetup
    25-02-2014 02:20:37 PM 1480 (0x05C8)
    Config file:      C:\Windows\ccmsetup\MobileClientUnicode.tcf
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
    Retry time:       10 minute(s)
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
    MSI log file:     C:\Windows\ccmsetup\Logs\client.msi.log
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
    MSI properties:    INSTALL="ALL" SMSSITECODE="PRI" CCMHTTPPORT="80" CCMHTTPSPORT="443" CCMHTTPSSTATE="480" FSP="SCCM.MYDOMAIN.COM" CCMCERTISSUERS="CN=MYDOMAIN-CA-CA; DC=MYDOMAIN; DC=COM"
    CCMFIRSTCERT="1" ccmsetup
    25-02-2014 02:20:37 PM 1480 (0x05C8)
    Source List: ccmsetup
    25-02-2014 02:20:37 PM 1480 (0x05C8)
                      \\SCCM.MYDOMAIN.COM\SMSClient
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
                      \\SCCMDMZ.MYDOMAIN.COM\SMSClient
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
                      \\SCCM.MYDOMAIN.COM\SMSClient
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
                      \\SCCMDMZ.MYDOMAIN.COM\SMSClient
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
    MPs: ccmsetup
    25-02-2014 02:20:37 PM 1480 (0x05C8)
                      SCCM.MYDOMAIN.COM
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
    No version of the client is currently detected.
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
    Folder 'Microsoft\Configuration Manager' not found. Task does not exist.
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
    Attempting #1 retry. Max 5 retries. ccmsetup
    25-02-2014 02:20:37 PM 1480 (0x05C8)
    Updated security on object C:\Windows\ccmsetup\.
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
    Sending Fallback Status Point message to 'SCCM.MYDOMAIN.COM', STATEID='100'.
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
    Failed to get client version for sending messages to FSP. Error 0x8004100e
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
    Params to send FSP message '5.0.7958.1000 Deployment '
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
    Request failed: 500 Internal Server Error
    FSPStateMessage
    25-02-2014 02:20:37 PM 1480 (0x05C8)
    Running as user "SYSTEM" ccmsetup
    25-02-2014 02:20:37 PM 1480 (0x05C8)
    Detected 69650 MB free disk space on system drive.
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
    Checking Write Filter Status. ccmsetup
    25-02-2014 02:20:37 PM 1480 (0x05C8)
    This is not a supported write filter device. We are not in a write filter maintenance mode.
    ccmsetup 25-02-2014 02:20:37 PM
    1480 (0x05C8)
    Performing AD query: '(&(ObjectCategory=mSSMSManagementPoint)(mSSMSDefaultMP=TRUE)(mSSMSSiteCode=PRI))'
    ccmsetup 25-02-2014 02:20:38 PM
    1480 (0x05C8)
    OperationalXml '<ClientOperationalSettings><Version>5.00.7958.1000</Version><SecurityConfiguration><SecurityModeMask>0</SecurityModeMask><SecurityModeMaskEx>448</SecurityModeMaskEx><HTTPPort>80</HTTPPort><HTTPSPort>443</HTTPSPort><CertificateStoreName></CertificateStoreName><CertificateIssuers>CN=MYDOMAIN-CA-CA;
    DC=MYDOMAIN; DC=COM</CertificateIssuers><CertificateSelectionCriteria></CertificateSelectionCriteria><CertificateSelectFirstFlag>1</CertificateSelectFirstFlag><SiteSigningCert>308202F2308201DAA00302010202105F02416299E5D1BC44A2DBB2F1CFDE39300D06092A864886F70D01010B05003016311430120603550403130B53697465205365727665723020170D3134303130363037333732365A180F32313133313231343037333732365A3016311430120603550403130B536974652053657276657230820122300D06092A864886F70D01010105000382010F003082010A0282010100B82EF14C5EEB69D726A3E24B3A2248ACC67667E2D4A4021792169437C5C2A03A35649F0FA3D01DC7FF3BB8668C30662B322A73562FA54EE19DF6A0533EBE895F0CA833E375CA2B8298C59C2372B05A61AF1F41360ED700508678AE2A4321F99DCE7C42139E9690009017A69568D59D2480E45EE724EF902757B66ACE24A8C1705B6628863F7C6DD9140B466F36FCB8FA891AF9F01BC1C94093EDE814D711ACB13F7067F69AD970DAF03AA58E1E5C943582B4B5D0B49BB99E7C1E51D76661BE0A4DEBA2FDF6121C7211A33E8E3092F9CFBECCD0EB9BDE2E1E83EB98F57DD905226B1693D1EEFDE826593D5538902C5292B119303CA02D41B11E762BCC1AF118630203010001A33A303830200603551D110419301782155343434D2E68656C70616765696E6469612E6F726730140603551D25040D300B06092B060104018237650B300D06092A864886F70D01010B05000382010100839328B4017E3317BD05E6D35022AFC1C0AA91E7B1EA838143B257BDAF9780B3C582547891FE4361E5D789B269C4E49CFDAA2E38E85AE7252980F392EC7378F482001909E92F752A6292AFF0FE9E9634B915A70CF3E5DECE35B272630B6CAF5A73FFF4928F847B63A35DF05E2B41F05AAD7C436B166AF6C157789FAA084BB5A38E0592F65F5C6D29588DF6B79B6A51AB6D6D2985FDB346FA88FDD36EE0DAF53603F2036371F7D6866F49A96AB9BE3ED757743033C7C3F97FDF772F699F38DB52775BD0B0090381F89B3D8AD2A49DC653991BCE031517F6BA61FCED45E23139CA01E32F61E865DBA2F5FF0E30403BFC7FEDE1892EE890B765C38FE2F06448FC58</SiteSigningCert></SecurityConfiguration><RootSiteCode>PRI</RootSiteCode><CCM>
    <CommandLine>SMSSITECODE=PRI</CommandLine> </CCM><FSP> <FSPServer>SCCM.MYDOMAIN.COM</FSPServer> </FSP><Capabilities SchemaVersion ="1.0"><Property Name="SSLState" Value="0" /></Capabilities><Domain
    Value="MYDOMAIN.COM" /><Forest Value="MYDOMAIN.COM" /></ClientOperationalSettings>'
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Unable to open Registry key Software\Microsoft\CCM. Return Code [80070002]. Client HTTPS state is Unknown.
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    The MP name retrieved is 'SCCM.MYDOMAIN.COM' with version '7958' and capabilities '<Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities>'
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    MP 'SCCM.MYDOMAIN.COM' is compatible ccmsetup
    25-02-2014 02:20:39 PM 1480 (0x05C8)
    Retrieved 1 MP records from AD for site 'PRI'
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Retrived site version '5.00.7958.1000' from AD for site 'PRI'
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    SiteCode:         PRI ccmsetup
    25-02-2014 02:20:39 PM 1480 (0x05C8)
    SiteVersion:      5.00.7958.1000
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Ccmsetup is being restarted due to an administrative action. Installation files will be reset and downloaded again.
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Only one MP SCCM.MYDOMAIN.COM is specified. Use it.
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Searching for DP locations from MP(s)... ccmsetup
    25-02-2014 02:20:39 PM 1480 (0x05C8)
    Current AD site of machine is Default-First-Site
    LocationServices 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Local Machine is joined to an AD domain LocationServices
    25-02-2014 02:20:39 PM 1480 (0x05C8)
    Current AD forest name is MYDOMAIN.COM, domain name is MYDOMAIN.COM
    LocationServices 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    DhcpGetOriginalSubnetMask entry point is supported.
    LocationServices 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Begin checking Alternate Network Configuration
    LocationServices 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Finished checking Alternate Network Configuration
    LocationServices 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Adapter {95A6D3CE-4F28-4E55-A29A-FF3F1A317C61} is DHCP enabled. Checking quarantine status.
    LocationServices 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Adapter {6024AB68-EB5E-4370-BD9E-8B2CEFE261A8} is DHCP enabled. Checking quarantine status.
    LocationServices 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Sending message body '<ContentLocationRequest SchemaVersion="1.00">
      <AssignedSite SiteCode="PRI"/>
      <ClientPackage/>
      <ClientLocationInfo LocationType="SMSPACKAGE" DistributeOnDemand="0" UseProtected="0" AllowCaching="0" BranchDPFlags="0" AllowHTTP="1" AllowSMB="0" AllowMulticast="0"
    UseInternetDP="0">
        <ADSite Name="Default-First-Site"/>
        <Forest Name="MYDOMAIN.COM"/>
        <Domain Name="MYDOMAIN.COM"/>
        <IPAddresses>
    <IPAddress SubnetAddress="10.0.0.0" Address="10.10.10.192"/>
        </IPAddresses>
      </ClientLocationInfo>
    </ContentLocationRequest>
    ' ccmsetup
    25-02-2014 02:20:39 PM 1480 (0x05C8)
    Sending message header '<Msg SchemaVersion="1.1"><ID>{F6331322-941A-4E44-974F-A755B1B016A4}</ID><SourceHost>POOJASETHI</SourceHost><TargetAddress>mp:[http]MP_LocationManager</TargetAddress><ReplyTo>direct:POOJASETHI:LS_ReplyLocations</ReplyTo><Priority>3</Priority><Timeout>600</Timeout><ReqVersion>5931</ReqVersion><TargetHost>SCCM.MYDOMAIN.COM</TargetHost><TargetEndpoint>MP_LocationManager</TargetEndpoint><ReplyMode>Sync</ReplyMode><Protocol>http</Protocol><SentTime>2014-02-25T08:50:39Z</SentTime><Body
    Type="ByteRange" Offset="0" Length="1126"/><Hooks><Hook3 Name="zlib-compress"/></Hooks><Payload Type="inline"/></Msg>'
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    CCM_POST 'HTTP://SCCM.MYDOMAIN.COM/ccm_system/request'
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Content boundary is '--aAbBcCdDv1234567890VxXyYzZ'
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Received header '<Msg SchemaVersion="1.1">
    <ID>{14ADB6F1-95C1-4EEF-B8BA-16CD020ACFCF}</ID>
    <SourceID>GUID:526CE573-6351-407E-AC2A-2C3927979AD9</SourceID>
    <SourceHost>SCCM</SourceHost>
    <TargetAddress>direct:POOJASETHI:LS_ReplyLocations</TargetAddress>
    <ReplyTo>MP_LocationManager</ReplyTo>
    <CorrelationID>{00000000-0000-0000-0000-000000000000}</CorrelationID>
    <Priority>3</Priority>
    <Timeout>600</Timeout>
    <Capabilities><Property Name="SSL" Version="1"/></Capabilities><ReplyCapabilities><AllowRegistrationReset>direct:SCCM:ClientRegistration</AllowRegistrationReset></ReplyCapabilities><TargetHost>POOJASETHI</TargetHost><TargetEndpoint>LS_ReplyLocations</TargetEndpoint><ReplyMode>Sync</ReplyMode><Protocol>https</Protocol><SentTime>2014-02-25T08:50:39Z</SentTime><Body
    Type="ByteRange" Offset="0" Length="3494"/><Hooks><Hook3 Name="zlib-compress"/><Hook Name="authenticate"><Property Name="Signature">3082018C06092A864886F70D010702A082017D30820179020101310B300906052B0E03021A0500300B06092A864886F70D01070131820158308201540201013031301D310D300B060355040313045343434D310C300A06035504031303534D530210165D06FED03B9DB94FE763D9360D9AC5300906052B0E03021A0500300D06092A864886F70D010101050004820100501708FC116FFF030AF508AA81D93086786D1E088F8729906DBFC42B6239C511CF34CB5AA9008B4356FA2D314EF43E85D8555A7D185888870EDC7A3D3700AA974B5246D59D9CC72614845768082F3AB463F2F92025D4505C1E8CBF243F6245E224EAE31091A18C9B0ADE6DEF3500DC599B04BDCE176EA49159D2947C84328F7BD2F0F6C93271F72F5826ED6717C19B5C36CDA9E1B02F9810F1D6B91659E9FD5DB25AFE155ECF86A3535A28ADE0B53505C20E69FB4A6406904299D60098B9756180BA3B6D742E3483F9FE0A45A8EC1611565377D8E6788E51057F7082339BF67771BAFC985C56784CE756BCB39C59E77071BCEE7352500B961D4509FC3EFE3828</Property><Property
    Name="AuthSenderMachine">SCCM;SCCM.MYDOMAIN.COM;</Property><Property Name="MPSiteCode">PRI</Property></Hook></Hooks><Payload Type="inline"/></Msg>'
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Received reply body '<ContentLocationReply SchemaVersion="1.00"><ContentInfo PackageFlags="16777216"><ContentHashValues/></ContentInfo><Sites><Site><MPSite SiteCode="PRI" MasterSiteCode="PRI"
    SiteLocality="LOCAL" IISPreferedPort="80" IISSSLPreferedPort="443"/><LocationRecords><LocationRecord><URL Name="http://SCCM.MYDOMAIN.COM/SMS_DP_SMSPKG$/PRI00003" Signature="http://SCCM.MYDOMAIN.COM/SMS_DP_SMSSIG$/PRI00003"/><ADSite
    Name="Default-First-Site"/><IPSubnets><IPSubnet Address="10.0.0.0"/><IPSubnet Address=""/></IPSubnets><Metric Value=""/><Version>7958</Version><Capabilities SchemaVersion="1.0"><Property
    Name="SSLState" Value="0"/></Capabilities><ServerRemoteName>SCCM.MYDOMAIN.COM</ServerRemoteName><DPType>SERVER</DPType><Windows Trust="1"/><Locality>LOCAL</Locality></LocationRecord><LocationRecord><URL
    Name="http://SCCMDMZ.MYDOMAIN.COM/SMS_DP_SMSPKG$/PRI00003" Signature="http://SCCMDMZ.MYDOMAIN.COM/SMS_DP_SMSSIG$/PRI00003"/><ADSite Name="Default-First-Site"/><IPSubnets><IPSubnet Address="172.16.10.0"/><IPSubnet
    Address=""/></IPSubnets><Metric Value=""/><Version>7958</Version><Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities><ServerRemoteName>SCCMDMZ.MYDOMAIN.COM</ServerRemoteName><DPType>SERVER</DPType><Windows
    Trust="1"/><Locality>FALLBACK</Locality></LocationRecord></LocationRecords></Site></Sites><ClientPackage FullPackageID="PRI00003" FullPackageVersion="1" FullPackageHash="BFC11E099E8F451107B43E0DBEFD93B01DB2D6453DA74F8A2CB94B73D676C1CD"
    MinimumClientVersion="5.00.7958.1000" RandomizeMaxDays="7" ProgramEnabled="false" LastModifiedTime="30354761;897103744" SiteVersionMatch="true" SiteVersion="5.00.7958.1000" EnablePeerCache="true"/><RelatedContentIDs/></ContentLocationReply>'
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Found local location 'http://SCCM.MYDOMAIN.COM/SMS_DP_SMSPKG$/PRI00003'
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Found remote location 'http://SCCMDMZ.MYDOMAIN.COM/SMS_DP_SMSPKG$/PRI00003'
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Discovered 1 local DP locations. ccmsetup
    25-02-2014 02:20:39 PM 1480 (0x05C8)
    PROPFIND 'http://SCCM.MYDOMAIN.COM/SMS_DP_SMSPKG$/PRI00003'
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Using DP location http://SCCM.MYDOMAIN.COM/SMS_DP_SMSPKG$/PRI00003
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    GET 'http://SCCM.MYDOMAIN.COM/SMS_DP_SMSPKG$/PRI00003/ccmsetup.cab'
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Couldn't verify 'C:\Windows\ccmsetup\ccmsetup.cab' authenticode signature. Return code 0x80096001
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Sending Fallback Status Point message to 'SCCM.MYDOMAIN.COM', STATEID='316'.
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Failed to get client version for sending messages to FSP. Error 0x8004100e
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Params to send FSP message '5.0.7958.1000 Deployment Error 0x80004005. Pre-req file name: C:\Windows\ccmsetup\ccmsetup.cab'
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Request failed: 500 Internal Server Error
    FSPStateMessage
    25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Failed to extract manifest cab file with error 0x80004005. Try next location.
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Enumerated all 1 local DP locations but none of them is good. Fallback to MP.
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    GET 'HTTP://SCCM.MYDOMAIN.COM/CCM_Client/ccmsetup.cab'
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    Couldn't verify 'C:\Windows\ccmsetup\ccmsetup.cab' authenticode signature. Return code 0x80096001
    ccmsetup 25-02-2014 02:20:39 PM
    1480 (0x05C8)
    CcmSetup failed with error code 0x80004005
    ccmsetup 25-02-2014 02:20:39 PM
    284 (0x011C)
    Please let me know any solution or workaround for this 
    Thanks Rahul$

    Hi,
    The client cannot verify the signature of ccmsetup.cab. I suggest you check the Trusted Root Certification Authorities in certificate store on the client to see whether a certificate is missing.
    Try to enable verbose logging for SCCM client installation. Then check the log to see whether there are some useful information.(http://technet.microsoft.com/en-us/library/gg699356.aspx)  
    Best Regards,
    Joyce Li
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Command return code of 255 (65280) during Grid Infrastructure Installation

    I am trying to create a 2-node RAC 11gR2. I am using OEL 5 Update 4. I am using NFS as shared storage. The time on both node is same. Both nodes have 4GB RAM each. Following is my IP settings from /etc/hosts on both nodes:
    [oracle@vis ~]$ cat /etc/hosts
    # Do not remove the following line, or various programs
    # that require network functionality will fail.
    127.0.0.1 localhost.localdomain localhost
    # Public
    10.8.5.191 vis.awc.com vis
    10.8.5.192 vsstest.awc.com vsstest
    #Private
    192.168.0.101 vis-priv.awc.com vis-priv
    192.168.0.102 vsstest-priv.awc.com vsstest-priv
    #Virtual
    10.8.5.166 vis-vip.awc.com vis-vip
    10.8.5.170 vsstest-vip.awc.com vsstest-vip
    # SCAN
    10.8.5.182 rac-scan.awc.com rac-scan
    #NAS
    192.168.0.101 nas1.awc.com nas1
    I am getting error during the Grid Infrastructure installation, when I run the root.sh script through root. Following is the logfile showing the error (/u01/app/11.2.0/grid/cfgtoollogs/crsconfig/rootcrs_vis.log):
    2010-02-02 11:58:05: The configuration parameter file /u01/app/11.2.0/grid/crs/install/crsconfig_params is valid
    2010-02-02 11:58:05: Checking for super user privileges
    2010-02-02 11:58:05: User has super user privileges
    2010-02-02 11:58:05: ### Printing the configuration values from files:
    2010-02-02 11:58:05: /u01/app/11.2.0/grid/crs/install/crsconfig_params
    2010-02-02 11:58:05: /u01/app/11.2.0/grid/crs/install/s_crsconfig_defs
    2010-02-02 11:58:05: ASM_DISCOVERY_STRING=
    2010-02-02 11:58:05: ASM_DISKS=
    2010-02-02 11:58:05: ASM_DISK_GROUP=
    2010-02-02 11:58:05: ASM_REDUNDANCY=
    2010-02-02 11:58:05: ASM_SPFILE=
    2010-02-02 11:58:05: ASM_UPGRADE=false
    2010-02-02 11:58:05: CLSCFG_MISSCOUNT=
    2010-02-02 11:58:05: CLUSTER_GUID=
    2010-02-02 11:58:05: CLUSTER_NAME=rac-scan
    2010-02-02 11:58:05: CRS_NODEVIPS='vis-vip/255.248.0.0/eth0,vsstest-vip/255.248.0.0/eth0'
    2010-02-02 11:58:05: CRS_STORAGE_OPTION=2
    2010-02-02 11:58:05: CSS_LEASEDURATION=400
    2010-02-02 11:58:05: DIRPREFIX=
    2010-02-02 11:58:05: DISABLE_OPROCD=0
    2010-02-02 11:58:05: EMBASEJAR_NAME=oemlt.jar
    2010-02-02 11:58:05: EWTJAR_NAME=ewt3.jar
    2010-02-02 11:58:05: EXTERNAL_ORACLE_BIN=/opt/oracle/bin
    2010-02-02 11:58:05: GNS_ADDR_LIST=
    2010-02-02 11:58:05: GNS_ALLOW_NET_LIST=
    2010-02-02 11:58:05: GNS_CONF=false
    2010-02-02 11:58:05: GNS_DENY_ITF_LIST=
    2010-02-02 11:58:05: GNS_DENY_NET_LIST=
    2010-02-02 11:58:05: GNS_DOMAIN_LIST=
    2010-02-02 11:58:05: GPNPCONFIGDIR=/u01/app/11.2.0/grid
    2010-02-02 11:58:05: GPNPGCONFIGDIR=/u01/app/11.2.0/grid
    2010-02-02 11:58:05: GPNP_PA=
    2010-02-02 11:58:05: HELPJAR_NAME=help4.jar
    2010-02-02 11:58:05: HOST_NAME_LIST=vis,vsstest
    2010-02-02 11:58:05: ID=/etc/init.d
    2010-02-02 11:58:05: INIT=/sbin/init
    2010-02-02 11:58:05: IT=/etc/inittab
    2010-02-02 11:58:05: JEWTJAR_NAME=jewt4.jar
    2010-02-02 11:58:05: JLIBDIR=/u01/app/11.2.0/grid/jlib
    2010-02-02 11:58:05: JREDIR=/u01/app/11.2.0/grid/jdk/jre/
    2010-02-02 11:58:06: LANGUAGE_ID=AMERICAN_AMERICA.AL32UTF8
    2010-02-02 11:58:06: MSGFILE=/var/adm/messages
    2010-02-02 11:58:06: NETCFGJAR_NAME=netcfg.jar
    2010-02-02 11:58:06: NETWORKS="eth0"/10.8.0.0:public,"eth1"/192.168.0.0:cluster_interconnect
    2010-02-02 11:58:06: NEW_HOST_NAME_LIST=
    2010-02-02 11:58:06: NEW_NODEVIPS='vis-vip/255.248.0.0/eth0,vsstest-vip/255.248.0.0/eth0'
    2010-02-02 11:58:06: NEW_NODE_NAME_LIST=
    2010-02-02 11:58:06: NEW_PRIVATE_NAME_LIST=
    2010-02-02 11:58:06: NODELIST=vis,vsstest
    2010-02-02 11:58:06: NODE_NAME_LIST=vis,vsstest
    2010-02-02 11:58:06: OCFS_CONFIG=
    2010-02-02 11:58:06: OCRCONFIG=/etc/oracle/ocr.loc
    2010-02-02 11:58:06: OCRCONFIGDIR=/etc/oracle
    2010-02-02 11:58:06: OCRID=
    2010-02-02 11:58:06: OCRLOC=ocr.loc
    2010-02-02 11:58:06: OCR_LOCATIONS=/u01/shared_config/ocr_configuration
    2010-02-02 11:58:06: OLASTGASPDIR=/etc/oracle/lastgasp
    2010-02-02 11:58:06: OLRCONFIG=/etc/oracle/olr.loc
    2010-02-02 11:58:06: OLRCONFIGDIR=/etc/oracle
    2010-02-02 11:58:06: OLRLOC=olr.loc
    2010-02-02 11:58:06: OPROCDCHECKDIR=/etc/oracle/oprocd/check
    2010-02-02 11:58:06: OPROCDDIR=/etc/oracle/oprocd
    2010-02-02 11:58:06: OPROCDFATALDIR=/etc/oracle/oprocd/fatal
    2010-02-02 11:58:06: OPROCDSTOPDIR=/etc/oracle/oprocd/stop
    2010-02-02 11:58:06: ORACLE_BASE=/u01/app/oracle
    2010-02-02 11:58:06: ORACLE_HOME=/u01/app/11.2.0/grid
    2010-02-02 11:58:06: ORACLE_OWNER=oracle
    2010-02-02 11:58:06: ORA_ASM_GROUP=dba
    2010-02-02 11:58:06: ORA_DBA_GROUP=oinstall
    2010-02-02 11:58:06: PRIVATE_NAME_LIST=
    2010-02-02 11:58:06: RCALLDIR=/etc/rc.d/rc0.d /etc/rc.d/rc1.d /etc/rc.d/rc2.d /etc/rc.d/rc3.d /etc/rc.d/rc4.d /etc/rc.d/rc5.d /etc/rc.d/rc6.d
    2010-02-02 11:58:06: RCKDIR=/etc/rc.d/rc0.d /etc/rc.d/rc1.d /etc/rc.d/rc2.d /etc/rc.d/rc4.d /etc/rc.d/rc6.d
    2010-02-02 11:58:06: RCSDIR=/etc/rc.d/rc3.d /etc/rc.d/rc5.d
    2010-02-02 11:58:06: RC_KILL=K19
    2010-02-02 11:58:06: RC_KILL_OLD=K96
    2010-02-02 11:58:06: RC_START=S96
    2010-02-02 11:58:06: SCAN_NAME=rac-scan.awc.com
    2010-02-02 11:58:06: SCAN_PORT=1521
    2010-02-02 11:58:06: SCRBASE=/etc/oracle/scls_scr
    2010-02-02 11:58:06: SHAREJAR_NAME=share.jar
    2010-02-02 11:58:06: SILENT=false
    2010-02-02 11:58:06: SO_EXT=so
    2010-02-02 11:58:06: SRVCFGLOC=srvConfig.loc
    2010-02-02 11:58:06: SRVCONFIG=/var/opt/oracle/srvConfig.loc
    2010-02-02 11:58:06: SRVCONFIGDIR=/var/opt/oracle
    2010-02-02 11:58:06: VNDR_CLUSTER=false
    2010-02-02 11:58:06: VOTING_DISKS=/u01/shared_config/voting_disk
    2010-02-02 11:58:06: ### Printing other configuration values ###
    2010-02-02 11:58:06: CLSCFG_EXTRA_PARMS=
    2010-02-02 11:58:06: CRSDelete=0
    2010-02-02 11:58:06: CRSPatch=0
    2010-02-02 11:58:06: DEBUG=
    2010-02-02 11:58:06: DOWNGRADE=
    2010-02-02 11:58:06: HAS_GROUP=oinstall
    2010-02-02 11:58:06: HAS_USER=root
    2010-02-02 11:58:06: HOST=vis
    2010-02-02 11:58:07: IS_SIHA=0
    2010-02-02 11:58:07: OLR_DIRECTORY=/u01/app/11.2.0/grid/cdata
    2010-02-02 11:58:07: OLR_LOCATION=/u01/app/11.2.0/grid/cdata/vis.olr
    2010-02-02 11:58:07: ORA_CRS_HOME=/u01/app/11.2.0/grid
    2010-02-02 11:58:07: SUPERUSER=root
    2010-02-02 11:58:07: UPGRADE=
    2010-02-02 11:58:07: VF_DISCOVERY_STRING=/u01/shared_config/voting_disk
    2010-02-02 11:58:07: addfile=/u01/app/11.2.0/grid/crs/install/crsconfig_addparams
    2010-02-02 11:58:07: crscfg_trace=1
    2010-02-02 11:58:07: crscfg_trace_file=/u01/app/11.2.0/grid/cfgtoollogs/crsconfig/rootcrs_vis.log
    2010-02-02 11:58:07: hosts=
    2010-02-02 11:58:07: oldcrshome=
    2010-02-02 11:58:07: oldcrsver=
    2010-02-02 11:58:07: osdfile=/u01/app/11.2.0/grid/crs/install/s_crsconfig_defs
    2010-02-02 11:58:07: parameters_valid=1
    2010-02-02 11:58:07: paramfile=/u01/app/11.2.0/grid/crs/install/crsconfig_params
    2010-02-02 11:58:07: platform_family=unix
    2010-02-02 11:58:07: srvctl_trc_suff=0
    2010-02-02 11:58:07: unlock_crshome=
    2010-02-02 11:58:07: user_is_superuser=1
    2010-02-02 11:58:07: ### Printing of configuration values complete ###
    2010-02-02 11:58:07: Oracle CRS stack is not configured yet
    2010-02-02 11:58:07: CRS is not yet configured. Hence, will proceed to configure CRS
    2010-02-02 11:58:07: Cluster-wide one-time actions... Done!
    2010-02-02 11:58:17: set owner/group of OCR path
    2010-02-02 11:58:17: Oracle CRS home = /u01/app/11.2.0/grid
    2010-02-02 11:58:17: Host name = vis
    2010-02-02 11:58:17: CRS user = oracle
    2010-02-02 11:58:17: Oracle CRS home = /u01/app/11.2.0/grid
    2010-02-02 11:58:17: GPnP host = vis
    2010-02-02 11:58:17: Oracle GPnP home = /u01/app/11.2.0/grid/gpnp
    2010-02-02 11:58:17: Oracle GPnP local home = /u01/app/11.2.0/grid/gpnp/vis
    2010-02-02 11:58:17: GPnP directories verified.
    2010-02-02 11:58:17: Checking to see if Oracle CRS stack is already configured
    2010-02-02 11:58:17: Oracle CRS stack is not configured yet
    2010-02-02 11:58:17: ---Checking local gpnp setup...
    2010-02-02 11:58:18: The setup file "/u01/app/11.2.0/grid/gpnp/vis/profiles/peer/profile.xml" does not exist
    2010-02-02 11:58:18: The setup file "/u01/app/11.2.0/grid/gpnp/vis/wallets/peer/cwallet.sso" does not exist
    2010-02-02 11:58:18: The setup file "/u01/app/11.2.0/grid/gpnp/vis/wallets/prdr/cwallet.sso" does not exist
    2010-02-02 11:58:18: chk gpnphome /u01/app/11.2.0/grid/gpnp/vis: profile_ok 0 wallet_ok 0 r/o_wallet_ok 0
    2010-02-02 11:58:18: chk gpnphome /u01/app/11.2.0/grid/gpnp/vis: INVALID (bad profile/wallet)
    2010-02-02 11:58:18: ---Checking cluster-wide gpnp setup...
    2010-02-02 11:58:18: The setup file "/u01/app/11.2.0/grid/gpnp/profiles/peer/profile.xml" does not exist
    2010-02-02 11:58:18: The setup file "/u01/app/11.2.0/grid/gpnp/wallets/peer/cwallet.sso" does not exist
    2010-02-02 11:58:18: The setup file "/u01/app/11.2.0/grid/gpnp/wallets/prdr/cwallet.sso" does not exist
    2010-02-02 11:58:18: chk gpnphome /u01/app/11.2.0/grid/gpnp: profile_ok 0 wallet_ok 0 r/o_wallet_ok 0
    2010-02-02 11:58:18: chk gpnphome /u01/app/11.2.0/grid/gpnp: INVALID (bad profile/wallet)
    2010-02-02 11:58:18: gpnp setup checked: local valid? 0 cluster-wide valid? 0
    2010-02-02 11:58:18: gpnp setup: NONE
    2010-02-02 11:58:18: GPNP configuration required
    2010-02-02 11:58:18: Validating for SI-CSS configuration
    2010-02-02 11:58:18: Retrieving OCR main disk location
    2010-02-02 11:58:18: Opening file OCRCONFIG
    2010-02-02 11:58:18: Value () is set for key=ocrconfig_loc
    2010-02-02 11:58:18: Unable to retrieve ocr disk info
    2010-02-02 11:58:18: Checking to see if any 9i GSD is up
    2010-02-02 11:58:18: libskgxnBase_lib = /etc/ORCLcluster/oracm/lib/libskgxn2.so
    2010-02-02 11:58:18: libskgxn_lib = /opt/ORCLcluster/lib/libskgxn2.so
    2010-02-02 11:58:18: SKGXN library file does not exists
    2010-02-02 11:58:18: OLR location = /u01/app/11.2.0/grid/cdata/vis.olr
    2010-02-02 11:58:18: Oracle CRS Home = /u01/app/11.2.0/grid
    2010-02-02 11:58:18: Validating /etc/oracle/olr.loc file for OLR location /u01/app/11.2.0/grid/cdata/vis.olr
    2010-02-02 11:58:18: /etc/oracle/olr.loc already exists. Backing up /etc/oracle/olr.loc to /etc/oracle/olr.loc.orig
    2010-02-02 11:58:18: Oracle CRS home = /u01/app/11.2.0/grid
    2010-02-02 11:58:18: Oracle cluster name = rac-scan
    2010-02-02 11:58:18: OCR locations = /u01/shared_config/ocr_configuration
    2010-02-02 11:58:18: Validating OCR
    2010-02-02 11:58:18: Retrieving OCR location used by previous installations
    2010-02-02 11:58:18: Opening file OCRCONFIG
    2010-02-02 11:58:18: Value () is set for key=ocrconfig_loc
    2010-02-02 11:58:18: Opening file OCRCONFIG
    2010-02-02 11:58:18: Value () is set for key=ocrmirrorconfig_loc
    2010-02-02 11:58:18: Opening file OCRCONFIG
    2010-02-02 11:58:18: Value () is set for key=ocrconfig_loc3
    2010-02-02 11:58:18: Opening file OCRCONFIG
    2010-02-02 11:58:18: Value () is set for key=ocrconfig_loc4
    2010-02-02 11:58:18: Opening file OCRCONFIG
    2010-02-02 11:58:18: Value () is set for key=ocrconfig_loc5
    2010-02-02 11:58:18: Checking if OCR sync file exists
    2010-02-02 11:58:18: No need to sync OCR file
    2010-02-02 11:58:18: OCR_LOCATION=/u01/shared_config/ocr_configuration
    2010-02-02 11:58:18: OCR_MIRROR_LOCATION=
    2010-02-02 11:58:18: OCR_MIRROR_LOC3=
    2010-02-02 11:58:18: OCR_MIRROR_LOC4=
    2010-02-02 11:58:19: OCR_MIRROR_LOC5=
    2010-02-02 11:58:19: Current OCR location=
    2010-02-02 11:58:19: Current OCR mirror location=
    2010-02-02 11:58:19: Current OCR mirror loc3=
    2010-02-02 11:58:19: Current OCR mirror loc4=
    2010-02-02 11:58:19: Current OCR mirror loc5=
    2010-02-02 11:58:19: Verifying current OCR settings with user entered values
    2010-02-02 11:58:19: Setting OCR locations in /etc/oracle/ocr.loc
    2010-02-02 11:58:19: Validating OCR locations in /etc/oracle/ocr.loc
    2010-02-02 11:58:19: Checking for existence of /etc/oracle/ocr.loc
    2010-02-02 11:58:19: Backing up /etc/oracle/ocr.loc to /etc/oracle/ocr.loc.orig
    2010-02-02 11:58:19: Setting ocr location /u01/shared_config/ocr_configuration
    2010-02-02 11:58:19: Creating or upgrading Oracle Local Registry (OLR)
    2010-02-02 11:58:20: OLR successfully created or upgraded
    2010-02-02 11:58:20: /u01/app/11.2.0/grid/bin/clscfg -localadd
    2010-02-02 11:58:21: Keys created in the OLR successfully
    2010-02-02 11:58:21: GPnP setup state: none
    2010-02-02 11:58:21: Creating local GPnP setup for clustered node...
    2010-02-02 11:58:21: Oracle CRS home = /u01/app/11.2.0/grid
    2010-02-02 11:58:21: Oracle GPnP wallets home = /u01/app/11.2.0/grid/gpnp/vis/wallets
    2010-02-02 11:58:21: Checking if GPnP setup exists
    2010-02-02 11:58:21: /u01/app/11.2.0/grid/gpnp/vis/wallets/peer/cwallet.sso wallet must be created
    2010-02-02 11:58:21: Removing old wallets/certificates, if any
    2010-02-02 11:58:21: Creating GPnP Root Wallet...
    2010-02-02 11:58:21: /u01/app/11.2.0/grid/bin/orapki wallet create -wallet "/u01/app/11.2.0/grid/gpnp/vis/wallets/root" -pwd gpnp_wallet1 -nologo
    2010-02-02 11:58:22: Creating GPnP Root Certificate...
    2010-02-02 11:58:22: /u01/app/11.2.0/grid/bin/orapki wallet add -wallet "/u01/app/11.2.0/grid/gpnp/vis/wallets/root" -pwd gpnp_wallet1 -self_signed -dn "CN=GPnP_root" -keysize 1024 -validity 9999 -nologo
    2010-02-02 11:58:24: Exporting GPnP Root Certificate...
    2010-02-02 11:58:24: /u01/app/11.2.0/grid/bin/orapki wallet export -wallet "/u01/app/11.2.0/grid/gpnp/vis/wallets/root" -pwd gpnp_wallet1 -dn "CN=GPnP_root" -cert "/u01/app/11.2.0/grid/gpnp/vis/wallets/root/b64certificate.txt" -nologo
    2010-02-02 11:58:25: Creating GPnP Peer Wallet...
    2010-02-02 11:58:25: /u01/app/11.2.0/grid/bin/orapki wallet create -wallet "/u01/app/11.2.0/grid/gpnp/vis/wallets/peer" -pwd gpnp_wallet1 -auto_login -nologo
    2010-02-02 11:58:25: Creating GPnP Profile Reader Wallet...
    2010-02-02 11:58:25: /u01/app/11.2.0/grid/bin/orapki wallet create -wallet "/u01/app/11.2.0/grid/gpnp/vis/wallets/prdr" -pwd gpnp_wallet1 -auto_login -nologo
    2010-02-02 11:58:26: Creating GPnP PA Wallet...
    2010-02-02 11:58:26: /u01/app/11.2.0/grid/bin/orapki wallet create -wallet "/u01/app/11.2.0/grid/gpnp/vis/wallets/pa" -pwd gpnp_wallet1 -auto_login -nologo
    2010-02-02 11:58:27: Adding private key to GPnP Peer Wallet...
    2010-02-02 11:58:27: /u01/app/11.2.0/grid/bin/orapki wallet add -wallet "/u01/app/11.2.0/grid/gpnp/vis/wallets/peer" -pwd gpnp_wallet1 -dn "CN=GPnP_peer" -keysize 1024 -nologo
    2010-02-02 11:58:28: Adding private key to GPnP PA Wallet...
    2010-02-02 11:58:28: /u01/app/11.2.0/grid/bin/orapki wallet add -wallet "/u01/app/11.2.0/grid/gpnp/vis/wallets/pa" -pwd gpnp_wallet1 -dn "CN=GPnP_pa" -keysize 1024 -nologo
    2010-02-02 11:58:29: Creating certificate request for GPnP Peer Wallet...
    2010-02-02 11:58:29: /u01/app/11.2.0/grid/bin/orapki wallet export -wallet "/u01/app/11.2.0/grid/gpnp/vis/wallets/peer" -pwd gpnp_wallet1 -dn "CN=GPnP_peer" -request "/u01/app/11.2.0/grid/gpnp/vis/wallets/peer/certreq.txt" -nologo
    2010-02-02 11:58:30: Creating certificate request for GPnP PA Wallet...
    2010-02-02 11:58:30: /u01/app/11.2.0/grid/bin/orapki wallet export -wallet "/u01/app/11.2.0/grid/gpnp/vis/wallets/pa" -pwd gpnp_wallet1 -dn "CN=GPnP_pa" -request "/u01/app/11.2.0/grid/gpnp/vis/wallets/pa/certreq.txt" -nologo
    2010-02-02 11:58:31: Creating certificate for GPnP Peer Wallet...
    2010-02-02 11:58:31: /u01/app/11.2.0/grid/bin/orapki cert create -wallet "/u01/app/11.2.0/grid/gpnp/vis/wallets/root" -pwd gpnp_wallet1 -request "/u01/app/11.2.0/grid/gpnp/vis/wallets/peer/certreq.txt" -cert "/u01/app/11.2.0/grid/gpnp/vis/wallets/peer/cert.txt" -validity 9999 -nologo
    2010-02-02 11:58:32: Creating certificate for GPnP PA Wallet...
    2010-02-02 11:58:32: /u01/app/11.2.0/grid/bin/orapki cert create -wallet "/u01/app/11.2.0/grid/gpnp/vis/wallets/root" -pwd gpnp_wallet1 -request "/u01/app/11.2.0/grid/gpnp/vis/wallets/pa/certreq.txt" -cert "/u01/app/11.2.0/grid/gpnp/vis/wallets/pa/cert.txt" -validity 9999 -nologo
    2010-02-02 11:58:33: Adding Root Certificate TP to GPnP Peer Wallet...
    2010-02-02 11:58:33: /u01/app/11.2.0/grid/bin/orapki wallet add -wallet "/u01/app/11.2.0/grid/gpnp/vis/wallets/peer" -pwd gpnp_wallet1 -trusted_cert -cert "/u01/app/11.2.0/grid/gpnp/vis/wallets/root/b64certificate.txt" -nologo
    2010-02-02 11:58:34: Adding Root Certificate TP to GPnP Profile Reader Wallet...
    2010-02-02 11:58:34: /u01/app/11.2.0/grid/bin/orapki wallet add -wallet "/u01/app/11.2.0/grid/gpnp/vis/wallets/prdr" -pwd gpnp_wallet1 -trusted_cert -cert "/u01/app/11.2.0/grid/gpnp/vis/wallets/root/b64certificate.txt" -nologo
    2010-02-02 11:58:34: Adding Root Certificate TP to GPnP PA Wallet...
    2010-02-02 11:58:34: /u01/app/11.2.0/grid/bin/orapki wallet add -wallet "/u01/app/11.2.0/grid/gpnp/vis/wallets/pa" -pwd gpnp_wallet1 -trusted_cert -cert "/u01/app/11.2.0/grid/gpnp/vis/wallets/root/b64certificate.txt" -nologo
    2010-02-02 11:58:35: Adding PA Certificate as a TP into a GPnP Peer Wallet...
    2010-02-02 11:58:35: /u01/app/11.2.0/grid/bin/orapki wallet add -wallet "/u01/app/11.2.0/grid/gpnp/vis/wallets/peer" -pwd gpnp_wallet1 -trusted_cert -cert "/u01/app/11.2.0/grid/gpnp/vis/wallets/pa/cert.txt" -nologo
    2010-02-02 11:58:36: Adding peer Certificate as a TP into a GPnP PA Wallet...
    2010-02-02 11:58:36: /u01/app/11.2.0/grid/bin/orapki wallet add -wallet "/u01/app/11.2.0/grid/gpnp/vis/wallets/pa" -pwd gpnp_wallet1 -trusted_cert -cert "/u01/app/11.2.0/grid/gpnp/vis/wallets/peer/cert.txt" -nologo
    2010-02-02 11:58:37: Adding PA Certificate as a TP into a GPnP Profile Reader Wallet...
    2010-02-02 11:58:37: /u01/app/11.2.0/grid/bin/orapki wallet add -wallet "/u01/app/11.2.0/grid/gpnp/vis/wallets/prdr" -pwd gpnp_wallet1 -trusted_cert -cert "/u01/app/11.2.0/grid/gpnp/vis/wallets/pa/cert.txt" -nologo
    2010-02-02 11:58:38: Adding peer Certificate as a TP into a GPnP Profile Reader Wallet...
    2010-02-02 11:58:38: /u01/app/11.2.0/grid/bin/orapki wallet add -wallet "/u01/app/11.2.0/grid/gpnp/vis/wallets/prdr" -pwd gpnp_wallet1 -trusted_cert -cert "/u01/app/11.2.0/grid/gpnp/vis/wallets/peer/cert.txt" -nologo
    2010-02-02 11:58:39: Adding PA Certificate as a TP into a GPnP Peer Wallet...
    2010-02-02 11:58:39: /u01/app/11.2.0/grid/bin/orapki wallet add -wallet "/u01/app/11.2.0/grid/gpnp/vis/wallets/peer" -pwd gpnp_wallet1 -user_cert -cert "/u01/app/11.2.0/grid/gpnp/vis/wallets/peer/cert.txt" -nologo
    2010-02-02 11:58:40: Adding peer Certificate as a TP into a GPnP PA Wallet...
    2010-02-02 11:58:40: /u01/app/11.2.0/grid/bin/orapki wallet add -wallet "/u01/app/11.2.0/grid/gpnp/vis/wallets/pa" -pwd gpnp_wallet1 -user_cert -cert "/u01/app/11.2.0/grid/gpnp/vis/wallets/pa/cert.txt" -nologo
    2010-02-02 11:58:41: GPnP Wallets ownership/permissions successfully set.
    2010-02-02 11:58:41: GPnP Wallets successfully created.
    2010-02-02 11:58:41: <--- GPnP wallets successfully created
    2010-02-02 11:58:41: Creating GPnP peer profile --->
    2010-02-02 11:58:41: Oracle CRS home = /u01/app/11.2.0/grid
    2010-02-02 11:58:41: Oracle GPnP profiles home = /u01/app/11.2.0/grid/gpnp/vis/profiles
    2010-02-02 11:58:41: Oracle GPnP profiles parameters:
    2010-02-02 11:58:41: paloc==
    2010-02-02 11:58:41: cname=rac-scan=
    2010-02-02 11:58:41: cssdisco=/u01/shared_config/voting_disk=
    2010-02-02 11:58:41: cssld=400=
    2010-02-02 11:58:41: asmdisco==
    2010-02-02 11:58:41: asmspf==
    2010-02-02 11:58:41: netlst="eth0"/10.8.0.0:public,"eth1"/192.168.0.0:cluster_interconnect=
    2010-02-02 11:58:41: ocrid==
    2010-02-02 11:58:41: clusterguid==
    2010-02-02 11:58:41: Checking if GPnP setup exists
    2010-02-02 11:58:41: /u01/app/11.2.0/grid/gpnp/vis/profiles/peer/profile.xml profile must be created
    2010-02-02 11:58:41: OCRID is not available, hence not set in GPnP Profile
    2010-02-02 11:58:42: ClusterGUID is not available, hence not set in GPnP Profile
    2010-02-02 11:58:42: gpnptool: run /u01/app/11.2.0/grid/bin/gpnptool create -o="/u01/app/11.2.0/grid/gpnp/vis/profiles/peer/profile.xml" -ovr -prf -prf_sq=1 -prf_cn=rac-scan -prf_pa="" -hnet=gen -gen:hnet_nm="*" -gen:net=net1 -net1:net_ip="10.8.0.0" -net1:net_ada="eth0" -net1:net_use="public" -gen:net=net2 -net2:net_ip="192.168.0.0" -net2:net_ada="eth1" -net2:net_use="cluster_interconnect" -css=css -css:css_dis="/u01/shared_config/voting_disk" -css:css_ld=400 -asm=asm -asm:asm_dis="++no-value-at-profile-creation--never-updated-through-ASM++" -asm:asm_spf=""
    2010-02-02 11:58:42: Running as user oracle: /u01/app/11.2.0/grid/bin/gpnptool create -o="/u01/app/11.2.0/grid/gpnp/vis/profiles/peer/profile.xml" -ovr -prf -prf_sq=1 -prf_cn=rac-scan -prf_pa="" -hnet=gen -gen:hnet_nm="*" -gen:net=net1 -net1:net_ip="10.8.0.0" -net1:net_ada="eth0" -net1:net_use="public" -gen:net=net2 -net2:net_ip="192.168.0.0" -net2:net_ada="eth1" -net2:net_use="cluster_interconnect" -css=css -css:css_dis="/u01/shared_config/voting_disk" -css:css_ld=400 -asm=asm -asm:asm_dis="++no-value-at-profile-creation--never-updated-through-ASM++" -asm:asm_spf=""
    2010-02-02 11:58:42: s_run_as_user2: Running /bin/su oracle -c ' /u01/app/11.2.0/grid/bin/gpnptool create -o="/u01/app/11.2.0/grid/gpnp/vis/profiles/peer/profile.xml" -ovr -prf -prf_sq=1 -prf_cn=rac-scan -prf_pa="" -hnet=gen -gen:hnet_nm="*" -gen:net=net1 -net1:net_ip="10.8.0.0" -net1:net_ada="eth0" -net1:net_use="public" -gen:net=net2 -net2:net_ip="192.168.0.0" -net2:net_ada="eth1" -net2:net_use="cluster_interconnect" -css=css -css:css_dis="/u01/shared_config/voting_disk" -css:css_ld=400 -asm=asm -asm:asm_dis="++no-value-at-profile-creation--never-updated-through-ASM++" -asm:asm_spf="" '
    2010-02-02 11:58:42: Removing file /tmp/fileXUKYkK
    2010-02-02 11:58:42: Successfully removed file: /tmp/fileXUKYkK
    2010-02-02 11:58:42: /bin/su successfully executed
    2010-02-02 11:58:42: gpnptool: rc=0
    2010-02-02 11:58:42: gpnptool output:
    Resulting profile written to "/u01/app/11.2.0/grid/gpnp/vis/profiles/peer/profile.xml".
    Success.
    2010-02-02 11:58:42: gpnptool: run /u01/app/11.2.0/grid/bin/gpnptool sign -p="/u01/app/11.2.0/grid/gpnp/vis/profiles/peer/profile.xml" -o="/u01/app/11.2.0/grid/gpnp/vis/profiles/peer/profile.xml" -ovr -w="file:/u01/app/11.2.0/grid/gpnp/vis/wallets/peer" -rmws
    2010-02-02 11:58:42: Running as user oracle: /u01/app/11.2.0/grid/bin/gpnptool sign -p="/u01/app/11.2.0/grid/gpnp/vis/profiles/peer/profile.xml" -o="/u01/app/11.2.0/grid/gpnp/vis/profiles/peer/profile.xml" -ovr -w="file:/u01/app/11.2.0/grid/gpnp/vis/wallets/peer" -rmws
    2010-02-02 11:58:42: s_run_as_user2: Running /bin/su oracle -c ' /u01/app/11.2.0/grid/bin/gpnptool sign -p="/u01/app/11.2.0/grid/gpnp/vis/profiles/peer/profile.xml" -o="/u01/app/11.2.0/grid/gpnp/vis/profiles/peer/profile.xml" -ovr -w="file:/u01/app/11.2.0/grid/gpnp/vis/wallets/peer" -rmws '
    2010-02-02 11:58:43: Removing file /tmp/file4E7Vnj
    2010-02-02 11:58:43: Successfully removed file: /tmp/file4E7Vnj
    2010-02-02 11:58:43: /bin/su successfully executed
    2010-02-02 11:58:43: gpnptool: rc=0
    2010-02-02 11:58:43: gpnptool output:
    Resulting profile written to "/u01/app/11.2.0/grid/gpnp/vis/profiles/peer/profile.xml".
    Success.
    2010-02-02 11:58:43: GPnP peer profile create successfully completed.
    2010-02-02 11:58:43: <--- GPnP peer profile successfully created
    2010-02-02 11:58:43: GPnP local setup successfully created
    2010-02-02 11:58:43: Registering ohasd
    2010-02-02 11:58:43: init file = /u01/app/11.2.0/grid/crs/init/init.ohasd
    2010-02-02 11:58:43: Copying file /u01/app/11.2.0/grid/crs/init/init.ohasd to /etc/init.d directory
    2010-02-02 11:58:43: Setting init.ohasd permission in /etc/init.d directory
    2010-02-02 11:58:43: init file = /u01/app/11.2.0/grid/crs/init/ohasd
    2010-02-02 11:58:43: Copying file /u01/app/11.2.0/grid/crs/init/ohasd to /etc/init.d directory
    2010-02-02 11:58:43: Setting ohasd permission in /etc/init.d directory
    2010-02-02 11:58:43: Removing "/etc/rc.d/rc3.d/S96ohasd"
    2010-02-02 11:58:43: Removing file /etc/rc.d/rc3.d/S96ohasd
    2010-02-02 11:58:43: Failure with return code 1 from command rm /etc/rc.d/rc3.d/S96ohasd
    2010-02-02 11:58:43: Failed to remove file:
    2010-02-02 11:58:43: Creating a link "/etc/rc.d/rc3.d/S96ohasd" pointing to /etc/init.d/ohasd
    2010-02-02 11:58:43: Removing "/etc/rc.d/rc5.d/S96ohasd"
    2010-02-02 11:58:43: Removing file /etc/rc.d/rc5.d/S96ohasd
    2010-02-02 11:58:43: Failure with return code 1 from command rm /etc/rc.d/rc5.d/S96ohasd
    2010-02-02 11:58:43: Failed to remove file:
    2010-02-02 11:58:43: Creating a link "/etc/rc.d/rc5.d/S96ohasd" pointing to /etc/init.d/ohasd
    2010-02-02 11:58:43: Removing "/etc/rc.d/rc0.d/K19ohasd"
    2010-02-02 11:58:43: Removing file /etc/rc.d/rc0.d/K19ohasd
    2010-02-02 11:58:43: Failure with return code 1 from command rm /etc/rc.d/rc0.d/K19ohasd
    2010-02-02 11:58:43: Failed to remove file:
    2010-02-02 11:58:43: Creating a link "/etc/rc.d/rc0.d/K19ohasd" pointing to /etc/init.d/ohasd
    2010-02-02 11:58:43: Removing "/etc/rc.d/rc1.d/K19ohasd"
    2010-02-02 11:58:43: Removing file /etc/rc.d/rc1.d/K19ohasd
    2010-02-02 11:58:43: Failure with return code 1 from command rm /etc/rc.d/rc1.d/K19ohasd
    2010-02-02 11:58:44: Failed to remove file:
    2010-02-02 11:58:44: Creating a link "/etc/rc.d/rc1.d/K19ohasd" pointing to /etc/init.d/ohasd
    2010-02-02 11:58:44: Removing "/etc/rc.d/rc2.d/K19ohasd"
    2010-02-02 11:58:44: Removing file /etc/rc.d/rc2.d/K19ohasd
    2010-02-02 11:58:44: Failure with return code 1 from command rm /etc/rc.d/rc2.d/K19ohasd
    2010-02-02 11:58:44: Failed to remove file:
    2010-02-02 11:58:44: Creating a link "/etc/rc.d/rc2.d/K19ohasd" pointing to /etc/init.d/ohasd
    2010-02-02 11:58:44: Removing "/etc/rc.d/rc4.d/K19ohasd"
    2010-02-02 11:58:44: Removing file /etc/rc.d/rc4.d/K19ohasd
    2010-02-02 11:58:44: Failure with return code 1 from command rm /etc/rc.d/rc4.d/K19ohasd
    2010-02-02 11:58:44: Failed to remove file:
    2010-02-02 11:58:44: Creating a link "/etc/rc.d/rc4.d/K19ohasd" pointing to /etc/init.d/ohasd
    2010-02-02 11:58:44: Removing "/etc/rc.d/rc6.d/K19ohasd"
    2010-02-02 11:58:44: Removing file /etc/rc.d/rc6.d/K19ohasd
    2010-02-02 11:58:44: Failure with return code 1 from command rm /etc/rc.d/rc6.d/K19ohasd
    2010-02-02 11:58:44: Failed to remove file:
    2010-02-02 11:58:44: Creating a link "/etc/rc.d/rc6.d/K19ohasd" pointing to /etc/init.d/ohasd
    2010-02-02 11:58:44: The file ohasd has been successfully linked to the RC directories
    2010-02-02 11:58:44: Starting ohasd
    2010-02-02 11:58:44: itab entries=
    2010-02-02 11:58:49: Created backup /etc/inittab.no_crs
    2010-02-02 11:58:49: Appending to /etc/inittab.tmp:
    2010-02-02 11:58:50: h1:35:respawn:/etc/init.d/init.ohasd run >/dev/null 2>&1 </dev/null
    2010-02-02 11:58:50: Done updating /etc/inittab.tmp
    2010-02-02 11:58:50: Saved /etc/inittab.crs
    2010-02-02 11:58:50: Installed new /etc/inittab
    2010-02-02 11:58:55: ohasd is starting
    2010-02-02 11:58:55: Checking ohasd
    2010-02-02 11:58:55: ohasd started successfully
    2010-02-02 11:58:55: Creating CRS resources and dependencies
    2010-02-02 11:58:55: Configuring HASD
    2010-02-02 11:58:55: Registering type ora.daemon.type
    2010-02-02 11:58:59: Registering type ora.mdns.type
    2010-02-02 11:59:00: Registering type ora.gpnp.type
    2010-02-02 11:59:01: Registering type ora.gipc.type
    2010-02-02 11:59:02: Registering type ora.cssd.type
    2010-02-02 11:59:04: Registering type ora.cssdmonitor.type
    2010-02-02 11:59:07: Registering type ora.crs.type
    2010-02-02 11:59:08: Registering type ora.evm.type
    2010-02-02 11:59:09: Registering type ora.ctss.type
    2010-02-02 11:59:10: Registering type ora.asm.type
    2010-02-02 11:59:13: Registering type ora.drivers.acfs.type
    2010-02-02 11:59:14: Registering type ora.diskmon.type
    2010-02-02 11:59:34: ADVM/ACFS is configured
    2010-02-02 11:59:35: Successfully created CRS resources for cluster daemon and ASM
    2010-02-02 11:59:35: Checking if initial configuration has been performed
    2010-02-02 11:59:35: Starting CSS in exclusive mode
    2010-02-02 12:00:04: CRS-2672: Attempting to start 'ora.gipcd' on 'vis'
    2010-02-02 12:00:04: CRS-2672: Attempting to start 'ora.mdnsd' on 'vis'
    2010-02-02 12:00:04: CRS-2676: Start of 'ora.gipcd' on 'vis' succeeded
    2010-02-02 12:00:04: CRS-2676: Start of 'ora.mdnsd' on 'vis' succeeded
    2010-02-02 12:00:04: CRS-2672: Attempting to start 'ora.gpnpd' on 'vis'
    2010-02-02 12:00:04: CRS-2676: Start of 'ora.gpnpd' on 'vis' succeeded
    2010-02-02 12:00:04: CRS-2672: Attempting to start 'ora.cssdmonitor' on 'vis'
    2010-02-02 12:00:04: CRS-2676: Start of 'ora.cssdmonitor' on 'vis' succeeded
    2010-02-02 12:00:04: CRS-2672: Attempting to start 'ora.cssd' on 'vis'
    2010-02-02 12:00:04: CRS-2672: Attempting to start 'ora.diskmon' on 'vis'
    2010-02-02 12:00:04: CRS-2676: Start of 'ora.diskmon' on 'vis' succeeded
    2010-02-02 12:00:04: CRS-2676: Start of 'ora.cssd' on 'vis' succeeded
    2010-02-02 12:00:04: Querying for existing CSS voting disks
    2010-02-02 12:00:04: Performing initial configuration for cluster
    2010-02-02 12:00:51: Start of resource "ora.ctssd -init" Succeeded
    2010-02-02 12:00:51: Creating or upgrading OCR keys
    2010-02-02 12:00:51: Command return code of 255 (65280) from command: /u01/app/11.2.0/grid/bin/ocrconfig -upgrade oracle oinstall
    2010-02-02 12:00:51: Failed to create Oracle Cluster Registry configuration, rc 255
    2010-02-02 12:00:51: Exiting exclusive mode
    2010-02-02 12:00:51: Command return code of 1 (256) from command: /u01/app/11.2.0/grid/bin/crsctl stop resource ora.crsd -init
    2010-02-02 12:00:51: Stop of resource "ora.crsd -init" failed
    2010-02-02 12:00:51: Failed to stop CRSD
    2010-02-02 12:01:20: Initial cluster configuration failed. See /u01/app/11.2.0/grid/cfgtoollogs/crsconfig/rootcrs_vis.log for details

    Hi,
    I am trying to setup Oracle 11gR2 RAC setup on RHEL 5.4 64-bit machine, during grid installation i am also getting the same error.
    2010-07-12 03:12:42: Removing file /etc/rc.d/rc6.d/K19ohasd
    2010-07-12 03:12:42: Failure with return code 1 from command rm /etc/rc.d/rc6.d/K19ohasd
    2010-07-12 03:12:42: Failed to remove file:
    2010-07-12 03:12:42: Creating a link "/etc/rc.d/rc6.d/K19ohasd" pointing to /etc/init.d/ohasd
    2010-07-12 03:12:42: The file ohasd has been successfully linked to the RC directories
    2010-07-12 03:12:42: Starting ohasd
    2010-07-12 03:12:42: itab entries=
    2010-07-12 03:12:47: Created backup /etc/inittab.no_crs
    2010-07-12 03:12:47: Appending to /etc/inittab.tmp:
    2010-07-12 03:12:47: h1:35:respawn:/etc/init.d/init.ohasd run >/dev/null 2>&1 </dev/null
    2010-07-12 03:12:47: Done updating /etc/inittab.tmp
    2010-07-12 03:12:47: Saved /etc/inittab.crs
    2010-07-12 03:12:47: Installed new /etc/inittab
    2010-07-12 03:13:03: ohasd is starting
    2010-07-12 03:13:03: Checking ohasd
    2010-07-12 03:13:03: ohasd started successfully
    2010-07-12 03:13:03: Creating CRS resources and dependencies
    2010-07-12 03:13:03: Configuring HASD
    2010-07-12 03:13:03: Registering type ora.daemon.type
    2010-07-12 03:13:04: Registering type ora.mdns.type
    2010-07-12 03:13:04: Registering type ora.gpnp.type
    2010-07-12 03:13:04: Registering type ora.gipc.type
    2010-07-12 03:13:05: Registering type ora.cssd.type
    2010-07-12 03:13:05: Registering type ora.cssdmonitor.type
    2010-07-12 03:13:06: Registering type ora.crs.type
    2010-07-12 03:13:06: Registering type ora.evm.type
    2010-07-12 03:13:07: Registering type ora.ctss.type
    2010-07-12 03:13:07: Registering type ora.asm.type
    2010-07-12 03:13:08: Registering type ora.drivers.acfs.type
    2010-07-12 03:13:08: Registering type ora.diskmon.type
    2010-07-12 03:13:35: ADVM/ACFS is configured
    2010-07-12 03:13:35: Successfully created CRS resources for cluster daemon and ASM
    2010-07-12 03:13:35: Checking if initial configuration has been performed
    2010-07-12 03:13:35: Starting CSS in exclusive mode
    2010-07-12 03:14:04: CRS-2672: Attempting to start 'ora.gipcd' on 'lodvmrhn3'
    2010-07-12 03:14:04: CRS-2672: Attempting to start 'ora.mdnsd' on 'lodvmrhn3'
    2010-07-12 03:14:04: CRS-2676: Start of 'ora.mdnsd' on 'lodvmrhn3' succeeded
    2010-07-12 03:14:04: CRS-2676: Start of 'ora.gipcd' on 'lodvmrhn3' succeeded
    2010-07-12 03:14:04: CRS-2672: Attempting to start 'ora.gpnpd' on 'lodvmrhn3'
    2010-07-12 03:14:04: CRS-2676: Start of 'ora.gpnpd' on 'lodvmrhn3' succeeded
    2010-07-12 03:14:04: CRS-2672: Attempting to start 'ora.cssdmonitor' on 'lodvmrhn3'
    2010-07-12 03:14:04: CRS-2676: Start of 'ora.cssdmonitor' on 'lodvmrhn3' succeeded
    2010-07-12 03:14:04: CRS-2672: Attempting to start 'ora.cssd' on 'lodvmrhn3'
    2010-07-12 03:14:04: CRS-2672: Attempting to start 'ora.diskmon' on 'lodvmrhn3'
    2010-07-12 03:14:04: CRS-2676: Start of 'ora.diskmon' on 'lodvmrhn3' succeeded
    2010-07-12 03:14:04: CRS-2676: Start of 'ora.cssd' on 'lodvmrhn3' succeeded
    2010-07-12 03:14:04: Querying for existing CSS voting disks
    2010-07-12 03:14:05: Performing initial configuration for cluster
    2010-07-12 03:14:06: Start of resource "ora.ctssd -init" Succeeded
    2010-07-12 03:14:06: Creating or upgrading OCR keys
    2010-07-12 03:14:06: Command return code of 255 (65280) from command: /u01/app/11.2.0/grid/bin/ocrconfig -upgrade oracle oinstall
    2010-07-12 03:14:06: Failed to create Oracle Cluster Registry configuration, rc 255
    2010-07-12 03:14:06: Exiting exclusive mode
    2010-07-12 03:14:06: Command return code of 1 (256) from command: /u01/app/11.2.0/grid/bin/crsctl stop resource ora.crsd -init
    2010-07-12 03:14:06: Stop of resource "ora.crsd -init" failed
    2010-07-12 03:14:06: Failed to stop CRSD
    2010-07-12 03:14:34: Initial cluster configuration failed. See /u01/app/11.2.0/grid/cfgtoollogs/crsconfig/rootcrs_lodvmrhn3.log for details
    Please hel me to resole the issue.
    I have followed exact steps mentioned in the http://www.oracle-base.com/articles/11g/OracleDB11gR2RACInstallationOnLinuxUsingNFS.php

  • Test call of transport control program (tp) ended with return code 0249

    Hi,
    When i release a TR i get the following error
    Pls let me know of what can be the reason for the same
    I did a kernel upgrade 2 days back
    Test call of transport control program (tp) ended with return code 0249
    Message no. TK094
    Diagnosis
    Your transport request could not be exported, since all requirements were not fulfilled.
    Calling the transport control program tp
       "tp EXPCHK BWDK900308 pf=
    WDBSSAPBWD01\sapmnt\trans\bin\TP_DOMAIN_BWD.PFL -Dtransdi"
    which checks the export requirements, returned the following information:
    Return code from tp: 0249
    Error text from tp: ERROR: No connect due to DbSl Load Lib Failure
    System Response
    Further processing is terminated.
    Procedure
    Check the following points:
    u2022     Feasibility of the transport control program tp
    u2022     Parameter settings in the transport profile
    u2022     Availability of the transport directory and the subdirectories (cofiles, data, log, sapnames, bin)
    u2022     Write authorization for the subdirectories
    u2022     Write authorization for the files of the subdirectories cofiles, data, log, sapnames
    Release the request again when the error has been removed

    Hi Balaji,
    End of your question contains the areas to be varified.
    Your SAP seems to be installed in windows environment
    Check transport profile paramater and file permissions.
    Try to browse the directory
    WDBSSAPBWD01\sapmnt\trans\bin\ from start->run
    Check with tp connecting to DB  with tp connect <SID>
    chceck file permission to datafile and cofiles (in case of OS UNIX)
    Regards,
    Ganesh

  • Printer not-accepting APP-FND-00500: AFPPRN received a return code of failu

    Hi Gurus,
    skgtag: not-accepting APP-FND-00500: AFPPRN received a return code of failure from routine FDUPRN. Program exited with status 1.
    This is my error. My same request output is printing to other printers. But it is not printing in particular printer.
    My printer is shared is windows 2000 system and we have installed Unix files & printer sharing windows feature.
    while executing below command from soloris command line
    lp -d skctag -n 1 sona
    skgtag: timed out error is coming please give advice in this.

    Hi Hussein,
    Now concurrent is completed normally without any warnings.
    Server OS Level
    Now it is not showing any error but printout not coming in printer.
    lp -d skctag -n 1 /rman_backup/PROD_rmanfullbkp.sh
    request id is skctag-60 (1 file(s))
    But printout not coming ....
    Concurrent Log file for your reference.
    Executing request completion options...
    ------------- 1) PRINT   -------------
    Printing output file.
    Request ID : 50089046      
    Number of copies : 1      
    Printer : skctag
    Finished executing request completion options.
    Concurrent request completed successfully
    Current system time is 07-JAN-2013 11:14:08
    ---------------------------------------------------------------------------

Maybe you are looking for

  • Value not populating in the print out (sales order) for the 1st time

    Hi friends, While saving a sales order, the order confirmation going to the user is not populating the LDC field. LDC is Last date of change. This field can be found in the Additonal data 2 tab of the material in the sales order. When I enter a date

  • Windows 8.1 and Officejet Pro 8620

    I bought a new Officejet Pro 8620 for my office and installed it on 4 machines. All of them could print but only one coupld scan. There happened to be a hardware issue and I had to return it to the store. When I went to install the new printer (the s

  • Can connect to wireless router but not to the internet

    Please Help, I have a WRT150N and I can connect to my wireless router by it will not connect to the internet from there, even though the internet, wireless, and security lights are lit up. If I plug a cord into the back of the router and then into my

  • Receive an immediate Run Time installation error

    Hello, I just formatted my machine, installed windows, installed the latest drivers, performed Windows Updates, installed Acronis, Installed Office 2007, performed Windows Updates. I download the install_reader11_en_mssd_aaa_aih.exe file and run it.

  • Iphone 5C cannot connect 3G

    Hello guys, my iphone 5C, model a1456 , Me545J/a I have 3G connect above IOS 8.02 . and i will update IOS 8.1  using DFU -> Shift + restore My iphone does not appear 3G, but only E . I change connect 3G or LTE but not oke, i configured 3G my country