no way to compare when less than two revisions
Differences
This shows you the differences between two versions of the page.
| — | tech:others:oracle_install [2014/11/15 15:13] (current) – created - external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== Oracle Install on Ubuntu 64-bit ====== | ||
| + | Steps to install Oracle on the Ubuntu 64-bit server | ||
| + | |||
| + | ===== Swap space ===== | ||
| + | Oracle needs swap space of 1GB defined. Here is a [[https:// | ||
| + | |||
| + | Steps to create swap space | ||
| + | < | ||
| + | dd if=/ | ||
| + | mkswap / | ||
| + | swapon / | ||
| + | vim /etc/fstab | ||
| + | add line: / | ||
| + | </ | ||
| + | |||
| + | ===== Oracle install steps ===== | ||
| + | < | ||
| + | apt-get update | ||
| + | apt-get install libc6-i386 | ||
| + | wget " | ||
| + | wget " | ||
| + | dpkg -i --force-architecture libaio_0.3.104-1_i386.deb | ||
| + | dpkg -i --force-architecture oracle-xe-universal_10.2.0.1-1.1_i386.deb | ||
| + | / | ||
| + | </ | ||
| + | |||
| + | ===== Install Configuration log ===== | ||
| + | < | ||
| + | root@ub1:/ | ||
| + | |||
| + | Oracle Database 10g Express Edition Configuration | ||
| + | ------------------------------------------------- | ||
| + | This will configure on-boot properties of Oracle Database 10g Express | ||
| + | Edition. | ||
| + | be starting upon system boot, the ports it will use, and the passwords that | ||
| + | will be used for database accounts. | ||
| + | Ctrl-C will abort. | ||
| + | |||
| + | Specify the HTTP port that will be used for Oracle Application Express [8080]: | ||
| + | |||
| + | Specify a port that will be used for the database listener [1521]: | ||
| + | |||
| + | Specify a password to be used for database accounts. | ||
| + | password will be used for SYS and SYSTEM. | ||
| + | different passwords for each database account. | ||
| + | initial configuration: | ||
| + | Confirm the password: | ||
| + | |||
| + | Do you want Oracle Database 10g Express Edition to be started on boot (y/n) [y]: | ||
| + | |||
| + | 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 " | ||
| + | </ | ||
| + | |||
| + | ===== Config files ===== | ||
| + | * / | ||
| + | * /etc/oratab | ||
| + | |||
| + | ===== Post install and configure ===== | ||
| + | edit your ~/.bashrc | ||
| + | |||
| + | <code bash> | ||
| + | ORACLE_HOME=/ | ||
| + | PATH=$PATH: | ||
| + | export ORACLE_HOME | ||
| + | export ORACLE_SID=XE | ||
| + | export PATH | ||
| + | </ | ||
| + | |||
| + | Oracle user's home directory: / | ||
| + | |||
| + | ===== Other references ===== | ||
| + | [[http:// | ||
| + | |||
| + | [[http:// | ||
| + | |||