diff options
author | DhabyX <slack.dhabyx@gmail.com> | 2016-08-02 00:33:03 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-08-03 07:29:30 +0700 |
commit | a06f065001ac20c01dc321623ad8bc0e4fa406da (patch) | |
tree | b5e82e7a0a948514c4c782796d5a53b67ce62bdc /system/oracle-xe/README.Slackware | |
parent | 7f392e61526e595e55534725085b3d33679cf68c (diff) |
system/oracle-xe: Added (Oracle Database Express Edition).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/oracle-xe/README.Slackware')
-rw-r--r-- | system/oracle-xe/README.Slackware | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/system/oracle-xe/README.Slackware b/system/oracle-xe/README.Slackware new file mode 100644 index 0000000000000..f1067059e07f4 --- /dev/null +++ b/system/oracle-xe/README.Slackware @@ -0,0 +1,52 @@ +The installation process needs a user and a group previuosly +configured, *oracle* for the user and *dba* for the group. + +You must be run the following commands: + +# groupadd -g 329 dba +# useradd -d /u01/app/oracle -s /bin/bash -u 329 -g 329 oracle + +Oracle recomend some system requirements in kernel parameters, +acording to oracle-xe installation guide at: +https://docs.oracle.com/cd/E17781_01/install.112/e18802/toc.htm#BABJFAIA + +This slackbuild provides an sysctl configurations at +/etc/sysctl.d/10-oracle.xe.conf; you only need restart or run: + +# sysctl --system + +After installing you must configure the database: + +# /etc/rc.d/rc.oracle-xe configure + +Some environment variables need to be configured or exported before +you start to use Oracle; by default all variables is configured with +"en_US.UTF-8" but you can change to your locale preferences at: + +/etc/profile.d/oracle-env.sh + +And you can load with: + +# source /etc/profile.d/oracle-env.sh + +or logout and login for load all environment variables. + +To start and stop the database at boot/shutdown, make sure +/etc/rc.d/rc.oracle-xe is executable and update the following files: + +/etc/rc.d/rc.local +================== +# Startup oracle-xe +if [ -x /etc/rc.d/rc.oracle-xe ]; then + /etc/rc.d/rc.oracle-xe start +fi + +/etc/rc.d/rc.local_shutdown +=========================== +# Stop oracle-xe +if [ -x /etc/rc.d/rc.oracle-xe ]; then + /etc/rc.d/rc.oracle-xe stop +fi + +You can read more detailed instructions at: +https://docs.oracle.com/cd/E17781_01/install.112/e18802/toc.htm |