본문 바로가기
정보관리(데이터베이스, DB)/오라클

Oracle 설치 18c

by 3604 2023. 11. 24.
728x90
[oracle@MehmetSalih ~]$ cat .bash_profile
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
PATH=$PATH:$HOME/.local/bin:$HOME/bin

export ORACLE_HOME=/u01/database
export ORACLE_BASE=/u01/app/oracle
export PATH=$ORACLE_HOME/bin:$ORACLE_HOME/OPatch:$PATH
export LD_LIBRARY_PATH=$ORACLE_HOME/lib:$ORACLE_HOME/lib32
export LIBPATH=$ORACLE_HOME/lib:$ORACLE_HOME/lib32
export ORACLE_SID=DEVECI18C
export NLS_LANG=AMERICAN_AMERICA.WE8ISO8859P9
export PATH

 

After the Oracle database environment has been set, the Database Configuration Assistant will be opened as follows when you open the vncserver with the oracle user and write the dbca from the terminal.

With this tool you can create, delete and configure databases.

In the first step, we will create a database and select create database and proceed next.

 

728x90