确定 ORACLE 根

发布于 2024-12-12 13:31:52 字数 150 浏览 2 评论 0原文

我最近通过 apt-get 在我的 Ubuntu 上安装了 Oracle Express Edition 10g。我的问题是我不知道 Oracle 到底位于哪个目录。我想将 ORACLE_HOME 设置为 Oracle 的安装路径,以便我可以从终端创建数据库。我将不胜感激任何帮助。谢谢

I recently installed Oracle Express Edition 10g on my Ubuntu from apt-get. My problem is I dont know exactly in which directory the Oracle resides. I want to set ORACLE_HOME to the path where Oracle has been installed, so that i can create database from terminal. I'd appreciate any help. Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

独守阴晴ぅ圆缺 2024-12-19 13:31:52
dpkg -L oracle-xe

将列出 oracle-xe 软件包安装的所有文件。由此,您应该能够找出 ORACLE_BASE 和 ORACLE_HOME 的合适值。

安装可能会将文件分散在文件系统中,遵循 Unix 应用程序的常见模式(例如 /usr/bin 中的可执行文件、/usr/lib 中的库、/var/lib/oracle-xe 中的数据)。在这种情况下,ORACLE_HOME 可能没有合理的值。

根据非常相似的问题的答案,看来重要的是ORACLE_HOME指向你的静态文件(代码、库和资源)安装的位置。比如:

export ORACLE_HOME=/usr/lib/oracle/xe/app/oracle/product/10.2.0/server

我不确定 Oracle 如何知道在哪里创建数据库。希望它不只是将其放在 ORACLE_HOME 中,因为它位于 /usr 中,它应该是只读的。

dpkg -L oracle-xe

Will list all the files installed by the oracle-xe package. From that, you should be able to figure out a suitable value for ORACLE_BASE and ORACLE_HOME.

It's possible that the installation has scattered the files around the filesystem, following the usual pattern for Unix applications (eg executables in /usr/bin, libraries in /usr/lib, data in /var/lib/oracle-xe). In that case, there might not be a sensible value for ORACLE_HOME.

According to answers to a very similar question, it seems that the important thing is that ORACLE_HOME points to the location where your static files (code, libraries, and resources) are installed. Something like:

export ORACLE_HOME=/usr/lib/oracle/xe/app/oracle/product/10.2.0/server

I'm not sure how Oracle then knows where to create the database. Hopefully it doesn't just put it in the ORACLE_HOME, because that's in /usr, which should be read-only.

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