I am getting below error when I run netca
from command line
cmd: /u01/app/oracle/product/11.2.0/db_1/bin/netca /silent /responsefile=/oracle_binaries/database/response/netca.rsp
[main] [ 2013年05月17日 10:52:47.975 IST ] [CmdlineArgs.parseLogParam:290] Parsing /log argument...
[main] [ 2013年05月17日 10:52:47.976 IST ] [CmdlineArgs.parseLogParam:345] Returning Log File = null
java.lang.ArrayIndexOutOfBoundsException: 2
at oracle.net.ca.CmdlineArgs.parseArgs(CmdlineArgs.java:416)
at oracle.net.ca.InitialSetup.<init>(NetCA.java:3969)
at oracle.net.ca.NetCA.main(NetCA.java:405)
-
Since you've found the solution I wonder if you could accept your own answer so that it isn't touched by the Community account on a regular basis and therefore doesn't appear on the site's main page. Thanks.Yasir Arsanukayev– Yasir Arsanukayev2013年06月16日 11:39:16 +00:00Commented Jun 16, 2013 at 11:39
1 Answer 1
Answer from below thread solved my problem
https://forums.oracle.com/forums/thread.jspa?threadID=2208254
apparently '=' is not needed in responsefile argument in netca cmd
/u01/app/oracle/product/11.2.0/db_1/bin/netca /silent /responsefile /oracle_binaries/database/response/netca.rsp
answered May 17, 2013 at 11:21
lang-sql