Linux上system用户不能以normal身份登陆的解决
程序员文章站
2024-02-19 15:58:10
...
1.在Linux上,用oracle用户登录后,执行:[oracle@h16 oracle]$ sqlplus /nologSQL*Plus: Release 9.2.0.4.0 - Production on Tue Feb 19 1
1.在Linux上,用Oracle用户登录后,执行:
[oracle@h16 oracle]$ sqlplus /nolog
SQL*Plus: Release 9.2.0.4.0 - Production on Tue Feb 19 16:42:38 2008
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
SQL> connect system/manager as sysdba;
正常,但是不能用其他的Linux用户执行上面的命令,,也不能imp,提示:
SQL> connect system/manager as sysdba;
ERROR:
ORA-01031: insufficient privileges
解决办法:
修改 system 的密码:
SQL> alter user system identified by manager;