我在 ubuntu 16.04 中安装了 sqlplus,但最后

我在 ubuntu 16.04 中安装了 sqlplus,但最后

但最后当我输入这段代码时,它询问我用户名和密码,但我什么也没有。

$ sqlplus username/password@//dbhost:1521/SID
SQL*Plus: Release 12.2.0.1.0 Production on Tue Feb 27 01:56:15 2018
Copyright (c) 1982, 2016, Oracle.  All rights reserved.
ERROR: ORA-12154: TNS:could not resolve the connect identifier specified

Enter user-name:

答案1

sqlplus 似乎默认使用 sys 用户,这个主题可能会对您有所帮助!https://community.oracle.com/message/10205682#10205682

您想要的是创建一个新用户。默认用户是 sys,因此您需要从服务器本身(通过 ssh)连接到数据库。 sqlplus "/ AS SYSDBA将以 sys 身份连接您。

相关内容