以sysdba身份连接远程数据库时,出现ORA-01017错误
SQL> conn sys/××××@test as sysdba
ERROR:
ORA-01017: invalid username/password; logon denied
远程使用非sysdba身份的用户也可以正常登录。
SQL> conn report/××××@test
已连接。
但以同样的用户名,密码在本机可以登录。
SQL> conn sys/××××@test as sysdba
已连接。
SQL> show parameter login;
NAME TYPE VALUE
------------------------------------ ------- ------------------------------
remote_login_passwordfile string NONE
sec_max_failed_login_attempts integer 10
SQL> alter system set remote_login_passwordfile=exclusive scope=spfile;
系统已更改。
-- 要重启数据库,才能生效
SQL> show parameter login;
NAME TYPE VALUE
------------------------------------ ------- ------------------------------
remote_login_passwordfile string NONE
sec_max_failed_login_attempts integer 10
SQL> shutdown immediate
数据库已经关闭。
已经卸载数据库。
ORACLE 例程已经关闭。
SQL> startup
ORACLE 例程已经启动。
Total System Global Area 535662592 bytes
Fixed Size 1375792 bytes
Variable Size 293601744 bytes
Database Buffers 234881024 bytes
Redo Buffers 5804032 bytes
数据库装载完毕。
数据库已经打开。
SQL> col name for a25;
SQL> col type for a7;
SQL> show parameter login;
NAME TYPE VALUE
------------------------------------ ------- ------------------------------
remote_login_passwordfile string NONE
sec_max_failed_login_attempts integer 10
remote_login_passwordfile修改为EXCLUSIVE后,可以远程使用sysdba身份登录
SQL*Plus: Release 10.1.0.2.0 - Production on 星期二 3月 15 16:24:07 2011
Copyright (c) 1982, 2004, Oracle. All rights reserved.
SQL> conn sys/××××@test as sysdba
已连接。