溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

ORA-01031: insufficient privileges

發(fā)布時間:2020-07-09 18:36:35 來源:網(wǎng)絡(luò) 閱讀:865 作者:roidba 欄目:關(guān)系型數(shù)據(jù)庫



一、問題描述

通過sqlplus / as sysdba 無法登陸數(shù)據(jù)庫,提示權(quán)限不足。


二、模擬測試


1.現(xiàn)象

sqlplus / as sysdba


SQL*Plus: Release 11.2.0.4.0 Production on Tue Nov 14 11:09:10 2017


Copyright (c) 1982, 2013, Oracle.  All rights reserved.


ERROR:

ORA-01031: insufficient privileges



Enter user-name: 

ERROR:

ORA-01017: invalid username/password; logon denied



Enter user-name: 

ERROR:

ORA-01017: invalid username/password; logon denied



SP2-0157: unable to CONNECT to ORACLE after 3 attempts, exiting SQL*Plus


2.使用用戶密碼登陸

<orcldg:orcl:/home/oracle>$sqlplus "sys/oracle@orcl as sysdba"


SQL*Plus: Release 11.2.0.4.0 Production on Tue Nov 14 11:09:34 2017


Copyright (c) 1982, 2013, Oracle.  All rights reserved.


ERROR:

ORA-12541: TNS:no listener



Enter user-name: 

ERROR:

ORA-01017: invalid username/password; logon denied



Enter user-name: 

ERROR:

ORA-01017: invalid username/password; logon denied



SP2-0157: unable to CONNECT to ORACLE after 3 attempts, exiting SQL*Plus


3.啟動監(jiān)聽后登陸成功

<orcldg:orcl:/home/oracle>$lsnrctl start


LSNRCTL for Linux: Version 11.2.0.4.0 - Production on 14-NOV-2017 11:09:45


Copyright (c) 1991, 2013, 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.4.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/orcldg/listener/alert/log.xml

Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=orcldg)(PORT=1521)))


Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=orcldg)(PORT=1521)))

STATUS of the LISTENER

------------------------

Alias                     LISTENER

Version                   TNSLSNR for Linux: Version 11.2.0.4.0 - Production

Start Date                14-NOV-2017 11:09:45

Uptime                    0 days 0 hr. 0 min. 0 sec

Trace Level               off

Security                  ON: Local OS Authentication

SNMP                      OFF

Listener Parameter File   /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora

Listener Log File         /u01/app/oracle/diag/tnslsnr/orcldg/listener/alert/log.xml

Listening Endpoints Summary...

  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=orcldg)(PORT=1521)))

Services Summary...

Service "orcl" has 1 instance(s).

  Instance "orcl", status UNKNOWN, has 1 handler(s) for this service...

The command completed successfully

<orcldg:orcl:/home/oracle>$sqlplus "sys/oracle@orcl as sysdba"


SQL*Plus: Release 11.2.0.4.0 Production on Tue Nov 14 11:09:52 2017


Copyright (c) 1982, 2013, Oracle.  All rights reserved.


Connected to an idle instance.


SQL> exit

Disconnected


4.繼續(xù)提示權(quán)限不足報錯

<orcldg:orcl:/home/oracle>$sqlplus / as sysdba


SQL*Plus: Release 11.2.0.4.0 Production on Tue Nov 14 11:09:58 2017


Copyright (c) 1982, 2013, Oracle.  All rights reserved.


ERROR:

ORA-01031: insufficient privileges



Enter user-name: 

ERROR:

ORA-01017: invalid username/password; logon denied



Enter user-name: 

ERROR:

ORA-01017: invalid username/password; logon denied



SP2-0157: unable to CONNECT to ORACLE after 3 attempts, exiting SQL*Plus


5.查看用戶組

<orcldg:orcl:/home/oracle>$id oracle

uid=500(oracle) gid=500(oinstall) groups=500(oinstall)   --缺少dba組

<orcldg:orcl:/home/oracle>$exit

logout


6.加入dba組后登陸成功

[root@orcldg ~]# usermod -a -G oinstall,dba oracle

[root@orcldg ~]# id oracle

uid=500(oracle) gid=500(oinstall) groups=500(oinstall),501(dba)

[root@orcldg ~]# su - oracle

<orcldg:orcl:/home/oracle>$sqlplus / as sysdba


SQL*Plus: Release 11.2.0.4.0 Production on Tue Nov 14 11:11:07 2017


Copyright (c) 1982, 2013, Oracle.  All rights reserved.


Connected to an idle instance.


三、小結(jié)

通常大家建庫很少關(guān)注為什么Oracle用戶要屬于組dba,很少關(guān)注細節(jié)。

往往我們遇到的問題,都是沒有按照規(guī)范去創(chuàng)建數(shù)據(jù)庫導(dǎo)致的,所以說建庫其實也是一個技術(shù)活。

以上問題還有可能是其他情況引起,這里不多說。


向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI