91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

修改hostname后導致oracle客戶端無法連接怎么辦

發布時間:2021-08-27 21:11:55 來源:億速云 閱讀:137 作者:chen 欄目:關系型數據庫

本篇內容介紹了“修改hostname后導致oracle客戶端無法連接怎么辦”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

虛擬機centos7中剛裝了oracle11g,沒重啟前一切正常

重啟后發現客戶端無法連接到數據庫了

SQL*Plus: Release 11.2.0.1.0 Production on 星期五 11月 16 15:05:18 2018
Copyright (c) 1982, 2010, Oracle.  All rights reserved.
請輸入用戶名:  system@orcl
輸入口令:
ERROR:
ORA-12541: TNS: 無監聽程序

登陸服務器看一下監聽狀態

[root@lzr ~]# lsnrctl status
LSNRCTL for Linux: Version 11.2.0.1.0 - Production on 16-NOV-2018 15:07:55
Copyright (c) 1991, 2009, Oracle.  All rights reserved.
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521)))
STATUS of the LISTENER
------------------------
Alias                     LISTENER
Version                   TNSLSNR for Linux: Version 11.2.0.1.0 - Production
Start Date                16-NOV-2018 15:00:14
Uptime                    0 days 0 hr. 7 min. 45 sec
Trace Level               off
Security                  ON: Local OS Authentication
SNMP                      OFF
Listener Parameter File   /data/oracle/product/11.2.0/db_1/network/admin/listener.ora
Listener Log File         /data/oracle/diag/tnslsnr/lzr/listener/alert/log.xml
Listening Endpoints Summary...
  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=1521)))
Services Summary...
Service "ORCL" has 1 instance(s).
  Instance "ORCL", status UNKNOWN, has 1 handler(s) for this service...
The command completed successfully

實例ORCL狀態為UNKNOWN,有點不太懂了,百度了一下之后

解決辦法    

發現可能是hostname出現了問題

我在重啟之前用命令

#hostnamectl set-hostname lzr

修改過hostname

先打開/etc/hosts檢查一下

[root@lzr ~]# vi /etc/hosts
127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
::1         localhost localhost.localdomain localhost6 localhost6.localdomain6

host文件解釋

添加新的一行

[root@lzr ~]# vi /etc/hosts
127.0.0.1   lzr
127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
::1         localhost localhost.localdomain localhost6 localhost6.localdomain6

然后wq保存退出

現在我將數據庫重啟

[root@lzr ~]# sqlplus
SQL*Plus: Release 11.2.0.1.0 Production on Fri Nov 16 15:25:52 2018
Copyright (c) 1982, 2009, Oracle.  All rights reserved.
Enter user-name: sys as sysdba
Enter password:
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL> shutdown immediate
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> startup
ORACLE instance started.
Total System Global Area 1185853440 bytes
Fixed Size                  2212776 bytes
Variable Size             738200664 bytes
Database Buffers          436207616 bytes
Redo Buffers                9232384 bytes
Database mounted.
Database opened.

再將監聽重啟,查看狀態

[root@lzr ~]# lsnrctl
LSNRCTL for Linux: Version 11.2.0.1.0 - Production on 16-NOV-2018 15:31:17
Copyright (c) 1991, 2009, Oracle.  All rights reserved.
Welcome to LSNRCTL, type "help" for information.
LSNRCTL> stop
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521)))
The command completed successfully
LSNRCTL> start
Starting /data/oracle/product/11.2.0/db_1/bin/tnslsnr: please wait...
TNSLSNR for Linux: Version 11.2.0.1.0 - Production
System parameter file is /data/oracle/product/11.2.0/db_1/network/admin/listener.ora
Log messages written to /data/oracle/diag/tnslsnr/lzr/listener/alert/log.xml
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=lzr)(PORT=1521)))
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521)))
STATUS of the LISTENER
------------------------
Alias                     LISTENER
Version                   TNSLSNR for Linux: Version 11.2.0.1.0 - Production
Start Date                16-NOV-2018 15:31:21
Uptime                    0 days 0 hr. 0 min. 5 sec
Trace Level               off
Security                  ON: Local OS Authentication
SNMP                      OFF
Listener Parameter File   /data/oracle/product/11.2.0/db_1/network/admin/listener.ora
Listener Log File         /data/oracle/diag/tnslsnr/lzr/listener/alert/log.xml
Listening Endpoints Summary...
  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=lzr)(PORT=1521)))
Services Summary...
Service "ORCL" has 1 instance(s).
  Instance "ORCL", status UNKNOWN, has 1 handler(s) for this service...
The command completed successfully
LSNRCTL> status
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521)))
STATUS of the LISTENER
------------------------
Alias                     LISTENER
Version                   TNSLSNR for Linux: Version 11.2.0.1.0 - Production
Start Date                16-NOV-2018 15:31:21
Uptime                    0 days 0 hr. 0 min. 8 sec
Trace Level               off
Security                  ON: Local OS Authentication
SNMP                      OFF
Listener Parameter File   /data/oracle/product/11.2.0/db_1/network/admin/listener.ora
Listener Log File         /data/oracle/diag/tnslsnr/lzr/listener/alert/log.xml
Listening Endpoints Summary...
  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=lzr)(PORT=1521)))
Services Summary...
Service "ORCL" has 1 instance(s).
  Instance "ORCL", status UNKNOWN, has 1 handler(s) for this service...
The command completed successfully

好像和之前沒有什么變化

去數據庫中注冊一下監聽

[root@lzr ~]# sqlplus
SQL*Plus: Release 11.2.0.1.0 Production on Fri Nov 16 15:32:54 2018
Copyright (c) 1982, 2009, Oracle.  All rights reserved.
Enter user-name: sys as sysdba
Enter password:
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL> alter system register
  2  ;
System altered.

再出來查看一下監聽狀態

[root@lzr ~]# lsnrctl
LSNRCTL for Linux: Version 11.2.0.1.0 - Production on 16-NOV-2018 15:33:35
Copyright (c) 1991, 2009, Oracle.  All rights reserved.
Welcome to LSNRCTL, type "help" for information.
LSNRCTL> status
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521)))
STATUS of the LISTENER
------------------------
Alias                     LISTENER
Version                   TNSLSNR for Linux: Version 11.2.0.1.0 - Production
Start Date                16-NOV-2018 15:31:21
Uptime                    0 days 0 hr. 2 min. 15 sec
Trace Level               off
Security                  ON: Local OS Authentication
SNMP                      OFF
Listener Parameter File   /data/oracle/product/11.2.0/db_1/network/admin/listener.ora
Listener Log File         /data/oracle/diag/tnslsnr/lzr/listener/alert/log.xml
Listening Endpoints Summary...
  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=lzr)(PORT=1521)))
Services Summary...
Service "ORCL" has 2 instance(s).
  Instance "ORCL", status UNKNOWN, has 1 handler(s) for this service...
  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

看上去正常了,status ready

現在回到客戶端中測試一下連接

C:\Users\lzr>sqlplus
SQL*Plus: Release 11.2.0.1.0 Production on 星期五 11月 16 15:34:10 2018
Copyright (c) 1982, 2010, Oracle.  All rights reserved.
請輸入用戶名:  system@orcl
輸入口令:
連接到:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL> show user
USER 為 "SYSTEM"

可以正常使用客戶端連接了

“修改hostname后導致oracle客戶端無法連接怎么辦”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

大埔县| 长寿区| 临朐县| 荃湾区| 洮南市| 德格县| 扬中市| 普陀区| 广平县| 射洪县| 天台县| 天镇县| 阿克陶县| 巴中市| 安陆市| 乐东| 民权县| 双辽市| 纳雍县| 甘泉县| 万全县| 江阴市| 永州市| 景泰县| 青浦区| 九江市| 博罗县| 巫山县| 聂拉木县| 甘谷县| 武胜县| 浠水县| 华安县| 上栗县| 阿克| 略阳县| 乳山市| 阳高县| 丹寨县| 旌德县| 莎车县|