Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: ORA-01034 , ORA-27101 , IBM AIX RISC System/6000 Error: 2

Re: ORA-01034 , ORA-27101 , IBM AIX RISC System/6000 Error: 2

From: Matthias Gresz <nospam_at_newsranger.com>
Date: Wed, 19 Sep 2001 14:49:22 GMT
Message-ID: <Sf2q7.5699$p77.18914@www.newsranger.com>


In article <9oa8nn$1edn$1_at_news6.isdnet.net>, DBA Casino Monté-Carlo says...

You have to start the oracle process with something like:

#!/bin/sh

ORA_HOME=/app/oracle/product/8.1.5
ORA_OWNER=oracle
ORACLE_SID=svi
export ORA_HOME
export ORACLE_SID
/app/oracle/product/8.1.5/bin/svrmgrl << EOF connect internal
startup
disconnect
exit

The listnere may be started by something like:

#!/bin/sh
#set -vx
ORA_HOME=/app/oracle/product/8.1.5

ORA_OWNER=oracle

if [ ! -f $ORA_HOME/bin/lsnrctl ]

then

echo "Oracle listener: cannot start"

exit

fi

su - $ORA_OWNER -c $ORA_HOME/bin/lsnrstart &

>
>Hi,
>I want to try to connect on Oracle Database, OS=AIX 4.3.3, Oracle server =
>8.1.6
>
>When I try to connect with SQLPLUW,
>I've this message :
>
>Connect system/manager_at_oratest
>
>SQL*Plus: Release 8.1.7.0.0 - Production on Me Sep 19 15:57:30 2001
>
>(c) Copyright 2000 Oracle Corporation. All rights reserved.
>
>ERROR:
>ORA-01034: ORACLE not available
>ORA-27101: shared memory realm does not exist
>IBM AIX RISC System/6000 Error: 2: No such file or directory
>
>If someone could help me.
>
>thank's
>
>
Received on Wed Sep 19 2001 - 09:49:22 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US