Difference between revisions of "Instalasi Oracle"

From OnnoWiki
Jump to navigation Jump to search
(New page: # apt-get install libaio libaio1 # cp oracle-xe_10.2.0.1-1.0_i386.deb /usr/local/src # cd /usr/local/src # dpkg -i oracle-xe_10.2.0.1-1.0_i386.deb Note: Need Big SWAP # /etc/init...)
 
Line 1: Line 1:
# apt-get install libaio libaio1
+
Beberapa software accounting yang besar, seperti Compiere dan Adempiere masih bergantung pada database besar seperti Oracle. Walaupun Adempiere dapat juga digunakan tanpa Oracle. Kita pada hari ini agak beruntung karena Oracle mengeluarkan versi yang gratis untuk digunakan, yang di kenal sebagai “Oracle Express Edition”.
  
 +
Instalasi Oracle Experss Edition tidak sukar, bahkan sangat mudah sekali.
  
# cp oracle-xe_10.2.0.1-1.0_i386.deb /usr/local/src
+
* Download Oracle Express Edition dari situs Oracle pada URL http://www.oracle.com/technology/software/products/database/xe/htdocs/102xelinsoft.html
# cd /usr/local/src
 
# dpkg -i oracle-xe_10.2.0.1-1.0_i386.deb
 
  
 +
* Install beberapa library pendukung. Pada Ubuntu dapat dilakukan menggunakan perintah,
  
Note: Need Big SWAP
+
# apt-get install libaio libaio1
 +
 
 +
 
 +
* Copy dan install Oracle Express Edition menggunakan perintah,
 +
 
 +
# cp dpkg -i oracle-xe_10.2.0.1-1.0_i386.deb /usr/local/src
 +
# cd /usr/local/src
 +
# dpkg -i oracle-xe_10.2.0.1-1.0_i386.deb
 +
 
 +
* Konfigurasi Oracle Express Edition menggunakan perintah,
  
 
  # /etc/init.d/oracle-xe configure
 
  # /etc/init.d/oracle-xe configure
    8080
 
    1521
 
    password
 
    password
 
    y
 
  
access to
+
Sebagian besar nilai default yang di tawarkan pada saat konfigurasi sebetulnya tidak perlu di ubah, kita cukup menekan tombol <Enter> sampai selesai konfigurasi. Mohon di ingat baik—baik password SYS atau SYSTEM yang kita set, jangan sampai lupa. Pada saat proses konfigurasi maka pada layar akan tampak tampilan berikut,
  http://127.0.0.1:8080/apex
+
 
 +
root@ubuntu:/usr/local/src# /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]:
 +
 
 +
    Specify a port that will be used for the database listener [1521]:
 +
 
 +
    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:
 +
    Confirm the password:
 +
 
 +
    Do you want Oracle Database 10g Express Edition to be started on boot (y/n) [y]: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 "http://127.0.0.1:8080/apex"
 +
 
 +
    root@ubuntu:/usr/local/src#
 +
 
 +
* Setelah selesai di konfigurasi, kita dapat me-restart Oracle menggunakan perintah,
 +
 
 +
# /etc/init.d/oracle-xe restart
 +
  Shutting down Oracle Database 10g Express Edition Instance.
 +
Stopping Oracle Net Listener.
 +
 
 +
Starting Oracle Net Listener.
 +
Starting Oracle Database 10g Express Edition Instance.
 +
 
 +
 
 +
Selanjutnya, konfigurasi Oracle Database dapat dilakukan dengan mengakses alamat / URL http://127.0.0.1:8080/apex

Revision as of 09:42, 5 February 2008

Beberapa software accounting yang besar, seperti Compiere dan Adempiere masih bergantung pada database besar seperti Oracle. Walaupun Adempiere dapat juga digunakan tanpa Oracle. Kita pada hari ini agak beruntung karena Oracle mengeluarkan versi yang gratis untuk digunakan, yang di kenal sebagai “Oracle Express Edition”.

Instalasi Oracle Experss Edition tidak sukar, bahkan sangat mudah sekali.

  • Install beberapa library pendukung. Pada Ubuntu dapat dilakukan menggunakan perintah,
# apt-get install libaio libaio1 


  • Copy dan install Oracle Express Edition menggunakan perintah,
# cp dpkg -i oracle-xe_10.2.0.1-1.0_i386.deb /usr/local/src 
# cd /usr/local/src 
# dpkg -i oracle-xe_10.2.0.1-1.0_i386.deb 
  • Konfigurasi Oracle Express Edition menggunakan perintah,
# /etc/init.d/oracle-xe configure

Sebagian besar nilai default yang di tawarkan pada saat konfigurasi sebetulnya tidak perlu di ubah, kita cukup menekan tombol <Enter> sampai selesai konfigurasi. Mohon di ingat baik—baik password SYS atau SYSTEM yang kita set, jangan sampai lupa. Pada saat proses konfigurasi maka pada layar akan tampak tampilan berikut,

root@ubuntu:/usr/local/src# /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]: 
   Specify a port that will be used for the database listener [1521]: 
   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: 
   Confirm the password: 
   Do you want Oracle Database 10g Express Edition to be started on boot (y/n) [y]: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 "http://127.0.0.1:8080/apex" 
   root@ubuntu:/usr/local/src# 
  • Setelah selesai di konfigurasi, kita dapat me-restart Oracle menggunakan perintah,
# /etc/init.d/oracle-xe restart 
Shutting down Oracle Database 10g Express Edition Instance. 
Stopping Oracle Net Listener. 
Starting Oracle Net Listener. 
Starting Oracle Database 10g Express Edition Instance. 


Selanjutnya, konfigurasi Oracle Database dapat dilakukan dengan mengakses alamat / URL http://127.0.0.1:8080/apex