Starting Oralce XE on Linux

Hello,
I just installed Oracle Xe on a Mandriva Linux Server.
It did install without any problem as I installed the libaio, and the Glibc witout any problem.
I did set up my Oracle_Home into my env.
Now, when I try to start oracle with: /etc/init.d/oracle-xe start, it tells me:
[root@multi centralis]# /etc/init.d/oracle-xe start
Starting Oracle Net Listener.
Starting Oracle Database 10g Express Edition Instance.
Failed to start Oracle Net Listener using /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/tnslsnr and Oracle Express Database using /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/sqlplus.
Could anyone please help me??
Best Regards,
Ben

Hello,
Unfortunately, I do not get any error message when I try to start the script.
But,here is the script:
#!/bin/bash
# chkconfig: 2345 80 05
# description: This is a program that is responsible for taking care of
# configuring the Oracle Database 10g Express Edition and its associated
# services.
# processname: oracle-xe
# config: /etc/sysconfig/oracle-xe-config
# change log:
# svaggu - creation 28-Sep-2005
# Source fuction library
. /etc/init.d/functions
# Set path if path not set (if called from /etc/rc)
case $PATH in
"") PATH=/bin:/usr/bin:/sbin:/etc
export PATH ;;
esac
# Save LD_LIBRARY_PATH
SAVE_LLP=$LD_LIBRARY_PATH
RETVAL=0
ORACLE_HOME=/usr/lib/oracle/xe/app/oracle/product/10.2.0/server
ORACLE_OWNER=oraclexe
ORACLE_SID=XE
LSNR=$ORACLE_HOME/bin/lsnrctl
SQLPLUS=$ORACLE_HOME/bin/sqlplus
SU=/bin/su
export ORACLE_HOME
export ORACLE_SID
export PATH=$ORACLE_HOME/bin:$PATH
LOG="$ORACLE_HOME_LISTNER/listener.log"
export LC_ALL=C
if [ $(id -u) != "0" ]
then
echo "You must be root to run the configure script. Login as root and then run the
configure script."
exit 1
fi
if [ -f /etc/redhat-release ]
then
. /etc/init.d/functions
init_status()
return 0
exit_status()
exit $?
success_status()
success
echo
failure_status()
failure $?
echo
elif [ -f /etc/SuSE-release ]
then
. /etc/rc.status
init_status()
rc_reset
success_status()
echo "OK"
return 0
failure_status()
echo "Failed"
return 1
exit_status()
exit $?
fi
# Source configuration
[ -f /etc/sysconfig/oracle-xe-config ] && . /etc/sysconfig/oracle-xe-config
init_status
# if_fail()
# Evaluates return codes. If 0, prints "OK", if 1, prints "Failed"
# and exits. If 2, status is "already done" and nothing is printed.
# The rest of the functions in here all honor this convention.
if_fail()
RC="$1"
REASON="$2"
if [ "$RC" = "0" ]
then
return
elif [ "$RC" = "2" ]
then
return
fi
failure_status ${REASON}
exit 1
# write_sysconfig()
# Writes the system configuration
write_sysconfig()
cat >/etc/sysconfig/oracle-xe-config <<EOF
#This is a configuration file for automatic starting of the Oracle
#Database and listener at system startup.It is generated By running
#'/etc/init.d/oracle-xe configure'.Please use that method to modify this
#file
# ORACLE_DBENABLED:'true' means to load the Database at system boot.
ORACLE_DBENABLED=${ORACLE_DBENABLED:-false}
# LISTENER_PORT:
LISTENER_PORT=${LISTENER_PORT}
# HTTP_PORT
HTTP_PORT=${HTTP_PORT}
#Configuration
CONFIGURE_RUN=${CONFIGURE_RUN}
EOF
if [ $? != 0 ]
then
return 1
fi
return 0
# configure_perform()
# Instantantiate listener.ora,tnsnames.ora,and create the database,
# sets the password,start the listener,and adds database to inittab
# if necessary
configure_perform()
sed -i "s/<hostname>/`hostname`/g" $ORACLE_HOME/network/admin/listener.ora
sed -i "s/<hostname>/`hostname`/g" $ORACLE_HOME/network/admin/tnsnames.ora
sed -i "s/<port>/$LISTENER_PORT/g" $ORACLE_HOME/network/admin/listener.ora
sed -i "s/<port>/$LISTENER_PORT/g" $ORACLE_HOME/network/admin/tnsnames.ora
sed -i "s/<httpport>/$HTTP_PORT/g" $ORACLE_HOME/config/scripts/postDBCreation.sql
sed -i "s/%port%/$LISTENER_PORT/g" $ORACLE_HOME/config/scripts/init.ora
sed -i "s/%hostname%/`hostname`/g" $ORACLE_HOME/config/scripts/init.ora
sed -i "s/%FRA_DIR%/\/usr\/lib\/oracle\/xe\/app\/oracle\/flash_recovery_area/g" $ORACLE_HOME/config/scripts/postDBCreation.sql
sed -i "s/%httpport%/$HTTP_PORT/g" /usr/share/applications/oraclexe-GotoDBHome.desktop
sed -i "s/%httpport%/$HTTP_PORT/g" /usr/share/applications/oraclexe-ReadOnlineHelp.desktop
homedir=`echo $HOME`
if [ "$homedir" == "/root" ]
then
homedir=`sh -c "echo ~$USER"`
fi
if [ -f $homedir/.gnome-desktop/oraclexe-GettingStartedDesktop.desktop ]
then
chown oraclexe:dba $homedir/.gnome-desktop/oraclexe-GettingStartedDesktop.desktop
chmod 664 $homedir/.gnome-desktop/oraclexe-GettingStartedDesktop.desktop
fi
if [ -f $homedir/Desktop/oraclexe-GettingStartedDesktop.desktop ]
then
chown oraclexe:dba $homedir/Desktop/oraclexe-GettingStartedDesktop.desktop
chmod 664 $homedir/Desktop/oraclexe-GettingStartedDesktop.desktop
fi
echo Configuring Database...
$SU $ORACLE_OWNER -c "$ORACLE_HOME/config/scripts/XE.sh" > /dev/null 2>&1
echo "alter user flows_020100 identified by $ORACLE_PASSWORD;" | $SU $ORACLE_OWNER -c "$SQLPLUS -s / as sysdba" > /dev/null 2>&1
echo "alter user sys identified by $ORACLE_PASSWORD;" | $SU $ORACLE_OWNER -c "$SQLPLUS -s / as sysdba" > /dev/null 2>&1
echo "alter user system identified by $ORACLE_PASSWORD;" | $SU $ORACLE_OWNER -c "$SQLPLUS -s / as sysdba" > /dev/null 2>&1
echo "alter user flows_files identified by $ORACLE_PASSWORD;" | $SU $ORACLE_OWNER -c "$SQLPLUS -s / as sysdba" > /dev/null 2>&1
echo "alter user anonymous identified by $ORACLE_PASSWORD;" | $SU $ORACLE_OWNER -c "$SQLPLUS -s / as sysdba" > /dev/null 2>&1
chmod -R 640 /usr/lib/oracle/xe/oradata/XE
chmod 750 /usr/lib/oracle/xe/oradata/XE
chown -R oraclexe:dba /usr/lib/oracle/xe
rm -fr $ORACLE_HOME/config/seeddb
if [ -f /etc/oratab ]
then
echo "XE:$ORACLE_HOME:N" >> /etc/oratab
else
echo "XE:$ORACLE_HOME:N" >> /etc/oratab
chown oraclexe:dba /etc/oratab
chmod 644 /etc/oratab
fi
#configure_ask()
# Ask configuration questions,setting the variables.
configure_ask()
cat <<EOF
Oracle Database 10g Express Edition Configuration
This will configure on-boot properties of Oracle Database 10g Express
Edition. The following questions will determine whether the database should
be starting upon system boot, the ports it will use, and the passwords that
will be used for database accounts. Press <Enter> to accept the defaults.
Ctrl-C will abort.
EOF
#get the http port value
while :
do
while [ 1 ]
do
echo -n Specify the HTTP port that will be used for HTML DB [8080]:
read LINE
if [ -z $LINE ]
then
LINE=8080
fi
port=`netstat -n tcp listen | grep :$LINE | awk '{print $4}' | cut -d':' -f2`
if [ "$port" = "$LINE" ]
then
echo Port $port appears to be in use by another application.\
Please specify a different port.
else
break;
fi
done
case "$LINE" in
break
*[^0-9]*)
echo "Invalid http port: $LINE" >&2
HTTP_PORT=$LINE
break
esac
done
#get the listener port value
while :
do
echo
while [ 1 ]
do
echo -n Specify a port that will be used for the database listener [1521]:
read LINE
if [ -z $LINE ]
then
LINE=1521
fi
echo
port=`netstat -n tcp listen | grep :$LINE | awk '{print $4}' | cut -d':' -f2`
if [ "$port" = "$LINE" ]
then
echo Port $port appears to be in use by another application.\
Please specify a different port.
else
break;
fi
done
case "$LINE" in
break
*[^0-9]*)
echo "Invalid port: $LINE" >&2
LISTENER_PORT=$LINE
break
esac
done
#get the database password
while :
do
echo -n "Specify a password to be used for database accounts. Note that the same
password will be used for SYS, SYSTEM and FLOWS_020100. Oracle recommends
the use of different passwords for each database account. This can be done
after initial configuration:"
while [ 1 ]
do
stty -echo
read LINE
while [ -z $LINE ]
do
echo
echo -n "Password can't be null. Enter password:"
read LINE
done
if [ -n $LINE ]
then
echo
echo -n "Confirm the password:"
read LINE1
echo
if [ "$LINE" != "$LINE1" ];
then
echo
echo -n "Passwords do not match. Enter the password:"
else
break;
fi
fi
done
case "$LINE" in
*[^a-zA-Z0-9]*)
echo "Invalid password: $LINE" >&2
stty echo
ORACLE_PASSWORD=$LINE
break
esac
done
while :
do
if [ "$ORACLE_DBENABLED" = "true" ]
then
CUR=y
else
CUR=n
fi
echo
echo -n "Do you want Oracle Database 10g Express Edition to be started on boot (y/n) [y]:"
read LINE
if [ -z $LINE ]
then
ORACLE_DBENABLED=true
fi
echo
case "$LINE" in
break
y|Y)
ORACLE_DBENABLED=true
break
n|N)
ORACLE_DBENABLED=false
break
echo "Invalid response: $LINE " >&2
break
esac
done
configure()
configure_ask
configure_perform
CONFIGURE_RUN=true
write_sysconfig
if [ -f $ORACLE_HOME/bin/tnslsnr ]
then
echo "Starting Oracle Net Listener."
$SU $ORACLE_OWNER -c "$LSNR start" > /dev/null 2>&1
fi
start() {
if test ! -f /etc/sysconfig/oracle-xe-config
then
echo You need to configure Oracle Database 10g Express Edition before\
you can start it.
exit 0
elif [ "$CONFIGURE_RUN" != "true" ]
then
echo You need to configure Oracle Database 10g Express Edition before\
you can start it.
exit 0
fi
if [ "$ORACLE_DBENABLED" != "true" ]
then
exit 0
fi
status=`ps -ef | grep tns | grep oraclexe`
if [ "$status" == "" ]
then
if [ -f $ORACLE_HOME/bin/tnslsnr ]
then
echo "Starting Oracle Net Listener."
$SU $ORACLE_OWNER -c "$LSNR start" > /dev/null 2>&1
fi
fi
echo "Starting Oracle Database 10g Express Edition Instance."
$SU $ORACLE_OWNER -c "$SQLPLUS -s /nolog @$ORACLE_HOME/config/scripts/startdb.sql" > /dev/null 2>&1
RETVAL=$?
if [ $RETVAL -eq 0 ]
then
echo
else
echo Failed to start Oracle Net Listener using $ORACLE_HOME/bin/tnslsnr\
and Oracle Express Database using $ORACLE_HOME/bin/sqlplus.
RETVAL=1
fi
return $RETVAL
stop() {
if test ! -f /etc/sysconfig/oracle-xe-config
then
echo Oracle Database 10g Express Edition is not configured.
exit 0
elif [ "$CONFIGURE_RUN" != "true" ]
then
echo Oracle Database 10g Express Edition is not configured.
exit 0
fi
# Stop Oracle 10g Express Edition Database and Listener
echo Shutting down Oracle Database 10g Express Edition Instance.
$SU $ORACLE_OWNER -c "$SQLPLUS -s /nolog @$ORACLE_HOME/config/scripts/shutdb.sql" > /dev/null 2>&1
echo Stopping Oracle Net Listener.
$SU $ORACLE_OWNER -c "$LSNR stop" > /dev/null 2>&1
RETVAL=$?
echo
if [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/$LSNR
then
return $RETVAL
fi
dostatus() {
if test ! -f /etc/sysconfig/oracle-xe-config
then
echo You need to configure Oracle Database 10g Express\
listener to get the status.
exit 0
elif [ "$CONFIGURE_RUN" != "true" ]
then
echo You need to configure Oracle Database 10g Express\
listenr to get the status
exit 0
fi
$SU $ORACLE_OWNER -c "$LSNR status"
RETVAL=$?
# See how we were called
case "$1" in
start)
start
configure)
configure
if [ "$ORACLE_DBENABLED" = "true" ]
then
/sbin/chkconfig --add oracle-xe
start
fi
stop)
stop
restart|reload)
stop
start
RETVAL=$?
status)
dostatus
echo $"Usage: $0 {start|stop|restart|configure|status}"
exit 1
esac
Thanks for the help.

Similar Messages

  • Rep-1247 error when starting jsp file on linux

    I have a rather frustrating problem on our production servers...
    We are trying to start jsp files on a linux report server (10Gr2).
    The command is displayed below
    [2007/10/8 10:57:59:853] Info 50132 (EngineImpl:setCommandLine): Get command line: baseUrl=http://xxxxx:7777/reports/rwservlet/getfile/ userid=reporting@SHARED_BE USER_AGENT=Java/1.5.0_07 SERVER_NAME=xxxxxxxxx jobname="/opt/ogreports/catalog/SMC/BE-Shared/xxxx.jsp" destpath="/var/data/og/dashboard/van/sgs/001/reports/xx" getFilestr=/no> imagekey=reports9i par_end_date="01-10-2007" desname=xxxxxxxxxxx.pdf REMOTE_ADDR=127.0.0.1 SERVER_PROTOCOL=HTTP/1.1 authid=RWUser par_start_date="01-09-2007" destype=rcpfile REMOTE_HOST=127.0.0.1 SERVER_PORT=7777 CONTENT_TYPE=application/x-www-form-urlencoded report="/opt/ogreports/catalog/SMC/BE-Shared/xxx.jsp" expiredays=0 baseimageurl=http://xxxxx:7777/reports/rwservlet/getfile/HW/YX+JkD0HSAcVLzaSGilrWNAn36ufghgStsvQqfNFC7w== schedule="00:00 Oct 08, 2007" scphost="lion" desformat=pdf SCRIPT_NAME=/rwservlet par_id_project="1750"
    The after paramform does some major data manipulations, writing to temporary tables (on commit preserve rows), that are used in queries from the reports.
    This seems to go allright. The setup of all queries, program units etc passes as well. But when the report has to start formatting, I get a "1247 Program Unit not compiled" error message. This is an excerpt from the engine trace
    [2007/10/8 11:40:40:243] Debug 50103 (EngineImpl:getCacheData): Start
    [2007/10/8 11:40:40:243] Debug 50103 (EngineImpl:getCacheData): m_jobId = 9182
    [2007/10/8 11:40:40:244] Debug 50103 (EngineImpl:getCacheData): Quit
    [2007/10/8 11:40:40:534] Error 50103 (C Engine): 10:40:40 ERR REP-1247: Report contains uncompiled PL/SQL.
    [2007/10/8 11:40:40:535] Error 50103 (rwfdt:rwfdtprint): 10:40:40 ERR Error occurred sending Job output to cache
    [2007/10/8 11:40:40:536] Error 50103 (rwfdt:rwfdtfl_FreeDistList): running
    [2007/10/8 11:40:40:536] Error 50103 (rwfdt:rwfdtfl_FreeDistList): quit
    [2007/10/8 11:40:40:580] Debug 50103 (EngineImpl:run): CRunReport returns: 1247
    [2007/10/8 11:40:40:608] Debug 50103 (EngineImpl:run): Quit
    [2007/10/8 11:40:40:699] Exception 1247 (): Report contains uncompiled PL/SQL.
    oracle.reports.RWException: IDL:oracle/reports/RWException:1.0
    at oracle.reports.engine.EngineImpl.run(EngineImpl.java:447)
    at oracle.reports.engine._EngineClassImplBase._invoke(_EngineClassImplBase.java:90)
    at com.sun.corba.se.internal.corba.ServerDelegate.dispatch(ServerDelegate.java:353)
    at com.sun.corba.se.internal.iiop.ORB.process(ORB.java:280)
    at com.sun.corba.se.internal.iiop.RequestProcessor.process(RequestProcessor.java:81)
    at com.sun.corba.se.internal.orbutil.ThreadPool$PooledThread.run(ThreadPool.java:106)
    I know that 1247 normally covers up another error, but I don't seem to get it....
    Funny thing is, when copying the jsp's to another reports server, they do run (on the same DB).
    Message was edited by:
    user599601

    I have a rather frustrating problem on our production servers...
    We are trying to start jsp files on a linux report server (10Gr2).
    The command is displayed below
    [2007/10/8 10:57:59:853] Info 50132 (EngineImpl:setCommandLine): Get command line: baseUrl=http://xxxxx:7777/reports/rwservlet/getfile/ userid=reporting@SHARED_BE USER_AGENT=Java/1.5.0_07 SERVER_NAME=xxxxxxxxx jobname="/opt/ogreports/catalog/SMC/BE-Shared/xxxx.jsp" destpath="/var/data/og/dashboard/van/sgs/001/reports/xx" getFilestr=/no> imagekey=reports9i par_end_date="01-10-2007" desname=xxxxxxxxxxx.pdf REMOTE_ADDR=127.0.0.1 SERVER_PROTOCOL=HTTP/1.1 authid=RWUser par_start_date="01-09-2007" destype=rcpfile REMOTE_HOST=127.0.0.1 SERVER_PORT=7777 CONTENT_TYPE=application/x-www-form-urlencoded report="/opt/ogreports/catalog/SMC/BE-Shared/xxx.jsp" expiredays=0 baseimageurl=http://xxxxx:7777/reports/rwservlet/getfile/HW/YX+JkD0HSAcVLzaSGilrWNAn36ufghgStsvQqfNFC7w== schedule="00:00 Oct 08, 2007" scphost="lion" desformat=pdf SCRIPT_NAME=/rwservlet par_id_project="1750"
    The after paramform does some major data manipulations, writing to temporary tables (on commit preserve rows), that are used in queries from the reports.
    This seems to go allright. The setup of all queries, program units etc passes as well. But when the report has to start formatting, I get a "1247 Program Unit not compiled" error message. This is an excerpt from the engine trace
    [2007/10/8 11:40:40:243] Debug 50103 (EngineImpl:getCacheData): Start
    [2007/10/8 11:40:40:243] Debug 50103 (EngineImpl:getCacheData): m_jobId = 9182
    [2007/10/8 11:40:40:244] Debug 50103 (EngineImpl:getCacheData): Quit
    [2007/10/8 11:40:40:534] Error 50103 (C Engine): 10:40:40 ERR REP-1247: Report contains uncompiled PL/SQL.
    [2007/10/8 11:40:40:535] Error 50103 (rwfdt:rwfdtprint): 10:40:40 ERR Error occurred sending Job output to cache
    [2007/10/8 11:40:40:536] Error 50103 (rwfdt:rwfdtfl_FreeDistList): running
    [2007/10/8 11:40:40:536] Error 50103 (rwfdt:rwfdtfl_FreeDistList): quit
    [2007/10/8 11:40:40:580] Debug 50103 (EngineImpl:run): CRunReport returns: 1247
    [2007/10/8 11:40:40:608] Debug 50103 (EngineImpl:run): Quit
    [2007/10/8 11:40:40:699] Exception 1247 (): Report contains uncompiled PL/SQL.
    oracle.reports.RWException: IDL:oracle/reports/RWException:1.0
    at oracle.reports.engine.EngineImpl.run(EngineImpl.java:447)
    at oracle.reports.engine._EngineClassImplBase._invoke(_EngineClassImplBase.java:90)
    at com.sun.corba.se.internal.corba.ServerDelegate.dispatch(ServerDelegate.java:353)
    at com.sun.corba.se.internal.iiop.ORB.process(ORB.java:280)
    at com.sun.corba.se.internal.iiop.RequestProcessor.process(RequestProcessor.java:81)
    at com.sun.corba.se.internal.orbutil.ThreadPool$PooledThread.run(ThreadPool.java:106)
    I know that 1247 normally covers up another error, but I don't seem to get it....
    Funny thing is, when copying the jsp's to another reports server, they do run (on the same DB).
    Message was edited by:
    user599601

  • Error while starting DAC Server on Linux (32 bit)

    Dear Friends,
    I installed Informatica Powercenter 8.6.1 on Linux (32 bit) with 11g database mapping
    and I installaed DAC Server on the same server
    I could start the Informatica services successfully
    but when i try to start the DAC Server it throws the following error:
    #./startserver.sh
    OS detected: Linux
    Dec 23, 2010 5:49:33 AM com.siebel.etl.engine.core.ETLUtils logException
    SEVERE:
    ANOMALY INFO:::
    An exception occurred. Shutting down server...
    EXCEPTION CLASS::: java.lang.ExceptionInInitializerError
    com.siebel.etl.net.QServer.setSpill(QServer.java:159)
    com.siebel.etl.net.QServer.<init>(QServer.java:84)
    com.siebel.etl.net.QServer.main(QServer.java:420)
    ::: CAUSE :::
    MESSAGE:::Application Manager Failed Initialization
    EXCEPTION CLASS::: com.siebel.etl.bootup.ApplicationManagerInitializationException
    com.siebel.etl.bootup.ApplicationManager.initFileSource(ApplicationManager.java:157)
    com.siebel.etl.bootup.ApplicationManager.initSysProps(ApplicationManager.java:79)
    com.siebel.etl.bootup.ApplicationManager.<clinit>(ApplicationManager.java:62)
    com.siebel.etl.net.QServer.setSpill(QServer.java:159)
    com.siebel.etl.net.QServer.<init>(QServer.java:84)
    com.siebel.etl.net.QServer.main(QServer.java:420)
    ::: CAUSE :::
    MESSAGE:::/oba/BI/DAC/bifoundation/dac/conf/server.properties (No such file or directory)
    EXCEPTION CLASS::: java.io.FileNotFoundException
    java.io.FileInputStream.open(Native Method)
    java.io.FileInputStream.<init>(FileInputStream.java:106)
    java.io.FileInputStream.<init>(FileInputStream.java:66)
    com.siebel.etl.bootup.ApplicationManager.initFileSource(ApplicationManager.java:151)
    com.siebel.etl.bootup.ApplicationManager.initSysProps(ApplicationManager.java:79)
    com.siebel.etl.bootup.ApplicationManager.<clinit>(ApplicationManager.java:62)
    com.siebel.etl.net.QServer.setSpill(QServer.java:159)
    com.siebel.etl.net.QServer.<init>(QServer.java:84)
    com.siebel.etl.net.QServer.main(QServer.java:420)
    Dec 23, 2010 5:49:33 AM com.siebel.etl.net.QServer <init>
    SEVERE:
    Shutting down server...
    what could be the Issue.
    Regards,
    DB

    Listen Sheikh Abdullah, if u don't need remote access to that server over secure conn., don't use password file authentification but change REMOTE_LOGIN_PASSWORDFILE to NONE and when u conn thru OEM as sysdba try to change his pass and then try conn thru command promt(CP) usin that new pass.
    Or recreate pass file adding new pass in it, set REMOTE_LOGIN_PASSWORDFILE to exclusive or shared and conn thru CP using password file pass.
    Try this possible solutions in order u wish.

  • Siebel 8.0, cannot start Siebel Server in Linux 5.1

    Hi there,
    I am trying to install Siebel 8.0 on an AWS cloud server, using Linux 5.1. It is 32-bit with 1.7 GB of RAM. My Db is Oracle 11g, located on another server (necessary to free up the limited amount of RAM). I can sqlplus and odbcsql ok to it. For some reason, however, I am unable to get the Siebel Server to start properly.
    When I log into srvrmgr ( srvrmgr /e SBA_80 /g siebel:2320 /u sadmin /p sadmin), it connects, but shows the siebel server is unavailable:
    srvrmgr> list servers show SBLSRVR_NAME, SV_DISP_STATE, INSTALL_DIR
    SBLSRVR_NAME SV_DISP_STATE INSTALL_DIR
    siebel Not available /u02/siebel80/siebsrvr
    Does anyone know if Siebel 8.x can be installed in this Linux 5.1 environment? If so, any suggestions why Siebel Server is unavailable? Also, when we run evt (for both installs, I believe), we get a critical error to upgrade the OS to 2.6.5-7.97-bigsmp. What does this mean, and how serious is it?
    Thanks,
    Jon
    PS - here is some more log information:
    I checked /siebel80/srvrmgr/log/srvrmgr.log, and this is the output:
    \ufeff2021 2010-02-25 19:48:24 2010-02-25 19:50:59 -0500 00000003 001 003f 0001 09 srvrmgr 11334 -1208752448 /u02/siebel80/siebsrvr/log/srvrmgr.log 8.0 [20405] ENU
    GenericLog GenericError 1 0000668b4b87313d:0 2010-02-25 19:48:24 (scbconn.cpp (164) err=1313725 sys=0) SBL-SVR-03005: No server connect string for Siebel Component servermgr in Siebel Enterprise SBA_80, Siebel Server siebel
    GenericLog GenericError 1 0000000a4b872c46:0 2010-02-25 19:50:59 (sacmdl.cpp (440) err=591864 sys=591882) SBL-ADM-02040: INTERNAL: SA_ERR_BREAK
    Here is our evt output, abridged version:
    $ ./evt
    Running checks defined in file [evt.ini]. Please wait..
    Running a [8.0] version validation with [VAN] flavor
    Total Checks : 5
    Checks Passed : 1
    Checks Failed : 4 (1 critical failures, 3 warnings)
    Checks Skipped: 0
    Critical Failures:
    Environment Settings
    Please upgrade Operating System version to 2.6.5-7.97-bigsmp - the current version is 2.6.18-53.1.13.9.2.el5xen
    The current value of SIEBEL_OSD_LATCH is not defined
    The current value of SIEBEL_OSD_NLATCH is not defined
    Environment variable SIEBEL_MEMORY_ALLOCATOR has correctly not been defined
    Please set Environment variable SIEBEL_ASSERT_MODE to 0 - currently the value is not defined

    Hello all,
    I was eventually able to get the install to work with Siebel 8.1. I believe there may have been some compatibility issues with 8.0 and our AWS Linux environment. When I ran 8.1, I was eventually able to get thru all the installs and connect to my Siebel server.
    Memory was also an issue, since 1.7 GB is all that's available for a 32-bit machine. We resolved this by putting Oracle Db on another AWS image.
    A few issues that I ran into and what I did that worked for me:
    - used sadmin/sadmin for High/Low users, for some reason my custom users didn't work for me.
    - updated LD_LIBRARY_PATH often! I set it before install process, and after running any siebenv.sh scripts:
    LD_LIBRARY_PATH=$ORACLE_HOME/lib:$LD_LIBRARY_PATH

  • Oidldapd service does not start for OID on LINUX

    Hi,
    I have installed OCS 9.0.3.0.0 on LINUX, all components i.e. Infrastructure, Storage and MiddleTier are installed properly (without giving any error). While trying to start OID with oidmon and oidctl (through command line), oidmon is started but OID is not available.
    Surprisingly oidldapd01.log file is not found (as log registers), where to locate this file ?
    OIDMON.LOG registers the following entries :
    2003/05/01:17:37:16Starting Monitor Process, PID=1374
    2003/05/01:17:37:16OIDLDAPD server terminated normally
    2003/05/01:17:37:16Check log file oidldapd01.log
    2003/05/01:17:37:16Deleting OIDLDAPD instance 1 from Process table
    2003/05/01:17:37:18OIDLDAPD Instance 1 deleted from registry
    2003/05/01:17:37:18ODISRV server terminated normally
    2003/05/01:17:37:18Check log file odisrv00.log
    2003/05/01:17:37:18Deleting ODISRV instance 1 from Process table
    2003/05/01:17:37:19ODISRV Instance 1 deleted from registry
    2003/05/01:17:41:40Updating Process Table...
    2003/05/01:17:41:40Starting OIDLDAPD Server, PID=1478
    2003/05/01:17:41:40Exec of OIDLDAPD Server failed with error=2
    2003/05/01:17:41:41OIDLDAPD Instance 1 added into registry
    2003/05/01:17:41:41Updating Process Table...
    2003/05/01:17:41:51OIDLDAPD server terminated normally
    2003/05/01:17:41:51Check log file oidldapd01.log
    2003/05/01:17:41:51Deleting OIDLDAPD instance 1 from Process table
    2003/05/01:17:41:52OIDLDAPD Instance 1 deleted from registry
    2003/05/01:18:10:15Updating Process Table...
    2003/05/01:18:10:15Starting OIDLDAPD Server, PID=1620
    2003/05/01:18:10:15Exec of OIDLDAPD Server failed with error=2
    2003/05/01:18:10:15OIDLDAPD Instance 1 added into registry
    2003/05/01:18:10:15Updating Process Table...
    2003/05/01:18:10:25OIDLDAPD server terminated normally
    2003/05/01:18:10:25Check log file oidldapd01.log
    2003/05/01:18:10:25Deleting OIDLDAPD instance 1 from Process table
    2003/05/01:18:10:27OIDLDAPD Instance 1 deleted from registry
    Any help ?
    Regards
    Ashwani

    Hi Manuel,
    I tested on my client, and I also keep getting the error 1053, which indicates timeout and the new created service can not be started during the limit time, so you can try to change the service time limit, please note this needs to change registry value,
    Using Registry Editor incorrectly can cause serious problems:
    In Registry Editor, locate, and then right-click the following registry subkey:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control
    a.Point to New, and then click DWORD Value. In the right pane of Registry Editor, notice that New Value #1 (the name of a new registry entry) is selected for editing.
    b.Type ServicesPipeTimeout to replace New Value #1, and then press ENTER.
    c.Right-click the ServicesPipeTimeout registry entry that you created in step c, and then click Modify. The Edit DWORD Value dialog box appears.
    d.In the Value data text box, type TimeoutPeriod, and then click OK
    Refer to:
    Error 1053: The service did not respond to the
    start or control request in a timely fashion - When trying to start the server service.
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    If there is anything else regarding this issue, please feel free to post back.
    Best Regards,
    Anna Wang

  • Ora-01031 error while starting oracle9i server on linux advanced redhat 3.1

    I am encountering some errors while trying to start the oracle9i database on linux server.
    I am getting the error ora-01031 while trying to connect to the server as sysdba.
    I give the following commands
    sqlplus /nolog
    Sql> conn sys/xxxx as sysdba
    ERROR:
    ORA-01031: insufficient privileges
    The listener service is started. The user "oracle" belongs to the groups oinstall and dba on linux.
    When I try to connect to the sys account through enterprise manager console, it connects.
    But when I try to start the database it says
    ERROR:
    ORA-01031: insufficient privileges
    I am trying to solve this problem since the past two days but to no avail.
    The last time the database was used it was not shutdown properly (we had rebooted the linux server through command prompt).
    Might be this has caused some problem.
    I would be very grateful to you if you could spare some time and look into this problem.

    Listen Sheikh Abdullah, if u don't need remote access to that server over secure conn., don't use password file authentification but change REMOTE_LOGIN_PASSWORDFILE to NONE and when u conn thru OEM as sysdba try to change his pass and then try conn thru command promt(CP) usin that new pass.
    Or recreate pass file adding new pass in it, set REMOTE_LOGIN_PASSWORDFILE to exclusive or shared and conn thru CP using password file pass.
    Try this possible solutions in order u wish.

  • Starting OBIEE 11g on Linux 64 bit

    Hi,
    I installed OBIEE 11g on Linux 64 bit and it worked fine after installation. I rebooted the system and I need to start it again.
    I am trying to run
    run-sa.sh
    run-saw.sh
    etc.
    but it looks like the scripts are broken:
    ./run-saw.sh: line 43: syntax error near unexpected token `('
    ./run-saw.sh: line 43: `ANA_INSTALL_DIR=$N($P(installLocation))'
    it looks like these scripts were not processed by the installer during installation, $N($P(installLocation)) should have been replaced by the installer with actual paths I assume.
    is there another way to start OBIEE?
    Thanks,
    Calin

    Are you sure you are running OBIEE 11g? YOu are meant to use those scripts any more in 11g. See this post:
    Startup Scripts for OBIEE 11g on Linux

  • Auto start Oracle instance in linux

    Can I configure oracle to auto start an oracle instance in linux environment ?

    Here are the steps to enable the oracle service start automatically during the system boot
    Login as root in Linux box to execute the following steps
    1. the flag set to Y in /etc/oratab file with the respective instance
    2. Copy the oracle script in /etc/init.d folder
    3. change the permission < chmod 755 <script filename>
    4. add the service <chkconfig --add <script filename>
    5 Put the service auto on <chkconfig <script filename> on >
    6. To verify the oracle service startup automatic < service <script filename> stop > < service <script filename> start >
    Regards
    N Jandial

  • Starting Oracle XE on linux by /etc/init.d/oracle-xe start

    Hello,
    I installed Oracle Database 10g Express Edition on a Linux Ubuntu 7.04 (feisty)
    following official installation instructions found here
    http://www.oracle.com/technology/software/products/database/xe/files/install.102/b25144/toc.htm#BABCEAHD
    but I noticed a weird behavior.
    The installation process was ok.
    The configuration process (/etc/init.d/oracle-xe configure) was also ok.
    I set everything on default except for the “starting on boot” option I choose NO, because the instructions let me understand that I can start the service manually by the command:
    $ /etc/init.d/oracle-xe start
    The configuration process at the end also started the service well, so I could test my new oracle installation on my web browser following the url http://127.0.0.1:8080/apex
    Everything went fine... but...
    On the next boot I wanted to start my oracle so I typed
    sudo /etc/init.d/oracle-xe start
    but nothing happened and the server didn't go up.
    Looking into to script /etc/init.d/oracle-xe
    we can find this switch
    case "$1" in
    start)
         if test -f "$CONFIGURATION"
         then
              if test "$ORACLE_DBENABLED" != "true"
              then
                   exit 0
              fi
         else
         echo "Oracle Database 10g Express Edition is not configured. You must run
    '/etc/init.d/oracle-xe configure' as the root user to configure the database."
              exit 0
         fi
         start
    this means that if you chose NO (N) for the “starting on boot” option on the configuration process (NB this choice put false in the env variable ORACLE_DBENABLED) you can't start the dbms by this script.
    I try comment the few lines
         then
              #if test "$ORACLE_DBENABLED" != "true"
              #then
              #     exit 0
              #fi
         else
    and this time the server starts well.
    So I deduced that something was wrong with the script and the official installation instructions.

    Yes... Thank you.
    But I saw the problem could to be simple avoided using the options
    enable/disable for the script /etc/init.d/oracle-xe,
    If you choose not to start oracle at boot time, you can start it
    manually by the sequence
    /etc/init.d/oracle-xe enable
    /etc/init.d/oracle-xe start
    then when you want to stop it
    /etc/init.d/oracle-xe stop
    /etc/init.d/oracle-xe disable
    by this last command we don't make oracle restart
    at the next system boot.
    I think it would be a good thing to update the reference
    documentation at
    http://www.oracle.com/technology/software/products/database/xe/files/install.102/b25144/toc.htm#BABCEAHD
    to explain this situation better.

  • STARTING DATABASE : PROBLEM OF Linux Error: 23: Too many open files in syst

    Hi everybody,
    I am running an RMAN script and get this error,
    9> @/u01/app/oracle/admin/devpose/backup/configuration.rcv
    RMAN> ###################################################################
    2> # Configuration file used to set Rman policies.
    3> #
    4> ###################################################################
    5>
    6> CONFIGURE DEFAULT DEVICE TYPE TO DISK;
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of configure command at 08/26/2009 20:03:30
    RMAN-06403: could not obtain a fully authorized session
    ORA-01034: ORACLE not available
    RMAN> CONFIGURE RETENTION POLICY TO REDUNDANCY 1;
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of configure command at 08/26/2009 20:03:30
    RMAN-06403: could not obtain a fully authorized session
    ORA-01034: ORACLE not available
    RMAN> #CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 7 DAYS;
    2> CONFIGURE DEVICE TYPE DISK PARALLELISM 2;
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of configure command at 08/26/2009 20:03:30
    RMAN-06403: could not obtain a fully authorized session
    ORA-01034: ORACLE not available
    RMAN>
    RMAN> CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT '/u01/app/oracle/backup/db/ora_df%t_s%s_s%p';
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of configure command at 08/26/2009 20:03:30
    RMAN-06403: could not obtain a fully authorized session
    ORA-01034: ORACLE not available
    But this problem is understandable, as the database is not running. The main problem why database is not running, I have found the reason but do not understand how to solve the problem.
    Since, the database was not running, I tried to startup the database, I then came across the following which is my problem (Why so many files are open? Linux OS error says too many files open. See below,
    SQL> conn /as sysdba
    Connected to an idle instance.
    SQL> startup
    ORACLE instance started.
    Total System Global Area 419430400 bytes
    Fixed Size 779516 bytes
    Variable Size 258743044 bytes
    Database Buffers 159383552 bytes
    Redo Buffers 524288 bytes
    Database mounted.
    ORA-00313: open failed for members of log group 2 of thread 1
    ORA-00312: online log 2 thread 1: '/u01/app/oracle/oradata/devpose/redo02.log'
    ORA-27041: unable to open file
    Linux Error: 23: Too many open files in system
    Can anybody has run into such problem and guide me to a solution, please?
    Thanks

    Hi,
    yes, this DB was functioning o.k. this configuration script was part of RMAN daily backup.
    Last night the backup failed. So, when I opened "Failed job" in the EM, I saw this type of messages.
    That was the starting point. Gradually, I tried to narrow down on to the actual problem and found the findings as I have posted.
    One way of sovling problem, I thought that, all these processes I would kill and then try to open the database, it might startup. However, that wouldnot lead me in ensuring this won't occur again.
    That's why I am trying to understand why it should open, so many processes (why spawn so many .flb files?) Any thoughts you have around this?
    I will try to restart the OS as the last resort.
    Thanks for your help and suggestions.
    Regards,

  • Starting Oracle-Xe on Linux fedora core 5

    Dear fourm members,
    I had Installed Oracle Xe on linux fedora core 5 and configure it.
    When i try to start the oracle Xe server I get the follwing error.
    # /etc/init.d/oracle-xe start
    Starting Oracle Net Listener.
    Starting Oracle Database 10g Express Edition Instance.
    Failed to start Oracle Net Listener using /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/tnslsnr and Oracle Express Database using /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/sqlplus.
    what can i do to start the service.

    Failed To Start Oracle Net Listener

  • Cannot start Cube Viewer under Linux

    The following bug was found for Windows platform.
    Do anyone have the patch for LINUX- SUSE. I have got the same problem under Linux but the patch is used for Window but it isn't any pacth for Linux there.
    The below description ist the same as for UNIX.
    fact: MS Windows NT
    fact: MS Windows 2000
    fact: MS Windows XP
    fact: Oracle OLAP Server 9.2.0.1.0
    fact: Oracle Enterprise Manger 9.2.0.1.0
    symptom: Olap Cube Viewer cannot be started
    symptom: An empty error window with a fire alarm symbol is displayed
    cause: Running Oracle 9.2.0.1.0 Enterprise Edition with the OLAP option on
    MS Windows.
    In Oracle Enterprise Manager Console:
    1. Startup the 9.2.0.1.0 Relational Database System.
    2. In Enterprise Manager: Select subtree Warehouse + OLAP + Cubes + SH
    3. Right-click on the COST_CUBE and select CUBE VIEWER from the popup menu.
    Minimize the Oracle Enterprise Manager Console window to see the window that
    is opened in the background. It says: "No materialized views have been
    created for this cube ... Do you want to continue viewing the cube?"
    => select button "Yes".
    Then the Oracle Enterprise Manager Cube Viewer starts loading. An error
    window with a fire alarm symbol and with an OK-button appears. There is no
    window title or error text displayed in the window.
    Selecting the OK-button will close the cube viewer window and the 9.2.0.1
    RDBMS instance is no longer running.
    fix:
    This problem is handled in <bug:2407685>
    Apply the following 9.2.0.1 Oracle OLAP patch like described in the patch
    readme file and reboot the machine (always create a backup before applying a
    patch):
    Patchnumber: 2323002
    OLAPI API FAILS ON WINDOWS 2000 & XP
    Product:Oracle OLAP Version:Oracle 9.2.0.1
    Platform:MS Windows NT/2000/XP Server
    To download the patch login to http:
    //metalink.oracle.com
    Select button "Patches", enter the Patch Number 2323002 and select
    the "SUBMIT" button.
    Thanks in advance for your help.
    Mehdi

    Patch/one-off 2323002 is not an issue with Linux. It addresses a bug on Windows 2000 & XP. Note that the Cube Viewer currently does not work with the SH Cubes. In short, there is an issue with support of denormalized snow flake schema. This will be fixed for Linux once the upcoming 9.2.0.2 patch set is released on MetaLink around Oct 4th.
    Cube Viewer does require that the OLAPI jar files located in $ORACLE_HOME\olap\olapi\lib be the exact same version as the Database Server. So you may have to update the OLAPI jar files on the machine that is running Cube Viewer. Download from the Database Server the correct express*.jar file and copy it to the OLAPI lib directory. Another thing, you may be running into the bug where CV hangs while writing to the log file. To fix this problem, please email me and ask for the Cube Viewer zip. I'll send you some files and intstructions.

  • Problems in starting SQL Developer in Linux

    Dear Friends,
    I cannot start SQL Developer in Fedora Core 5 Linux Enviroment. I do not know what exactly is the problem. so Please see the Snap shot the Problem. It Refrains from inspite of it showing as if to Open. On windows it works fine.
    Snap Shot starts here
    [oracle@sydney sqldeveloper]$ sh sqldeveloper
    Oracle SQL Developer 1.0
    Copyright (c) 2005 Oracle Corporation. All Rights Reserved.
    Working directory is /home/oracle/sqldeveloper/jdev/bin
    Ends Here
    Please give me a Solution
    Regards,
    Sydney.

    I had a problem getting it to run in Ubuntu when launching from an XFCE launcher. Basically the file sqldeveloper doesn't work. What I did was to copy sqldeveloper to SQLDeveloper, change the ./ to the full path ( in my case /home/username/sqldeveloper/ ), then launch SQLDeveloper instead of sqldeveloper. Then it all worked fine.

  • Auto-start OC4J process after Linux reboot

    Oracle 11gR2, OC4J 10g (10.1.3.5.0), RHEL5 64 bit
    Hi All,
    I am trying to figure out how to get my oc4j process start at boot time. I already have a dbora script setup. I tried adding the following line to my dbora/dbstart script but it did not do anything:
    #!/bin/sh
    # chkconfig: 345 99 10
    description: Oracle auto start-stop script.
    ORACLE_OC4J_HOME=/u02/oc4j
    JAVA_HOME=/usr/java/jdk1.6.0_21/
    su - $ORACLE_OWNER -c "$ORACLE_OC4J_HOME/bin/oc4j -start"
    I read somewhere that I may need to put the entire path like:
    /usr/bin/java -jar /path/to/oc4j.jar &
    Just not sure where and how to put that path in the file.
    Thanks for your help all.
    JrOraDBA

    Hi,
    To run oc4j in the background, on Linux
    Execute the following command:
    nohup ./oc4j -start &
    to run oc4j in the background. The 'nohup' command ignores the hangup signal (closing the terminal window) and enables oc4j to continue running in the background.
    In rare cases, oc4j will not shutdown cleanly with the standard command:
    ./oc4j -shutdown -port 23791 -oc4jadmin <admin_pwd>
    In those cases, try the following command:
    java -jar admin_client.jar deployer:oc4j:localhost oc4jadmin <admin_pwd> -shutdown
    to stop the oc4j service.
    Thanks,
    Sharmela

  • Connection Refused when starting node manager on Linux

    Hi,
    I'm using Weblogic 6.1 SP 2 on Redhat Linux 7.1 with Sun JDK 1.3.1. When I'm running
    the Node Manager on one machine and try to connect to it from another machine (Admin
    Server) I'm getting the following message:
    <May 28, 2002 6:35:59 PM IDT> <Error> <NodeManager> <Could not start server 'EnvelopeManagedBackup'
    via Node Manager - reason: '[SecureCommandInvoker: Could not create a socket to the
    NodeManager running on host 'jarjar:5555' to execute command 'online null', reason:
    Connection refused: connect. Ensure that the NodeManager on host 'jarjar' is configured
    to listen on port '5555' and that it is actively listening]'>
    The Node Manager is listening on the server's listen address (jarjar) and on the
    correct port (5555). When running netstat -a | grep 5555 on the server I get the
    following (jarjar is the computer name):
    tcp 0 0 jarjar:5555 *:* LISTEN
    The admin server is registered in the nodemanager.hosts file.
    Can anyone help me on this?

    ....I happened to get "execute command 'online null'" because of a missing
    "Listen Address" and/or "Listen Port" entry in the "Remote Start" tab of the
    Administration Server.
    Node Manager passes on such values when starting up a managed server - if
    either is blank, the managed server can not identify the Admin Server to
    register to...
    Paola R.

Maybe you are looking for

  • Payables Open Interface

    Hi all, Now i am using the open interface to import the invoices and I have read from the Oracle Payables User's Guide that it will perform a lot of checking/validation before import. However it seems that some checking/validation that mentioned in t

  • Data model design in SAP BI

    Hi All, I have one requirement to design the data model for BI.  How to design a dataflow in BI. I know dataflow is different from data model. Could you pls let me know hoe to design it. Is there any model available ...so that i can refer. if not let

  • Inoperative Delete Button in Bluetooth

    The "Delete Selected Device" in the Bluetooth window does not work when I try to get rid of the Keypad. The + and Gear symbol work just fine but nothing happens when I click on the - , to try to delete the Keypad. Why is the - not working? Cheers Joh

  • How to approach ABAP OO programming the right way...

    Hello experts, I am an old school procedural ABAP programmer and I recently I have been experementing with ABAP Objects since I've read a few columns the advantages of ABAP OO and also currently learning its syntax. Now, does ABAP Objects conform to

  • Catalog backup hangs at 8% calculating size (Photoshop elements 10)

    I am trying to back up my catalog (+30,000 pics and video's ) to an external drive (full back up). The program starts calculating the size and then hangs at 8%. The catalog was on another computer before and I moved it by making a backup (successfull