hi everybody
i am new in oracle
i just installed oracle 12c under centos 6.5 64x
after installation i could connect to https://oracle_12c.localdomain:1521/em/login but after restart i could not connect again
i opened a terminal and start like
[oracle@oracle_12c /]$ sqlplus
SQL*Plus: Release 12.1.0.2.0 Production on Sun Nov 8 01:22:33 2015
Copyright (c) 1982, 2014, Oracle. All rights reserved.
Enter user-name: sys as sysdba
Enter password:
Connected to an idle instance.
SQL> startup
ORA-01078: failure in processing system parameters
LRM-00109: could not open parameter file '/oracle/product/12.0.1/db_1/dbs/initdb1.ora'
SQL>
and when tried to startup
SQL> startup
ORA-01078: failure in processing system parameters
LRM-00109: could not open parameter file '/oracle/product/12.0.1/db_1/dbs/initdb1.ora'
SQL>
my bas_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
export TMP=/tmp
export TMPDIR=$TMP
export ORACLE_HOSTNAME=oracle_12c.localdomain
export ORACLE_UNQNAME=db1
export ORACLE_BASE=/oracle
export ORACLE_HOME=$ORACLE_BASE/product/12.0.1/db_1
export ORACLE_SID=db1
export PATH=/usr/sbin:$PATH
export PATH=$ORACLE_HOME/bin:$PATH
export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib
export CLASSPATH=$ORACLE_HOME/jlib:/$ORACLE_HOME/rdbms/jlib
what should i do
thank all of you