- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- ORA-01034: ORACLE not available
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-22-2002 06:16 AM
тАО11-22-2002 06:16 AM
I installed oracle. When I do sqlplus and I try to connect as system I get:
ERROR:
ORA-01034: ORACLE not available
ORA-27101: shared memory realm does not exist
HP-UX Error: 2: No such file or directory
What's the problem?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-22-2002 06:24 AM
тАО11-22-2002 06:24 AM
Re: ORA-01034: ORACLE not available
Could be a couple of things:
First, have you successfully created a database and is it started? Do a 'ps -ef |grep pmon' and check if you have a ora_pmon_
If you have, is your enviroment set up with correct ORACLE_SID?
export ORACLE_SID=
rgds
Andreas
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-22-2002 06:39 AM
тАО11-22-2002 06:39 AM
Re: ORA-01034: ORACLE not available
ORA-01034: ORACLE not available
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-22-2002 06:42 AM
тАО11-22-2002 06:42 AM
Re: ORA-01034: ORACLE not available
I am no oracle specialist but can it be so that you need to start a listener to connect to a database?
# su - oracle -c "lsnrctl start"
Gideon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-22-2002 06:48 AM
тАО11-22-2002 06:48 AM
Re: ORA-01034: ORACLE not available
From one of my erlier postings:
The easy way out is this:
Run the dbca assistant. This is a Java wizard that lets you set up the database whitout createing the scripts yourself.
To run:
export DISPLAY=yourworkstation:0.0
cd $ORACLE_HOME/bin/
./dbca
Fill in all the windows and the dbca can create the database for you.
BUT
what you should do is to select "Create script" in the last window.
This saves the create scripts for the database in a given location.
You can the edit and run these scripts one by one to have full controll over your database (as you should)
If one script fails, you just correct the error and start over until you have it right.
Andreas
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-22-2002 06:53 AM
тАО11-22-2002 06:53 AM
Re: ORA-01034: ORACLE not available
to connect as "system" you need to have a running and open database, because "system" is a database user.
If you have no database yet, you have to go by
connect internal
or
connect ... as sysdba
Then you can
- startup nomount
- create a database
- apply catalog.sql / catprog.sql
- connect system/manager
Hope this helps
Volker
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-22-2002 07:11 AM
тАО11-22-2002 07:11 AM
Solutionmkcfg.sh: will create the configuration directories and files for a database. Edit definition of ORACLE_HOME here if necessary. Edit or compatibility options for versions other than 8.1.7.
TEST8i: is the configuration for a test database. It contains all the parameters except ORACLE_HOME
create8i.sh: will create a database and is designed for oracle 8i.
destroydb.sh: will destroy a test database.
Assumes:
Oracle is installed in /u1/oracle/product/8.1.7
The mount points /u2, /u3, /u4, /u5, and /u99 exist.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-23-2002 11:07 AM
тАО11-23-2002 11:07 AM
Re: ORA-01034: ORACLE not available
if ORACLE_SID is not set then set it.