Sponsored Content
Operating Systems Solaris Can't create database after Oracle Database installation Post 302556544 by solaris_user on Monday 19th of September 2011 04:46:27 AM
Old 09-19-2011
Can't create database after Oracle Database installation

I installed Oracle 10 software on Solaris 11 Express, everything was fine execpt I can't create database using dbca.rsp file. I populated file with following options.

Code:
 OPERATION_TYPE = "createDatabase" 
GDBNAME = "solaris_user.domain.com"  
SID = "solaris_user" 
TEMPLATENAME = "General Purpose"  
SYSPASSWORD = "secret" 
SYSTEMPASSWORD = "secret"  
EMCONFIGURATION = "none" 
SYSMANPASSWORD = "secret"
DBSNMPPASSWORD = "secret"  
DATAFILEDESTINATION=/oradata  
RECOVERYAREADESTINATION=/orarecovery  
STORAGETYPE=FS 
LISTENERS = "LISTENER"

And when I start creation of new database I get following output

Code:
$ORACLE_HOME/bin/dbca -silent -cloneTemplate -datafileDestination /oradata -responseFile /etc/opt/oracle/dbca.rsp
sh: line 1: showrev: not found
sh: line 1: showrev: not found
Copying database files
1% complete
2% complete
4% complete
11% complete
12% complete
100% complete
Look at the log file "/opt/oracle/product/10.2.0.1.0/cfgtoollogs/dbca/developbase1/developb2.log" for further details

And then log file says
Code:
Copying database files
DBCA_PROGRESS : 1%
DBCA_PROGRESS : 2%
ORA-27102: out of memory

DBCA_PROGRESS : 4%
DBCA_PROGRESS : 11%
DBCA_PROGRESS : 12%
ORA-01034: ORACLE not available

ORA-01034: ORACLE not available

DBCA_PROGRESS : 100%

My /etc/project file looks like this

Code:
cat /etc/project 
user.oracle:100::oracle:oinstall:process.max-sem-ids=(priv,100,deny);
process.max-sem-nsems=(priv,256,deny);process.max-shm-ids=(priv,100,deny);
project.max-shm-memory=(priv,1073741824,deny)


Last edited by solaris_user; 09-19-2011 at 05:58 AM..
 

5 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

database installation on unix(solaris)

Hello all, Which partition on solaris is appropriate for software instalations? I have to install a fress database. i appreciate your time, em (1 Reply)
Discussion started by: emsakopa
1 Replies

2. UNIX for Dummies Questions & Answers

UNIX Database / Application Installation

Greetings, forgive me if this is listed in another thread somewhere, I am short on time. I am being interviewed for the position of UNIX Database and Job code installer for a consulting firm. I have never installed or worked on a native UNIX system. I have been running Linux (RH,SuSE,Slackware)... (3 Replies)
Discussion started by: OllieTech
3 Replies

3. Solaris

Oracle Database 10g installation question

I wanted to ask how do i assign the control files and archive log to be stored in different volume? I didn't come through any selection for that during the GUI installation. :) Thanks in advance for any reply. p/s: I will appreciate it also if anyone can provide me a link for me to go... (1 Reply)
Discussion started by: beginningDBA
1 Replies

4. UNIX and Linux Applications

Really simple shell script to create oracle database

Hello , I am new in this forum and need your help as I am totally confused :confused: I read a lot of threads and tried to search a lot but did not get the exact answer to my question. I just want a simple (content wise may be long) shell script to create oracle database. In detail:... (5 Replies)
Discussion started by: rahoolm
5 Replies

5. UNIX and Linux Applications

Identify a specific environment Oracle variable to connect a remote Oracle database ?

Good evening I nned your help pls, In an unix server i want to connect to a remote oracle databse server by sqlplus. I tried to find out the user/passwd and service name by env variable and all Ive got is this: ORACLE_SID_REPCOL=SCL_REPCOL ORACLE_SID=xmeta ORACLE_SID_TOL=SCL_PROTOLCOL... (2 Replies)
Discussion started by: alexcol
2 Replies
Apache::Session::Store::Oracle(3pm)			User Contributed Perl Documentation		       Apache::Session::Store::Oracle(3pm)

NAME
Apache::Session::Store::Oracle - Store persistent data in a Oracle database SYNOPSIS
use Apache::Session::Store::Oracle; my $store = new Apache::Session::Store::Oracle; $store->insert($ref); $store->update($ref); $store->materialize($ref); $store->remove($ref); DESCRIPTION
Apache::Session::Store::Oracle fulfills the storage interface of Apache::Session. Session data is stored in a Oracle database. SCHEMA
To use this module, you will need at least these columns in a table called 'sessions': id varchar2(32) # or however long your session IDs are. a_session long To create this schema, you can execute this command using the sqlplus program: CREATE TABLE sessions ( id varchar2(32) not null primary key, a_session long ); If you use some other command, ensure that there is a unique index on the table's id column. CONFIGURATION
The module must know what datasource, username, and password to use when connecting to the database. These values can be set using the options hash (see Apache::Session documentation). The options are DataSource, UserName, and Password. Example: tie %hash, 'Apache::Session::Oracle', $id, { DataSource => 'dbi:Oracle:database', UserName => 'database_user', Password => 'K00l' }; Instead, you may pass in an already-opened DBI handle to your database. tie %hash, 'Apache::Session::Oracle', $id, { Handle => $dbh }; The last option is LongReadLen, which specifies the maximum size of the session object. If not supplied, the default maximum size is 8 KB. AUTHOR
This modules was written by Jeffrey William Baker <jwbaker@acm.org> A fix for the commit policy was contributed by Michael Schout <mschout@gkg.net> SEE ALSO
Apache::Session, Apache::Session::Store::DBI perl v5.10.1 2010-10-18 Apache::Session::Store::Oracle(3pm)
All times are GMT -4. The time now is 05:23 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy