|
看了一下,Middle-tier只有17个processes.
P.A.N:/export/home/oracle10g/mid.GOLD:$ opmnctl status
Processes in Instance: pscnasmidd.P.A.N
-------------------+--------------------+-------+---------
ias-component | process-type | pid | status
-------------------+--------------------+-------+---------
WebCache | WebCacheAdmin | 16303 | Alive
WebCache | WebCache | 16302 | Alive
HTTP_Server | HTTP_Server | 16301 | Alive
OC4J | OC4J_BI_Forms | 8043 | Alive
OC4J | home | 9450 | Alive
dcm-daemon | dcm-daemon | N/A | Down
LogLoader | logloaderd | N/A | Down
P.A.N:/export/home/oracle10g/mid.GOLD:$ opmnctl stopall
opmnctl: stopping opmn and all managed processes...
P.A.N:/export/home/oracle10g/mid.GOLD:$ ps -ef|wc -l
326
P.A.N:/export/home/oracle10g/mid.GOLD:$ opmnctl startall
opmnctl: starting opmn and all managed processes...
P.A.N:/export/home/oracle10g/mid.GOLD:$ ps -ef|wc -l
343
P.A.N:/export/home/oracle10g/mid.GOLD:$
如果用reports的话,可在$ORACLE_MID_HOME/reports/conf/<YOUR_REPORT_NAME>.conf文件中,可以设置initEngines/maxEngines,八过此缺省值为1.
<!--Please do not change the id for reports engine.-->
<!--The class specifies below is subclass of _EngineClassImplBase and implements EngineInterface.-->
<engine id="rwEng" class="oracle.reports.engine.EngineImpl" initEngine="2" maxEngine="8" minEngine="0" engLife="50" maxIdle="30" callbackTimeOut="60000">
<!--property name="sourceDir" value="your reports source directory"/-->
<!--property name="tempDir" value="your reports temp directory"/-->
</engine> |
|