Oracle安裝配置的一些問題

2022-04-09 08:43:28 字數 1249 閱讀 7938

oracle安裝配置的一些問題

1:配置了tnsname後訪問不了遠端伺服器。

1)關閉遠端伺服器的dhcp。

2)關閉遠端伺服器的防火牆。

3)telnet遠端伺服器的1521埠,telnet通過則計算機之前通訊正常。

3)tnsping [sid],如果失敗檢查tns檔案。

2:不能在本機使用sysdba訪問遠端伺服器。

sql> show parameter pass,檢查遠端登入設定

www.2cto.com  

在伺服器下的product\11.2.0\dbhome_1\dbs\ini.ora檔案中有一句:

html**  

remote_login_passwordfile='exclusive'  

修改為shared

a、none

oracle ignores any password file. therefore, privileged users must be authenticated by the operating system

不允許sysdba使用者組成員遠端登入訪問資料庫

b、 exclusive 

the password file can be used by only one database. the password file can contain sys as well as non-sys users.

只允許口令檔案用於本資料 庫,允許sysdba使用者組成員遠端登入訪問資料庫

c、shared

one or more databases can use the password file. the password file can contain sys as well as non-sys users.  www.2cto.com  

允許其他資料庫使用該口令檔案,允許sysdba使用者組成員遠端登入訪問資料庫

修改配置remote_login_passwordfile=exclusive(這是個靜態引數要修改spfile檔案),sysdba用 戶(及擁有其角色的普通使用者)可以遠端登入。

html**  

sql> alter system set remote_login_passwordfile=exclusive scope=spfile;  

system altered.

重啟資料庫

html**  

sql> startup force;    

作者 silly_sinba

Oracle遇到的一些問題

1 製造資料時出現錯誤 ora 30009問題 計畫任務 insert into test select rownum,sysdate from dual connect by rownum 100000 會出現ora 30009 connect by出錯 修改任務 insert into test...

MySQL安裝的一些問題

2.解壓縮zip包 d program files mysql 5.7.11 winx643.配置環境變數,3.1 新增path路徑,d program files mysql 5.7.11 winx64 bin3.2.修改mysql default.ini配置檔案,原 these are comm...

mac配置tomcat的一些問題

首先在上篇文章中的profile中新增path path users 你的tomcat的位置 bin 然後會出現permission denied,然後進入到你的bin中用命令列 sudo chomd 755 sh這樣就把所有的sh都處理了,就不用乙個乙個處理 然後執行在這個bin下執行startu...