如何在 SQL Developer 中获取用户名/密码/主机名/端口/SID 建立连接

发布于 2025-01-09 13:23:44 字数 277 浏览 0 评论 0原文

我安装了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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沙沙粒小 2025-01-16 13:23:44

好的,只需执行以下说明即可通过 sql Developer 连接到数据库:

1- 启动数据库(如果您尚未启动数据库);

2- 在操作系统提示符下执行:

lsnrctl start

该命令启动您的侦听器。

3- 在操作系统提示符下执行(如果您使用的是 Linux 操作系统):

echo $ORACLE_SID
ifconfig

第一个显示您的数据库 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:

lsnrctl start

The command start your listener up.

3- In OS prompt execute (If you are using linux OS):

echo $ORACLE_SID
ifconfig

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!
enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文