设为首页 收藏本站
查看: 617|回复: 1

[经验分享] 配置和自动启动Oracle的监听(lsnrctl)

[复制链接]
累计签到:1 天
连续签到:1 天
发表于 2013-12-2 08:49:59 | 显示全部楼层 |阅读模式
配置Oracle lsnrctl 和自动启动
1.设置主机名称
[iyunv@www ~]# cat /etc/sysconfig/network  
NETWORKING=yes  
HOSTNAME=www.redhat6.com  

2.设置主机名称与IP地址的对应
[iyunv@www ~]# cat /etc/hosts  
127.0.0.1    localhost localhost.localdomain localhost4 localhost4.localdomain4  
::1          localhost localhost.localdomain localhost6 localhost6.localdomain6  
192.168.2.16 www.redhat6.com  

3.修改:/u01/app/oracle/network/admin/listener.ora
[oracle@www admin]$ cat listener.ora   
# listener.ora Network Configuration File: /u01/app/oracle/network/admin/listener.ora  
# Generated by Oracle configuration tools.  

LISTENER =  
  (DESCRIPTION_LIST =  
    (DESCRIPTION =  
      (ADDRESS = (PROTOCOL = TCP)(HOST = www.redhat6.com)(PORT = 1521))  
    )  
  )  


ADR_BASE_LISTENER = /u01/app  

4.修改:/u01/app/oracle/network/admin/tnsnames.ora
[oracle@www admin]$ cat tnsnames.ora   
# tnsnames.ora Network Configuration File: /u01/app/oracle/network/admin/tnsnames.ora  
# Generated by Oracle configuration tools.  

ORCL =  
  (DESCRIPTION =  
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))  
    (CONNECT_DATA =  
      (SERVER = DEDICATED)  
      (SERVICE_NAME = www.redhat6.com)  
    )  
  )  

5.lsnrctl 的常用方法

[oracle@www admin]$ lsnrctl  

LSNRCTL for Linux: Version 11.2.0.3.0 - Production on 29-NOV-2013 21:56:57  

Copyright (c) 1991, 2011, Oracle.  All rights reserved.  

Welcome to LSNRCTL, type "help" for information.  
LSNRCTL> help  
The following operations are available  
An asterisk (*) denotes a modifier or extended command:  

start               stop                status               
services            version             reload               
save_config         trace               spawn                 
change_password     quit                exit                  
set*                show*   

lsnrctl start  -- 启动监听
lsnrctl stop   -- 停止监听
lsnrctl status -- 查看状态
6.设置Oracle数据库和lsnrct自动启动方法

(我的机器是RedHat6_64,Oracle11g)
6.1.编辑: /etc/oratab
[iyunv@www ~]# cat /etc/oratab   
#  



# This file is used by ORACLE utilities.  It is created by root.sh  
# and updated by either Database Configuration Assistant while creating  
# a database or ASM Configuration Assistant while creating ASM instance.  

# A colon, ':', is used as the field terminator.  A new line terminates  
# the entry.  Lines beginning with a pound sign, '#', are comments.  
#  
# Entries are of the form:  
#   $ORACLE_SID:$ORACLE_HOME:<N|Y>:  
#  
# The first and second fields are the system identifier and home  
# directory of the database respectively.  The third filed indicates  
# to the dbstart utility that the database should , "Y", or should not,  
# "N", be brought up at system boot time.  
#  
# Multiple entries with the same $ORACLE_SID are not allowed.  
#  
#  
#orcl:/u01/app/oracle:N  
orcl:/u01/app/oracle:Y    #这里把"N"改为"Y"  

6.2.修改 /etc/rc.local
[iyunv@www ~]# cat /etc/rc.local   
#!/bin/sh  
#  
# This script will be executed *after* all the other init scripts.  
# You can put your own initialization stuff in here if you don't  
# want to do the full Sys V style init stuff.  

touch /var/lock/subsys/local  

# 添加下面两条  
su - oracle -c 'dbstart'  
su - oracle -c 'lsnrctl start'  

6.3.重新启动系统.Oracle数据库正常启动.监听也启动了.
[oracle@www ~]$ sqlplus / as sysdba  

SQL*Plus: Release 11.2.0.3.0 Production on Fri Nov 29 21:49:56 2013  

Copyright (c) 1982, 2011, Oracle.  All rights reserved.  


Connected to:  
Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production  
With the Partitioning, OLAP, Data Mining and Real Application Testing options  

SQL> select status from v$instance;  

STATUS  
------------  
OPEN  

[oracle@www ~]$ lsnrctl status  

LSNRCTL for Linux: Version 11.2.0.3.0 - Production on 29-NOV-2013 22:03:23  

Copyright (c) 1991, 2011, Oracle.  All rights reserved.  

Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=www.redhat6.com)(PORT=1521)))  
STATUS of the LISTENER  
------------------------  
Alias                     LISTENER  
Version                   TNSLSNR for Linux: Version 11.2.0.3.0 - Production  
Start Date                29-NOV-2013 21:25:24  
Uptime                    0 days 0 hr. 37 min. 59 sec  
Trace Level               off  
Security                  ON: Local OS Authentication  
SNMP                      OFF  
Listener Parameter File   /u01/app/oracle/network/admin/listener.ora  
Listener Log File         /u01/app/diag/tnslsnr/www/listener/alert/log.xml  
Listening Endpoints Summary...  
  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=www.redhat6.com)(PORT=1521)))  
Services Summary...  
Service "orcl" has 1 instance(s).  
  Instance "orcl", status READY, has 1 handler(s) for this service...  
Service "orclXDB" has 1 instance(s).  
  Instance "orcl", status READY, has 1 handler(s) for this service...  
The command completed successfully  

其它问题:

关闭linux防火墙:
暂时关闭:  
service iptables stop  

永久性,需重启:  
chkconfig iptables off  

[iyunv@www ~]# chkconfig --list | grep iptables  
iptables        0:off   1:off   2:on    3:on    4:on    5:on    6:off  
[iyunv@www ~]# chkconfig iptables off  
[iyunv@www ~]# chkconfig --list | grep iptables  
iptables        0:off   1:off   2:off   3:off   4:off   5:off   6:off  

关闭selinux:
1 永久方法 – 需要重启服务器  
修改/etc/selinux/config文件中设置SELINUX=disabled ,然后重启服务器。  

2 临时方法 – 设置系统参数  
使用命令setenforce 0  
附:  
setenforce 1 设置SELinux 成为enforcing模式  
setenforce 0 设置SELinux 成为permissive模式  


运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.iyunv.com/thread-10852-1-1.html 上篇帖子: 操作系统中数据文件与ORACLE数据库中查询的bytes大小不同的... 下篇帖子: oracle 逆序输出字符串 11g

尚未签到

发表于 2014-1-1 00:15:09 | 显示全部楼层
幻想你每天都陪在我身边.睡梦中都因你而笑

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表