2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

「ORA-01031: 権限が不足しています」って表示されるんですが

Posted at

接続しようとすると…

command
SQL> connect / as sysdba
ERROR:
ORA-01031: insufficient privileges

と出て次に進めないです…

このエラー自体は
「ORA-01031: 権限が不足しています」
で権限がないのでダメとの事なので
権限を追加します

commad
-- 上記ユーザーをDBAグループへ追加 (rootユーザーで実行)
$ sudo usermod -G dba myuser

[sudo] password for myuser: 

もう一回やってみた

command
$ sqlplus /nolog

SQL*Plus: Release 10.2.0.1.0 - Production on 

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

SQL> connect / as  sysdba
Connected...
SQL> 
  

できた

2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?