龙空技术网

如何在 Oracle 中启动/停止监听器?Oracle 中的侦听器命令是什么?

雪竹聊技术 209

前言:

此刻姐妹们对“关闭oracletrace”大体比较注重,你们都想要剖析一些“关闭oracletrace”的相关文章。那么小编在网摘上收集了一些对于“关闭oracletrace””的相关知识,希望看官们能喜欢,姐妹们快快来了解一下吧!

概述

作为DBA,ORACLE的监听管理,是其管理的重要内容,下面对监听命令做了一下汇总。

oracle监听命令汇总

$ lsnrctl start [listener_name]

$ lsnrctl stop [listener_name]

$ lsnrctl status [listener_name]

$ lsnrctl reload [listener_name]

$ lsnrctl services [listener_name]

LSNRCTL> help

LSNRCTL> version [listener_name] -- get the version information of the listener

LSNRCTL> start [listener_name] -- starts the listener

LSNRCTL> stop [listener_name] -- stops the listener

LSNRCTL> status [listener_name] -- get the status of listener

LSNRCTL> services [listener_name] -- get the service information of the listener

LSNRCTL> servacls [listener_name] - ACLs

LSNRCTL> reload [listener_name] -- reload the parameter files and SIDs

LSNRCTL> save_config [listener_name] -- saves configuration changes to parameter file

LSNRCTL> trace OFF | USER | ADMIN | SUPPORT [listener_name] -- set tracing to the specified level

LSNRCTL> spawn [listener_name] spawn_alias [(ARGUMENTS='arg0, arg1,...')]

LSNRCTL> change_password [listener_name] -- changes the password of the listener

LSNRCTL> set [below_modifier]

password rawmode

displaymode trc_file

trc_directory trc_level

log_file log_directory

log_status current_listener

inbound_connect_timeout startup_waittime

save_config_on_stop dynamic_registration

enable_global_dynamic_endpoint connection_rate_limit

LSNRCTL> show [below_modifier]

rawmode displaymode

rules trc_file

trc_directory trc_level

log_file log_directory

log_status current_listener

inbound_connect_timeout startup_waittime

snmp_visible save_config_on_stop

dynamic_registration enable_global_dynamic_endpoint

oracle_home pid

connection_rate_limit

LSNRCTL> quit

LSNRCTL> exit

default listener_name is LISTENER

标签: #关闭oracletrace