「Oracle」 リスナーの起動、停止、確認方法
環境
Oracle 11.2.0.1.0
操作方法
1.lsnrctl statusコマンドでリスナーの状態を確認します。
$ lsnrctl status LSNRCTL for Linux: Version 11.2.0.1.0 - Production on 14-9月 -2022 10:58:00 Copyright (c) 1991, 2009, Oracle. All rights reserved. (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=arkga)(PORT=1521)))に接続中 リスナーのステータス ------------------------ 別名 LISTENER バージョン TNSLSNR for Linux: Version 11.2.0.1.0 - Production
2.ssコマンドでリスナープロセスを確認します
$ ss -natp |grep LISTEN |grep tnslsnr LISTEN 0 128 :::1521 :::* users:(("tnslsnr",3803,11))
3.lsnrctl startコマンドでリスナーを起動します。
$ lsnrctl start
4.lsnrctl stopコマンドでリスナーを停止します。
$ lsnrctl stop