Selasa, 06 Mei 2014

Cara Memasang Oracle Oracle Database Express Edition 11g Release 2

Berhubung saya sekarang sedang mengontrak mata kuliah yang menggunakan Oracle Database Express Edition, maka saya putuskan untuk memasang juga Oracle Database Express Edition ini di Fedora saya. Selama proses pemasangan, tidak terjadi masalah apapun. Prosesnya pun termasuk sangat mudah, tidak seperti yang saya coba kemarin di Ubuntu, ada banyak sekali pengaturan-pengaturan yang lain sebelum memasang aplikasi ini.

Pertama dan yang paling utama, tentu kita harus mengunduh dulu aplikasi pemasang Oracle Database Express Edition 11g Release 2 melalui situs Oracle.com. Anda harus setuju dengan License Agreement yang mereka buat. Pilih Accept License Agreement. Setelah itu klik link Oracle Database Express Edition 11g Release 2 for Linux x64.




Untuk dapat mengunduhnya, anda pertama harus login (jika sudah pernah daftar) atau mendaftar. Setelah login, tunggu proses pengunduhan yang sedikit lama karena ukuran berkasnya yang besar.


Setelah selesai, unzip(extract) berkas yang telah diunduh tadi baik melalui file manager maupun terminal. Disini akan saya contohkan dengan menggunakan terminal. Buka dulu aplikasi terminal, pindah ke direktori Downloads (asumsi anda mengunduh melalui web browser).
bagus@ilkomUPI:~$ cd Download
bagus@ilkomUPI:~/Downloads$ unzip oracle-xe-11.2.0-1.0.x86_64.rpm.zip 
 Archive:  oracle-xe-11.2.0-1.0.x86_64.rpm.zip
   creating: Disk1/
   creating: Disk1/upgrade/
  inflating: Disk1/upgrade/gen_inst.sql  
   creating: Disk1/response/
  inflating: Disk1/response/xe.rsp   
  inflating: Disk1/oracle-xe-11.2.0-1.0.x86_64.rpm

Maka, akan muncul satu direktori baru di dalam direktori Downloads yaitu Disk1. Sekarang kita mulai proses pemasangan Oracle XE dengan perintah rpm.
bagus@ilkomUPI:~/Downloads$ sudo rpm -iv Disk1/oracle-xe-11.2.0-1.0.x86_64.rpm
[sudo] password for bagus:  
Preparing packages...
oracle-xe-11.2.0-1.0.x86_64
Executing post-install steps...
You must run '/etc/init.d/oracle-xe configure' as the root user to configure the database.

Sekarang Oracle XE sudah terpasang, tinggal konfigurasinya saja. Oleh karena itu sekarang pindah ke user root dengan perintah :
 bagus@ilkomUPI:~/Downloads$ sudo sh
sh-4.2# /etc/init.d/oracle-xe configure
Oracle Database 11g Express Edition Configuration
-------------------------------------------------
This will configure on-boot properties of Oracle Database 11g 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]: <tekan enter>

Specify a port that will be used for the database listener [1521]: <tekan 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: <masukan password dan tekan enter>
Confirm the password: <masukan password yg sama dan tekan enter>

Do you want Oracle Database 11g Express Edition to be started on boot (y/n) [y]: <tekan enter>

Starting Oracle Net Listener...Done
Configuring database...Done
Starting Oracle Database 11g Express Edition instance...Done
Installation completed successfully.

Setelah selesai, keluar dari user root dengan perintah exit:
sh-4.2# exit
Jika sudah menjadi user biasa, salin - tempel kode berikut:
bagus@ilkomUPI:~/Downloads$ . /u01/app/oracle/product/11.2.0/xe/bin/oracle_env.sh
Perhatikan titik yang ada di awal harus ada!

Sekarang anda bisa mencoba Oracle XE yang sudah terpasang di sistem Fedora anda.
bagus@ilkomUPI:~/Downloads$ sqlplus system
SQL*Plus: Release 11.2.0.2.0 Production on Tue May 6 01:36:42 2014
Copyright (c) 1982, 2011, Oracle.  All rights reserved.
Enter password: <masukan password dan tekan enter>
Connected to:
Oracle Database 11g Express Edition Release 11.2.0.2.0 - 64bit Production
SQL> 
Oracle anda siap digunakan :). Jika terjadi kesalahan, coba logout dan login ulang.

2 komentar: