|
below is my oracle profile:
$> cat /home/oracle/.bash_profile
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
PATH=$PATH:$HOME/bin
#export PATH
unset USERNAME
ORACLE_BASE=/oracle/App;export ORACLE_BASE
ORACLE_HOME=$ORACLE_BASE/Ashome;export ORACLE_HOME
ORACLE_PORTAL_HOME=$ORACLE_BASE/OraHomePortal; export ORACLE_PORTAL_HOME
ORACLE_SID=orcl10g;export ORACLE_SID
PATH=$PATH:$ORACLE_HOME/bin:$ORACLE_PORTAL_HOME/bin
export PATH
-------------------------------cat end----------------
I run the command with a complete path because I think in this way will avoid invalid AS startuping order, as you know there are duplicated commands in infra_home and portal_home,and thery are exported to the path.
The other question ,there are two Oracle Applicagtion Server ,one is with Infrastructure and the other is with Portal, and one emctl comands in each home bin, so which one I should use? the OAS of portal show
the entry of infrastructure ,but OAS with infra there is no entry for Portal.
There is one strange thing ,when I run 'opmnctl startll' , in infra_hjome it's responsed quickly ,however in portal_home ,it is runing slowly, Is there some difference with the command in two home?
I just tried to run the commands I post yesterday, I found 1811,1810 ,7777,7778 are available to access.
but in infrastructure OEM the general status is down while http_server and oc4j_security ,oid are up,why?
in portal OEM I found the general status is down too,but ecept Portal ortal all other services is up, how can I startup the Portal otal?
Last night I had a quick reading through the Oracle@ Application Server Portal Configuration Guide for OTN, but still no idea about the troulle shooting.
Now I think the trouble focus on how to start the Portal oral and how to avoid duplicated services eating up my RAM memory. |
|