Sunday 18 January 2015

wfmlrsvcapp.ear not found while Installing Oracel 11 g

issue
++++
File not found WFMLRSVCApp.ear .


I have downloaded windows database software and extracted into individual folders and faced above issue .
win64_11gR2_database_1of2.zip
win64_11gR2_database_2of2.zip







Solution :
======
Extract windows database software into single folder and try it ..
Your issue will get resolved .







Wednesday 14 January 2015

Error: Oracle Initialization Parameter 'PROCESSES' is too low.



+++++++
Issue 
+++++++
RCU-6083:Failed - Check prerequisites requirement for selected component:WEBCENTER
Please refer to RCU log at /u02/oracle/logdir.2015-01-09_10-41/rcu.log for details.
Error: Oracle Initialization Parameter 'PROCESSES' is too low.
 Cause: The Oracle Initialization Parameter 'PROCESSES' must be at least 200.
 Action: Change the Database Initialization Parameter 'PROCESSES' to 200 or more, then rerun RCU.
RCU-6092:Component Selection validation failed. Please refer to log at /u02/oracle/logdir.2015-01-09_10-41/rcu.log for details.



SQL> show parameter processes

NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
aq_tm_processes                      integer     0
db_writer_processes                  integer     1
gcs_server_processes                 integer     0
global_txn_processes                 integer     1
job_queue_processes                  integer     1000
log_archive_max_processes            integer     4
processes                            integer     150
SQL> show parameter spfile

NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
spfile                               string      /u02/oracle/11.2.0/dbs/spfilew
                                                 ebcenter.ora
SQL> alter system set processes=300 scope=spfile;

System altered.
SQL> shutdown immediate
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> startup
ORACLE instance started.

Total System Global Area 3223535616 bytes
Fixed Size                  2217672 bytes
Variable Size            1761610040 bytes
Database Buffers         1442840576 bytes
Redo Buffers               16867328 bytes
Database mounted.
Database opened.
SQL> show parameter processes

NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
aq_tm_processes                      integer     0
db_writer_processes                  integer     1
gcs_server_processes                 integer     0
global_txn_processes                 integer     1
job_queue_processes                  integer     1000
log_archive_max_processes            integer     4
processes                            integer     300
SQL>

Weblogic 12c and Managed Server in incompatible state

+++++++
issue
++++++
All of the servers selected are currently in a state which is incompatible with this operation or are not associated
with a running Node Manager or you are not authorized to perform the action requested. No action will be performed.


+++++++++
Solution :
+++++++++

The solution is to delete the “managed_server.state” file under your domain in “servers/managed_server/data/nodemanager/” where managed_server is your managed server’s name..So, stop everything, delete/move  managed_server.state from your managed server folder and start everything (go to console to start your managed sever as it is SHUTDOWN).


[oracle@linux6 nodemanager]$ ls -ltr
total 16
-rw-r-----. 1 oracle dba 174 Dec 31 22:48 boot.properties
-rw-r-----. 1 oracle dba 423 Dec 31 22:48 startup.properties
-rw-r-----. 1 oracle dba  27 Dec 31 23:03 WLS_SOA1.url
-rw-r-----. 1 oracle dba  24 Dec 31 23:25 WLS_SOA1.state
[oracle@linux6 nodemanager]$ mv WLS_SOA1.state WLS_SOA1.state_backup
[oracle@linux6 nodemanager]$ pwd
/u01/app/oracle/product/12.1.3/fmw/user_projects/domains/soa_domain/servers/WLS_SOA1/data/nodemanager
[oracle@linux6 nodemanager]$

Now start the Managed server and your issue will get resolved ..