IV. Create Database Listener
Setelah selesai membuat database kita butuh untuk membuat listener prosesnya.
1. Open a new terminal console as Oracle user
[oracle@dbserver ~] $
2. Ketik netca untuk memulai jendela Network Configuration Assistant, kemudian pilih Listener Configuration dan click Next;
[oracle@dbserver ~] $ netca
3. Kemudian pilih Add dan click Next;
4. Ketik pada kolom Listener name: LISTENER dan click Next untuk melanjutkan;
5. Pilih TCP Protocol dan kemudian click Next;
6. Pilih standard Port 1521 dan kemudian click Next untuk melanjutkan;
7. Pilih No untuk pilihan tidak men-configure listener lainnya dan click Next untuk melanjutkan;
8. Akan muncul pemberitahuan “Listener Configuration Complete” dan Click Next saja untuk melanjutkan;
9. Click Finish untuk men-selesaikan Listener Configuration;
V. Migration Process
1. Export database in Original Server
- Stop listener service to prevent any users login while the export is running.
- exp system/manager file=file_name.dmp fully=y compress=y log= logname.log consistent=y direct=y
- It will take around 2 hours to complete.
- Once the export process complete, copy the dump file to the new server.
2. Import database from DUMP file
- imp system/manager file=file_name.dmp commit=y full=y log=logname.log buffer=500000
- Import process will take around 8 hours.
- Once the import process finish after all tablespace maxsize=6 gb
3. Startup-Shutdown Database
- Login as Oracle user
[oracle@dbserver ~] $ sqlplus /nolog
sqlplus> connect / as sysdba
sqlplus> shutdown immediate;
sqlplus> startup;
sqlplus> exit
[oracle@dbserver ~] $ lsnrctl start
The system is ready to use for production..
Sumber : http://wisnuhidayat.wordpress.com
0 komentar:
Posting Komentar