oracle 预建虚拟机的默认用户名和密码是什么?

use*_*636 15 oracle oracle-12c

我从http://www.oracle.com/technetwork/database/enterprise-edition/databaseappdev-vm-161299.html下载了DeveloperDaysVM2016-06-02_13.ova并成功加载到 Virtual Box。

我以“oracle”用户身份登录,可以看到桌面。

在虚拟机中,我打开 Firefox 并导航到:

http://localhost:8080/ords/hrrest/employees/并成功接收到 JSON 格式的员工列表。所以我知道数据库已启动并正在运行。

我唯一的问题是我无法登录到数据库。

我试过:

[oracle@vbgeneric oracle]$ sqlplus oracle

SQL*Plus: Release 12.1.0.2.0 Production on Tue Jul 5 17:32:22 2016

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

Enter password: oracle
ERROR:
ORA-01017: invalid username/password; logon denied


Enter user-name:
Run Code Online (Sandbox Code Playgroud)

我的 ORACLE_SID=orcl12c

我如何登录到数据库本身?

Phi*_*lᵀᴹ 16

默认密码为HRsyssystem帐户是oracle

oracle 用户的 Unix 密码也是oracle.


Joh*_*n B 6

好吧,这可能是一个更好的答案,因为目标是能够使用“系统”数据库。

使用:sqlplus系统作为sysdba

密码是-> oracle

我开始使用学生/学生。这是在 EDQ 入门 pdf 文档中,但没有明确指定它适用于 sqlplus 登录。

[oracle@edqtrn ~]$ sqlplus system

SQL*Plus: Release 12.1.0.1.0 Production on Sat Aug 11 10:12:39 2018
    Copyright (c) 1982, 2013, Oracle.  All rights reserved.

Enter password: 
ERROR:
ORA-01017: invalid username/password; logon denied


Enter user-name: student

Enter password: 

Last Successful login time: Fri Aug 10 2018 23:57:35 -04:00

Connected to:
Oracle Database 12c Enterprise Edition Release 12.1.0.1.0 - 64bit Production
With the Partitioning, OLAP, Advanced Analytics and Real Application Testing options

SQL>
Run Code Online (Sandbox Code Playgroud)


小智 5

您应该能够按如下方式登录数据库:

sqlplus sys/oracle@localhost/orcl12c as sysdba
Run Code Online (Sandbox Code Playgroud)