【问题标题】:Can anyone please give me the step by step installation process of the oracle development suite 10g on ubuntu 16.04? [closed]谁能给我在ubuntu 16.04上逐步安装oracle开发套件10g的过程? [关闭]
【发布时间】:2019-05-22 21:04:34
【问题描述】:

我的机器上已经安装了 oracle 11g 企业版。但是现在我必须使用 Reports and Forms Builder,它被告知要安装 Oracle Developer Suite 10g。

我已经从 oracle 站点下载了.cpio 文件 https://www.oracle.com/technetwork/developer-tools/developer-suite/downloads/101202linuxsoft-099233.html

现在我应该如何处理这些文件? 谢谢。

【问题讨论】:

  • 谁让你安装 10g 开发者套件的?为什么不请他们帮助你呢?另外,为什么是 10g 而不是 11g、12c?
  • 我问他们。但是他们在 windows 上工作,似乎不知道如何在 ubuntu 中安装它。
  • 任何版本都适合我。我想我只需要找到一种方法来以某种方式在 Ubuntu 上的 Forms and Reports 构建器上工作,因为我不想再次安装 Windows。请帮帮我。

标签: sql oracle ubuntu oracleforms developer-tools


【解决方案1】:

Oracle 10g2?哇,这有点过时了,但它是:

  1. 安装 libaio1 库:

    sudo apt-get update; 
    sudo apt-get install -y libaio1 bc
    
  2. [从 Oracle] 下载并安装 oracle 数据库包。确保获得正确的架构(在慢速机器上大约需要 3 分钟):

    sudo dpkg -i oracle-xe-universal_10.2.0.1-1.0_i386.deb
    
  3. 配置 Oracle [根据需要更改密码](在慢速机器上大约需要 4 分钟):

    sudo /etc/init.d/oracle-xe configure
    

    并回答每个问题:

    Oracle Database 10g Express Edition Configuration
    -------------------------------------------------
    This will configure on-boot properties of Oracle Database 10g Express 
    Edition.  The following questions will determine whether the database should 
    be starting upon system boot, the ports it will use, and the passwords that 
    will be used for database accounts.  Press <Enter> to accept the defaults. 
    Ctrl-C will abort.
    
    Specify the HTTP port that will be used for Oracle Application Express [8080]: <Enter>
    
    Specify a port that will be used for the database listener [1521]: <Enter>
    
    Specify a password to be used for database accounts.  Note that the same
    password will be used for SYS and SYSTEM.  Oracle recommends the use of 
    different passwords for each database account.  This can be done after 
    initial configuration: system
    Confirm the password: system
    
    Do you want Oracle Database 10g Express Edition to be started on boot (y/n) [y]: <Enter>
    
    Starting Oracle Net Listener...Done
    Configuring Database...Done
    Starting Oracle Database 10g Express Edition Instance...Done
    Installation Completed Successfully.
    To access the Database Home Page go to "http://127.0.0.1:8080/apex"
    
  4. 在 ~/.bashrc 中设置会话环境变量:

    # =====================
    # Oracle database setup
    # =====================
    
    export ORACLE_HOME=/usr/lib/oracle/xe/app/oracle/product/10.2.0/server
    export PATH=$PATH:$ORACLE_HOME/bin
    export ORACLE_SID=XE
    
  5. 注销并再次登录以加载更改。

【讨论】:

  • 我实际上对此表示怀疑。它实际上就像我已经在我的机器上安装了 oracle 11g 企业版。但现在就像我必须在这个报表和表单生成器上工作一样,它被告知要安装 Oracle Devleoper Suite 10g。我应该做些什么?谢谢。
  • @TheImpaler - OP 的问题并不像我们希望的那样清楚,但他们询问的是安装 Forms and Reports Builder 而不是数据库。
  • 是的,它用于在 Ubuntu 16.04 中安装 Forms and Reports Builder。我已经在我的机器上安装了 oracle 数据库 11g,并且还安装了 sql developer。现在我想安装 Forms and Reports Builder。我们被告知为此安装 Oracle Development Suite 10g。我不知道如何在 Ubuntu 中执行此操作。请尽快帮助我。
  • @APC 对不起,我误会了。
猜你喜欢
  • 2016-11-12
  • 2017-01-18
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2017-01-04
  • 2017-12-31
  • 1970-01-01
  • 2011-02-23
相关资源
最近更新 更多