Linux上system用户不能以normal身份登陆的解决
时间:2015-12-29 22:28 来源:linux.it.net.cn 作者:IT
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;
(责任编辑:IT)
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; (责任编辑:IT) |