Ставим там в верху галочку "Accept license agreement", спускаемся в блок "Oracle Database 10g Express Edition (Universal)" и качаем файлик "oracle-xe-universal_10.2.0.1-1.0_i386.deb".
Потом чуть ниже пункт "Oracle Database 10g Express Client" и качаем файлик "oracle-xe-client_10.2.0.1-1.0_i386.deb".
После этого система попросит залогинится или зарегистрироваться, делаем это и после этого скачиваем нужные файлы и кладем их в папку /root.
Ставим пакет для совместимости с 32 битным ПО:
apt-get install -y ia32-libs
Ставим зависимости:
apt-get install -y libaio1
Ставим клиента для Oracle:
dpkg --force-architecture -i oracle-xe-client_10.2.0.1-1.0_i386.deb
Ставим сервер:
dpkg --force-architecture -i oracle-xe-universal_10.2.0.1-1.0_i386.deb
Запускаем конфигуратор:
/etc/init.d/oracle-xe configure
И выполняем следующее:
/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. Pressto 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:пароль[Enter]
Confirm the password:пароль[Enter]
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"
Убеждаемся, что Oracle запустился и работать:
ps aux | grep orac
oracle 11705 0.0 0.2 22216 6052 ? Ss 22:38 0:00 /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/tnslsnr LISTENER -inherit
root 11813 0.0 0.0 7544 912 pts/1 S+ 22:39 0:00 grep orac
Но у меня почему-то не заработало ничего на 8080м порту :(
Источник: http://blog.cachemiss.com/articles/Installing%20Oracle%20XE%20on%20Debian%20AMD64.pod
No comments :
Post a Comment
Note: only a member of this blog may post a comment.