// 다운로드 및 설치 진행
# curl -o oracle-database-preinstall-18c-1.0-1.el7.x86_64.rpm https://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/oracle-database-preinstall-18c-1.0-1.el7.x86_64.rpm
# yum -y localinstall oracle-database-preinstall-18c-1.0-1.el7.x86_64.rpm
# yum -y localinstall oracle-database-xe-18c-1.0-1.x86_64.rpm
// SYSDBA 계정의 패스워드를 설정 합니다. 최소한 하나의 문자가 대문자로 설정 -0-;;
# /etc/init.d/oracle-xe-18c configure
//Sqlplus 를 실행하기 위한 환경 설정
// oracle 계정으로 로그인 진행
# su - oracle
// 환경 변수 설정 진행
# vi ~oracle/.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 PATH
# 해당 부분을 추가 하였습니다.
export ORACLE_HOME=/opt/oracle/product/18c/dbhomeXE
export TNS_ADMIN=$ORACLE_HOME/network/admin
export ORACLE_SID=XE
---------------------------------------------------------------------------------------------------------------------
// sqlplus 로그인 진행
# /opt/oracle/product/18c/dbhomeXE/bin/sqlplus '/as sysdba'
// Oracle User 계정 생성 , 계정명에 c## 이 들어가야하는거 같습니다 -0-;;;
SQL> startup;
SQL> create user c##gmission identified by c##testuser;
SQL> grant connect ,resource ,dba to c##testuser;
//방화벽 목록추가
# firewall-cmd --permanent --add-port=1521/tcp
# systemctl restart firewalld
// oracle 서비스 시스템 시작시 구동 진행
# systemctl enable oracle-xe-18c
부족한 내용이지만 읽어주셔서 감사합니다 (__)
'Linux' 카테고리의 다른 글
Samba 및 NFS Server 구성 요소 설치 진행 하여 동일한 디렉터리 공유 진행 (0) | 2022.03.02 |
---|---|
[RHEL 7] Samba [CIFS,SMB] 공유 서비스 설치 (0) | 2020.08.31 |
GhostScript , Ghost4j를 이용한 PDF TO TIFF 변환 예제 입니다 (2) | 2020.01.08 |
[CentOS 6.9] SNMP 로그로 인한 /var/log/messages 파일 용량 증가 처리 (0) | 2018.07.18 |
[CentOS 6.9] postfix를 설치하여 메일 발송 테스트 진행 (0) | 2017.08.30 |