程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> 關於Oracle數據庫 >> Linux中Oracle啟動偵聽報錯TNS:permission denied的解決方法

Linux中Oracle啟動偵聽報錯TNS:permission denied的解決方法

編輯:關於Oracle數據庫

前言

最近在開發環境 oracle 啟動偵聽的時候,出現了 TNS:permission denied 的問題,通過網上和咨詢朋友,最終找到了解決方案,現在共享出來給有需要的朋友。

錯誤描述

[oracle@oracle ~]$ lsnrctl start  
LSNRCTL for Linux: Version 11.2.0.1.0 - Production on 27-MAR-2015 15:37:59
Copyright (c) 1991, 2009, Oracle. All rights reserved.
Starting /u01/app/oracle/product/11.2.0/dbhome_1/bin/tnslsnr: please wait...
TNSLSNR for Linux: Version 11.2.0.1.0 - Production
System parameter file is /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora
Log messages written to /u01/app/oracle/diag/tnslsnr/oracle/listener/alert/log.xml
Error listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
TNS-12555: TNS:permission denied
 TNS-12560: TNS:protocol adapter error
 TNS-00525: Insufficient privilege for operation
 Linux Error: 1: Operation not permitted
Listener failed to start. See the error message(s) above...

解決方案

出現這個錯誤是由於沒有 /var/tmp/.oracle 的讀寫權限引起的。由於開發環境沒有嚴格管理,不知道哪位同學把此目錄的所有者改成了root,導致 oracle 用戶沒有權限操作此目錄。使用下面方式修正過來即可。

cd /var/tmp
chown oracle .oracle
chgrp oinstall .oracle
chmod 777 .oracle

看到網上有資料說 直接干掉 /var/tmp/.oracle 這個目錄也是可以的,我沒有嘗試,不知道效果如何,這裡僅作筆記。

總結

以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作能帶來一定的幫助,如果有疑問大家可以留言交流。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved