|
linux9에 oracle 19c 싱글 설치시 검토사항
os : luckyos 는 9.5버젼
Oracle 19c 설치 소프트웨어:
oracle-database-preinstall-19c-1.0-1.el9.x86_64.rpm
LINUX.X64_193000_db_home.zip
p6880880_190000_Linux-x86-64.zip
p35775632_190000_Linux-x86-64.zip
p35042068_190000_Linux-x86-64.zip
설치 프로그램과 db 패치 파일이다.
1.1계정및 그룹추가.
groupadd -g 54321 oinstall
groupadd -g 54322 dba
groupadd -g 54323 oper
useradd -u 54321 -g oinstall -G dba,oper oracle
1.2
오라클 base 디렉토리 생성 : 중요 후에 패치를 위한 공간도 여기를 사용 하니 크게 잡도록
mkdir -p /u01/ora/software
mkdir -p /u01/ora/data
mkdir -p /u01/ora/app
chown -R oracle /u01/ora
1.3 os update
dnf update -y
1.4 사전 설치 소프트웨어 dowmload
cd u01/software
curl -o oracle-database-preinstall-19c-1.0-1.el9.x86_64.rpm https://yum.oracle.com/repo/OracleLinux/OL9/appstream/x86_64/getPackage/oracle-database-preinstall-19c-1.0-1.el9.x86_64.rpm
1.5 설치
dnf -y localinstall oracle-database-preinstall-19c-1.0-1.el9.x86_64.rpm
1.6
vi /etc/sysctl.conf
fs.file-max = 6815744
kernel.sem = 250 32000 100 128
kernel.shmmni = 4096
kernel.shmall = 1073741824
kernel.shmmax = 4398046511104
kernel.panic_on_oops = 1
net.core.rmem_default = 262144
net.core.rmem_max = 4194304
net.core.wmem_default = 262144
net.core.wmem_max = 1048576
net.ipv4.conf.all.rp_filter = 2
net.ipv4.conf.default.rp_filter = 2
fs.aio-max-nr = 1048576
net.ipv4.ip_local_port_range = 9000 65500
1.7
vi /etc/security/limits.d/oracle-database-preinstall-19c.conf
oracle soft nofile 1024
oracle hard nofile 65536
oracle soft nproc 16384
oracle hard nproc 16384
oracle soft stack 10240
oracle hard stack 32768
oracle hard memlock 134217728
oracle soft memlock 134217728
위 값들은 서버 spec 에 따라 조정이 필요.
1.8 필수 package 설치
dnf install -y bc
dnf install -y binutils
dnf install -y compat-openssl11
dnf install -y elfutils-libelf
dnf install -y fontconfig
dnf install -y glibc
dnf install -y glibc-devel
dnf install -y ksh
dnf install -y libaio
dnf install -y libasan
dnf install -y liblsan
dnf install -y libX11
dnf install -y libXau
dnf install -y libXi
dnf install -y libXrender
dnf install -y libXtst
dnf install -y libxcrypt-compat
dnf install -y libgcc
dnf install -y libibverbs
dnf install -y libnsl
dnf install -y librdmacm
dnf install -y libstdc++
dnf install -y libxcb
dnf install -y libvirt-libs
dnf install -y make
dnf install -y policycoreutils
dnf install -y policycoreutils-python-utils
dnf install -y smartmontools
dnf install -y sysstat
dnf install -y glibc-headers
dnf install -y ipmiutil
dnf install -y libnsl2
dnf install -y libnsl2-devel
dnf install -y net-tools
dnf install -y nfs-utils
# Added by me.
dnf install -y gcc
dnf install -y unixODBC
1.9
systemctl stop firewalld
systemctl disable firewalld
2.0 오라클 설치 디렉토리 생성
mkdir -p /u01/app/oracle/product/19.0.0/dbhome_1
mkdir -p /u02/oradata
chown -R oracle:oinstall /u01 /u02
chmod -R 775 /u01 /u02
2.1 hostname 변경
hostnamectl set-hostname ol9-19.localdomain
2.2 오라클 user 프로파일
================================================
export TMP=/tmp
export TMPDIR=$TMP
export ORACLE_HOSTNAME=ol9-19.localdomain
export ORACLE_UNQNAME=MYSONG
export ORACLE_BASE=/u01/app/oracle
export ORACLE_HOME=$ORACLE_BASE/product/19.0.0/dbhome_1
export ORA_INVENTORY=/u01/app/oraInventory
export ORACLE_SID=MYSONGDB
export DATA_DIR=/u02/oradata
export PATH=/usr/sbin:/usr/local/bin:$PATH
PATH=$ORACLE_HOME/bin:$ORACLE_HOME/OPatch:$PATH
export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib
export CLASSPATH=$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib
============================================
2.3
=====================================================
echo ". /home/oracle/scripts/setEnv.sh" >> /home/oracle/.bash_profile
cat > /home/oracle/scripts/start_all.sh <<EOF
#!/bin/bash
. /home/oracle/scripts/setEnv.sh
export ORAENV_ASK=NO
. oraenv
export ORAENV_ASK=YES
dbstart \$ORACLE_HOME
EOF
cat > /home/oracle/scripts/stop_all.sh <<EOF
#!/bin/bash
. /home/oracle/scripts/setEnv.sh
export ORAENV_ASK=NO
. oraenv
export ORAENV_ASK=YES
dbshut \$ORACLE_HOME
EOF
================
여기 까지 하시고...패치 하자
xhost +
export DISPLAY=:0.0
export LANG=en_US.UTF-8
export CV_ASSUME_DISTID=RHEL8
LINUX.X64_193000_db_home.zip 오라클 home 압축을 불고 install 실행 한번 하자.
unzip p35775632_190000_Linux-x86-64.zip
cd /u01/ora/software
unzip p6880880_190000_Linux-x86-64.zip -d $ORACLE_HOME/
unzip p35775632_190000_Linux-x86-64.zip
mv stubs.tar /u01/app/oracle/product/19.0.0/dbhome_1/lib/stubs/
$ /u01/app/oracle/product/19.0.0/dbhome_1/lib/stubs
$ tar -xf stubs.tar
p35042068_190000_Linux-x86-64.zip
unzip p35042068_190000_Linux-x86-64.zip
cd /u01/ora/software/35042068
/u01/app/oracle/product/19.0.0/dbhome_1/OPatch/opatch prereq CheckConflictAgainstOHWithDetail -ph ./
위 패치 까지 실행되면..
root 에서 실행 : xhost +
오라클 계정에서 실행
export DISPLAY=:0.0
export LANG=en_US.UTF-8
export CV_ASSUME_DISTID=RHEL8
설치후 ./runInstaller 실행 한다.
================================패치 로그
oracle-database-preinstall-19c-1.0-1.el9.x86_64.rpm
p35042068_190000_Linux-x86-64.zip
p35775632_190000_Linux-x86-64.zip
p6880880_190000_Linux-x86-64.zip
PatchSearch.xml
README.txt
stubs.tar
[oracle@ol9-19 software]$ cd 35042068
[oracle@ol9-19 35042068]$ ls
custom etc files README.html README.txt
[oracle@ol9-19 35042068]$
[oracle@ol9-19 35042068]$
[oracle@ol9-19 35042068]$ /u01/app/oracle/product/19.0.0/dbhome_1/OPatch/opatch prereq CheckConflictAgainstOHWithDetail -ph ./
Oracle Interim Patch Installer version 12.2.0.1.43
Copyright (c) 2024, Oracle Corporation. All rights reserved.
=================================================================================
PREREQ session
OPatch cannot locate your -invPtrLoc '/u01/app/oracle/product/19.0.0/dbhome_1/oraInst.loc'
OPatch failed with error code 106
[oracle@ol9-19 35042068]$ OPatch failed with error code 106
bash: OPatch: command not found...=============================================
=======================================================================
opatch 실행후 db 폐치를 실행하면 오류 발생..
압축늘 푼 바이너리는 oraInst.loc 이정보가 없으니.
OPatch cannot locate your -invPtrLoc '/u01/app/oracle/product/19.0.0/dbhome_1/oraInst.loc'
OPatch failed with error code 106
[oracle@ol9-19 35042068]$ cd $ORACLE_HOME/oui/bin
[oracle@ol9-19 bin]$ ./runInstaller -silent -ignoreSysPrereqs -attachHome ORACLE_HOME=$ORACLE_HOME ORACLE_HOME_NAME="OraDB19Home1"
위와같이 실행후 해당 파일이 $ORACLE_HOME 에 있는지 확인한다.
=======================================================================
Starting Oracle Universal Installer...
[oracle@ol9-19 35042068]$
[oracle@ol9-19 35042068]$
[oracle@ol9-19 35042068]$
[oracle@ol9-19 35042068]$ /u01/app/oracle/product/19.0.0/dbhome_1/OPatch/opatch prereq CheckConflictAgainstOHWithDetail -ph ./
Oracle Interim Patch Installer version 12.2.0.1.43
Copyright (c) 2024, Oracle Corporation. All rights reserved.
PREREQ session
OPatch cannot locate your -invPtrLoc '/u01/app/oracle/product/19.0.0/dbhome_1/oraInst.loc'
OPatch failed with error code 106
[oracle@ol9-19 35042068]$
[oracle@ol9-19 35042068]$
[oracle@ol9-19 35042068]$
[oracle@ol9-19 35042068]$
[oracle@ol9-19 35042068]$ opatch apply
bash: opatch: command not found...
[oracle@ol9-19 35042068]$ /u01/app/oracle/product/19.0.0/dbhome_1/OPatch/opatch allpy
Oracle Interim Patch Installer version 12.2.0.1.43
Copyright (c) 2024, Oracle Corporation. All rights reserved.
Syntax Error... Unrecognized Command or Option (allpy): 1st argument must be one of the following:
apply
napply
rollback
nrollback
lsinventory
lsinv
lspatches
compare
query
util
prereq
version
-help
-help -fmw
Please use the option 'opatch -help' to get correct syntax
OPatch failed with error code 14
[oracle@ol9-19 35042068]$ /u01/app/oracle/product/19.0.0/dbhome_1/OPatch/opatch apply
Oracle Interim Patch Installer version 12.2.0.1.43
Copyright (c) 2024, Oracle Corporation. All rights reserved.
OPatch cannot locate your -invPtrLoc '/u01/app/oracle/product/19.0.0/dbhome_1/oraInst.loc'
OPatch failed with error code 106
[oracle@ol9-19 35042068]$ cd $ORACLE_HOME/oui/bin
[oracle@ol9-19 bin]$ ./runInstaller -silent -ignoreSysPrereqs -attachHome ORACLE_HOME=$ORACLE_HOME ORACLE_HOME_NAME="OraDB19Home1"
Starting Oracle Universal Installer...
Checking swap space: must be greater than 500 MB. Actual 6109 MB Passed
The inventory pointer is located at /etc/oraInst.loc
You can find the log of this install session at:
/u01/app/oraInventory/logs/AttachHome2024-12-09_04-03-48PM.log
Please execute the '/u01/app/oraInventory/orainstRoot.sh' script at the end of the session.
'AttachHome' was successful.
[oracle@ol9-19 bin]$ cd /u01/ora/software/35042068
[oracle@ol9-19 35042068]$ ls
custom etc files README.html README.txt
[oracle@ol9-19 35042068]$ /u01/app/oracle/product/19.0.0/dbhome_1/OPatch/opatch prereq CheckConflictAgainstOHWithDetail -ph ./
Oracle Interim Patch Installer version 12.2.0.1.43
Copyright (c) 2024, Oracle Corporation. All rights reserved.
PREREQ session
Oracle Home : /u01/app/oracle/product/19.0.0/dbhome_1
Central Inventory : /u01/app/oraInventory
from : /u01/app/oracle/product/19.0.0/dbhome_1/oraInst.loc
OPatch version : 12.2.0.1.43
OUI version : 12.2.0.7.0
Log file location : /u01/app/oracle/product/19.0.0/dbhome_1/cfgtoollogs/opatch/opatch2024-12-09_16-04-37PM_1.log
Invoking prereq "checkconflictagainstohwithdetail"
Prereq "checkConflictAgainstOHWithDetail" passed.
OPatch succeeded.
[oracle@ol9-19 35042068]$ /u01/app/oracle/product/19.0.0/dbhome_1/OPatch/opatch apply
Oracle Interim Patch Installer version 12.2.0.1.43
Copyright (c) 2024, Oracle Corporation. All rights reserved.
Oracle Home : /u01/app/oracle/product/19.0.0/dbhome_1
Central Inventory : /u01/app/oraInventory
from : /u01/app/oracle/product/19.0.0/dbhome_1/oraInst.loc
OPatch version : 12.2.0.1.43
OUI version : 12.2.0.7.0
Log file location : /u01/app/oracle/product/19.0.0/dbhome_1/cfgtoollogs/opatch/opatch2024-12-09_16-05-20PM_1.log
Verifying environment and performing prerequisite checks...
OPatch continues with these patches: 35042068
Do you want to proceed? [y|n]
y
User Responded with: Y
All checks passed.
Please shutdown Oracle instances running out of this ORACLE_HOME on the local system.
(Oracle Home = '/u01/app/oracle/product/19.0.0/dbhome_1')
Is the local system ready for patching? [y|n]
y
User Responded with: Y
Backing up files...
Applying interim patch '35042068' to OH '/u01/app/oracle/product/19.0.0/dbhome_1'
ApplySession: Optional component(s) [ oracle.network.gsm, 19.0.0.0.0 ] , [ oracle.rdbms.ic, 19.0.0.0.0 ] , [ oracle.rdbms.tg4db2, 19.0.0.0.0 ] , [ oracle.tfa, 19.0.0.0.0 ] , [ oracle.ons.cclient, 19.0.0.0.0 ] , [ oracle.network.cman, 19.0.0.0.0 ] , [ oracle.rdbms.tg4sybs, 19.0.0.0.0 ] , [ oracle.sdo.companion, 19.0.0.0.0 ] , [ oracle.rdbms.tg4ifmx, 19.0.0.0.0 ] , [ oracle.options.olap.api, 19.0.0.0.0 ] , [ oracle.rdbms.tg4tera, 19.0.0.0.0 ] , [ oracle.oid.client, 19.0.0.0.0 ] , [ oracle.options.olap, 19.0.0.0.0 ] , [ oracle.ons.eons.bwcompat, 19.0.0.0.0 ] , [ oracle.rdbms.tg4msql, 19.0.0.0.0 ] , [ oracle.net.cman, 19.0.0.0.0 ] , [ oracle.xdk.companion, 19.0.0.0.0 ] , [ oracle.jdk, 1.8.0.191.0 ] not present in the Oracle Home or a higher version is found.
Patching component oracle.rsf, 19.0.0.0.0...
Patching component oracle.nlsrtl.rsf.core, 19.0.0.0.0...
Patching component oracle.slax.rsf, 19.0.0.0.0...
Patching component oracle.ordim.jai, 19.0.0.0.0...
Patching component oracle.bali.jewt, 11.1.1.6.0...
Patching component oracle.bali.ewt, 11.1.1.6.0...
Patching component oracle.help.ohj, 11.1.1.7.0...
Patching component oracle.rdbms.locator, 19.0.0.0.0...
Patching component oracle.perlint.expat, 2.0.1.0.4...
Patching component oracle.rdbms.util, 19.0.0.0.0...
Patching component oracle.rdbms.rsf, 19.0.0.0.0...
Patching component oracle.rdbms, 19.0.0.0.0...
Patching component oracle.assistants.acf, 19.0.0.0.0...
Patching component oracle.assistants.deconfig, 19.0.0.0.0...
Patching component oracle.assistants.server, 19.0.0.0.0...
Patching component oracle.blaslapack, 19.0.0.0.0...
Patching component oracle.buildtools.rsf, 19.0.0.0.0...
Patching component oracle.ctx, 19.0.0.0.0...
Patching component oracle.dbdev, 19.0.0.0.0...
Patching component oracle.dbjava.ic, 19.0.0.0.0...
Patching component oracle.dbjava.jdbc, 19.0.0.0.0...
Patching component oracle.dbjava.ucp, 19.0.0.0.0...
Patching component oracle.duma, 19.0.0.0.0...
Patching component oracle.javavm.client, 19.0.0.0.0...
Patching component oracle.ldap.owm, 19.0.0.0.0...
Patching component oracle.ldap.rsf, 19.0.0.0.0...
Patching component oracle.ldap.security.osdt, 19.0.0.0.0...
Patching component oracle.marvel, 19.0.0.0.0...
Patching component oracle.network.rsf, 19.0.0.0.0...
Patching component oracle.odbc.ic, 19.0.0.0.0...
Patching component oracle.ons, 19.0.0.0.0...
Patching component oracle.ons.ic, 19.0.0.0.0...
Patching component oracle.oracore.rsf, 19.0.0.0.0...
Patching component oracle.perlint, 5.28.1.0.0...
Patching component oracle.precomp.common.core, 19.0.0.0.0...
Patching component oracle.precomp.rsf, 19.0.0.0.0...
Patching component oracle.rdbms.crs, 19.0.0.0.0...
Patching component oracle.rdbms.dbscripts, 19.0.0.0.0...
Patching component oracle.rdbms.deconfig, 19.0.0.0.0...
Patching component oracle.rdbms.oci, 19.0.0.0.0...
Patching component oracle.rdbms.rsf.ic, 19.0.0.0.0...
Patching component oracle.rdbms.scheduler, 19.0.0.0.0...
Patching component oracle.rhp.db, 19.0.0.0.0...
Patching component oracle.sdo, 19.0.0.0.0...
Patching component oracle.sdo.locator.jrf, 19.0.0.0.0...
Patching component oracle.sqlplus, 19.0.0.0.0...
Patching component oracle.sqlplus.ic, 19.0.0.0.0...
Patching component oracle.wwg.plsql, 19.0.0.0.0...
Patching component oracle.xdk.xquery, 19.0.0.0.0...
Patching component oracle.javavm.server, 19.0.0.0.0...
Patching component oracle.xdk.parser.java, 19.0.0.0.0...
Patching component oracle.odbc, 19.0.0.0.0...
Patching component oracle.ctx.rsf, 19.0.0.0.0...
Patching component oracle.oraolap, 19.0.0.0.0...
Patching component oracle.rdbms.hsodbc, 19.0.0.0.0...
Patching component oracle.network.client, 19.0.0.0.0...
Patching component oracle.ctx.atg, 19.0.0.0.0...
Patching component oracle.rdbms.install.common, 19.0.0.0.0...
Patching component oracle.oraolap.dbscripts, 19.0.0.0.0...
Patching component oracle.ldap.rsf.ic, 19.0.0.0.0...
Patching component oracle.install.deinstalltool, 19.0.0.0.0...
Patching component oracle.ldap.client, 19.0.0.0.0...
Patching component oracle.rdbms.rman, 19.0.0.0.0...
Patching component oracle.ovm, 19.0.0.0.0...
Patching component oracle.rdbms.drdaas, 19.0.0.0.0...
Patching component oracle.rdbms.hs_common, 19.0.0.0.0...
Patching component oracle.oraolap.api, 19.0.0.0.0...
Patching component oracle.network.listener, 19.0.0.0.0...
Patching component oracle.rdbms.dv, 19.0.0.0.0...
Patching component oracle.sdo.locator, 19.0.0.0.0...
Patching component oracle.nlsrtl.rsf, 19.0.0.0.0...
Patching component oracle.xdk.rsf, 19.0.0.0.0...
Patching component oracle.xdk, 19.0.0.0.0...
Patching component oracle.dbtoolslistener, 19.0.0.0.0...
Patching component oracle.rdbms.install.plugins, 19.0.0.0.0...
Patching component oracle.ldap.ssl, 19.0.0.0.0...
Patching component oracle.rdbms.lbac, 19.0.0.0.0...
Patching component oracle.mgw.common, 19.0.0.0.0...
Patching component oracle.precomp.lang, 19.0.0.0.0...
Patching component oracle.precomp.common, 19.0.0.0.0...
Patching component oracle.jdk, 1.8.0.201.0...
Patch 35042068 successfully applied.
Sub-set patch [29517242] has become inactive due to the application of a super-set patch [35042068].
Please refer to Doc ID 2161861.1 for any possible further required actions.
Log file location: /u01/app/oracle/product/19.0.0/dbhome_1/cfgtoollogs/opatch/opatch2024-12-09_16-05-20PM_1.log
OPatch succeeded.
[oracle@ol9-19 35042068]$
[oracle@ol9-19 35042068]$
[oracle@ol9-19 35042068]$
[oracle@ol9-19 35042068]$
[oracle@ol9-19 35042068]$
[oracle@ol9-19 35042068]$
[oracle@ol9-19 35042068]$
[oracle@ol9-19 35042068]$ cd $ORACLE_HOME
[oracle@ol9-19 dbhome_1]$ ls
addnode has opmn root.sh.old.3
apex hs oracore root.sh.old.4
assistants install oraInst.loc root.sh.old.5
bin instantclient ord root.sh.ouibak
cfgtoollogs inventory ords root.sh.ouibak.1
client javavm oss runInstaller
clone jdbc oui schagent.conf
crs jdk owm sdk
css jlib perl slax
ctx ldap plsql sqldeveloper
cv lib precomp sqlj
data LINUX.X64_193000_db_home.zip QOpatch sqlpatch
dbjava md R sqlplus
dbs mgw racg srvm
deinstall network rdbms suptools
demo nls relnotes ucp
diagnostics odbc root.sh usm
drdaas olap root.sh.old utl
dv OPatch root.sh.old.1 wwg
env.ora OPatch_old root.sh.old.2 xdk
[oracle@ol9-19 dbhome_1]$ ./runInstaller
Launching Oracle Database Setup Wizard...
The response file for this session can be found at:
/u01/app/oracle/product/19.0.0/dbhome_1/install/response/db_2024-12-09_04-17-18PM.rsp
You can find the log of this install session at:
/tmp/InstallActions2024-12-09_04-17-18PM/installActions2024-12-09_04-17-18PM.log
Moved the install session logs to:
/u01/app/oraInventory/logs/InstallActions2024-12-09_04-17-18PM
[oracle@ol9-19 dbhome_1]$ lsnrctl
LSNRCTL for Linux: Version 19.0.0.0.0 - Production on 09-DEC-2024 20:31:32
Copyright (c) 1991, 2023, Oracle. All rights reserved.
Welcome to LSNRCTL, type "help" for information.
LSNRCTL> status
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=ol9-19.localdomain)(PORT=1521)))
^C
[oracle@ol9-19 dbhome_1]$ stop
bash: stop: command not found...
Similar command is: 'top'
[oracle@ol9-19 dbhome_1]$ lsnrctl stop
LSNRCTL for Linux: Version 19.0.0.0.0 - Production on 09-DEC-2024 20:31:50
Copyright (c) 1991, 2023, Oracle. All rights reserved.
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=ol9-19.localdomain)(PORT=1521)))
The command completed successfully
[oracle@ol9-19 dbhome_1]$ lsnrctl start
LSNRCTL for Linux: Version 19.0.0.0.0 - Production on 09-DEC-2024 20:32:03
Copyright (c) 1991, 2023, Oracle. All rights reserved.
Starting /u01/app/oracle/product/19.0.0/dbhome_1/bin/tnslsnr: please wait...
TNSLSNR for Linux: Version 19.0.0.0.0 - Production
System parameter file is /u01/app/oracle/product/19.0.0/dbhome_1/network/admin/listener.ora
Log messages written to /u01/app/oracle/diag/tnslsnr/ol9-19/listener/alert/log.xml
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=ol9-19.localdomain)(PORT=1521)))
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1521)))
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=ol9-19.localdomain)(PORT=1521)))
STATUS of the LISTENER
------------------------
Alias LISTENER
Version TNSLSNR for Linux: Version 19.0.0.0.0 - Production
Start Date 09-DEC-2024 20:32:10
Uptime 0 days 0 hr. 0 min. 31 sec
Trace Level off
Security ON: Local OS Authentication
SNMP OFF
Listener Parameter File /u01/app/oracle/product/19.0.0/dbhome_1/network/admin/listener.ora
Listener Log File /u01/app/oracle/diag/tnslsnr/ol9-19/listener/alert/log.xml
Listening Endpoints Summary...
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=ol9-19.localdomain)(PORT=1521)))
(DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1521)))
The listener supports no services
|