如何在 SQL Developer 中获取用户名/密码/主机名/端口/SID 建立连接
我安装了Oracle数据库21c和sqldeveloper。在安装oracle数据库21c的过程中,我根据提示输入了密码。我尝试输入密码和给定的用户名 SYS 在 sqldeveloper 中创建连接,但收到错误
状态:失败 - 测试失败:IO 错误:网络适配器无法 建立连接(CONNECTION_ID=9mv7VkLpQniPUhJwegf7OQ==)
我正在尝试创建一个本地数据库来练习 SQL,但我不想连接到外部数据库。为了实现我的目标我应该做什么?
I installed Oracle database 21c and sqldeveloper. During the installation of oracle database 21c I inputted my password upon the prompt. I tried to key in the password and the given username SYS to create connection in sqldeveloper but I got the error
Status : Failure -Test failed: IO Error: The Network Adapter could not
establish the connection (CONNECTION_ID=9mv7VkLpQniPUhJwegf7OQ==)
I'm trying to create a local database to practice SQL and I'm not looking to connect to an external database. What should I do in order to achieve my goal?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,只需执行以下说明即可通过 sql Developer 连接到数据库:
1- 启动数据库(如果您尚未启动数据库);
2- 在操作系统提示符下执行:
该命令启动您的侦听器。
3- 在操作系统提示符下执行(如果您使用的是 Linux 操作系统):
第一个显示您的数据库 sid,第二个显示您的操作系统 IP。端口通常为 1521。
4- 在 sql Developer 内部连接名称(例如 Oracle_conn)、用户名和密码并为用户设置角色。
然后您应该输入您在步骤 4 中获得的 Ip、端口和 Sid。
5- 按测试或连接并享受!
Ok, just do this instructions to connect to the database via sql developer:
1- Startup database (if you do not starttup database yet);
2- In OS prompt execute:
The command start your listener up.
3- In OS prompt execute (If you are using linux OS):
The first shows your database sid and the second shows your OS IP. The port is usually 1521.
4- In sql developer inter connection name for example Oracle_conn, username and password and set role for the user.
Then you should enter Ip,Port and Sid you obtained in step 4.
5- Press Test or Connect and Enjoy!