Oracle Enterprise Content Management Suite 11g,a comprehensive,integrated, and high-performance content management solution,is now available to help organizations increase efficiency,reduce costs and improve content security.
A component of Oracle Fusion Middleware,Oracle Enterprise Content Management suite 11g consists of Oracle Universal Records Management 11g,Oracle Imaging and Process Management 11g,and Oracle Information Rights Management 11g.
The new suite is built on a unified content repository and provides an easy-to-use,end-to-end solution spanning imaging,Web,document,and records management.It builds on Oracle's solution for enterprise application documents through preintegration with business process,business applications,and desktop productivity tools.Its unified repository can support high-volume content ingestion applications,such as invoice processing,and high-volume content delivery applications,such as e-commerce sites.
To maximize content management efficiency,reduce costs,and improve security,organizations need a comprehensive enterprise content management solution that is integrated into bussiness process and fits with the way work.With Oracle Enterprise Content Management Suite 11g,we meet those demands while delivering the performance and scalibility needed to support the most-complex and demanding enterprise content management environments.
New enhancements deliver unparalleled ease-of-use and help put content management where people work by providing:
Next-generation desktop integration – to increase efficiency through access to workflow information and saved searches via Microsoft Windows Explorer, as well as offering the ability to edit managed content, compare managed documents and insert managed links directly from Microsoft Office.
Open Web content management – a revolutionary approach to integrating Web content authoring, design and presentation capabilities into a broad range of Web sites; portals, including Oracle WebLogic Portal; and Web applications. Among the new features are:
Servlets and tag libraries for content management services enable Web developers to add Web content management to new and existing JavaServer Pages (JSP), JavaServer Faces (JSF) and Oracle Application Development Framework (ADF) Faces applications
A plug-in which adds an array of Web content management palettes into Oracle’s leading Integrated Development Environment, Oracle JDeveloper
Simplified design mode for business users which makes it easier for them to edit and manage their sites.
Oracle Universal Records Management 11g is a scalable DoD 5015.2 v3 certified electronic and physical records management system. Key new enhancements support business demands by:
Improving discovery – to provide access to content from anywhere in the enterprise and enable instant holds, dispositions and discovery of content from across systems and applications
Enhancing usability – to improve insight for business users through an updated physical records management interface, a records management dashboard and more flexible and complete reporting
Delivering real-time discovery and support for third-party archiving - Oracle Universal Records Management 11g is an enterprise-ready solution with real-time discovery capabilities and support for third-party archiving and information management vendors.
Showing posts with label oracle 11g. Show all posts
Showing posts with label oracle 11g. Show all posts
Wednesday, October 13, 2010
Friday, August 13, 2010
How to install Oracle 11g on Linux
Guide includes:
1.Pre-Installation Steps
2.Installation
3.Post-Installation Steps.
Pre-Installation Steps:
1. Create oracle users and groups.
groupadd oinstall
groupadd dba
groupadd oper
useradd -g oinstall -G dba,oper oracle
passwd oracle
2. Set Kernel Parameters
Edit /etc/sysctl.conf and add following lines.
kernel.shmall = 2097152
kernel.shmmax = 2147483648
kernel.shmmni = 4096
kernel.sem = 250 32000 100 128
fs.file-max = 6553600
net.ipv4.ip_local_port_range = 1024 65000
net.core.rmem_default = 4194304
net.core.rmem_max = 4194304
net.core.wmem_default = 262144
net.core.wmem_max = 262144
execute sysctl command
# sysctl -p
or
reboot to apply above changes.
For RedHat (OEL, Centos, WBL) 4 version: Edit the /etc/pam.d/login file and add following line:
session required /lib/security/pam_limits.so
For RedHat (OEL, Centos) 5 version: Edit the /etc/pam.d/login file and add following line:
session required pam_limits.so
Edit the /etc/security/limits.conf file and add following lines:
oracle soft nproc 2047
oracle hard nproc 16384
oracle soft nofile 1024
oracle hard nofile 65536
3. Creating oracle directories
mkdir -p /u01/app/oracle/product/11.1.0/db_1
chown -R oracle:oinstall /u01
chmod -R 775 /u01
4. Setting Oracle Enviroment
Edit the /home/oracle/.bash_profile file and add following lines:
ORACLE_BASE=/u01/app/oracle
ORACLE_HOME=$ORACLE_BASE/product/11.1.0/db_1
ORACLE_SID=ORCL
LD_LIBRARY_PATH=$ORACLE_HOME/lib
PATH=$PATH:$ORACLE_HOME/bin
export ORACLE_BASE ORACLE_HOME ORACLE_SID LD_LIBRARY_PATH PATH
Save the .bash_profile and execute following commands to load new user enviroment:
cd /home/oracle
. .bash_profile
Login as root and issue the following command:
xhost +
Some additional packages are required for succesful installation of Oracle software. To check whether required packages are installed on your operating system use following command:
rpm -q binutils elfutils elfutils-libelf gcc gcc-c++ glibc glibc-common glibc-devel compat-libstdc++-33 cpp make compat-db sysstat libaio libaio-devel unixODBC unixODBC-devel|sort
Installation:
Download the Oracle 11g release 1 (11.1.0.6.0) software from Oracle website.
Extract the files using following command:
unzip linux_11gR1_database.zip
Now the system is prepared for Oracle software installation. To start the installation process go to database directory and execute the following commands:
cd database
./runInstaller
Click here for screenshot
Post-Instalation:
Auto Startup and Shutdown of Database and Listener
Login as root and modify /etc/oratab file and change last character to Y for apropriate database.
ORCL:/u01/app/oracle/product/11.1.0/db_1:Y
As root user create new file "oracle" (init script for startup and shutdown the database) in /etc/init.d/ directory with following content:
#!/bin/bash
#
# oracle Init file for starting and stopping
# Oracle Database. Script is valid for 10g and 11g versions.
#
# chkconfig: 35 80 30
# description: Oracle Database startup script
# Source function library.
. /etc/rc.d/init.d/functions
ORACLE_OWNER="oracle"
ORACLE_HOME="/u01/app/oracle/product/11.1.0/db_1"
case "$1" in
start)
echo -n $"Starting Oracle DB:"
su - $ORACLE_OWNER -c "$ORACLE_HOME/bin/dbstart $ORACLE_HOME"
echo "OK"
;;
stop)
echo -n $"Stopping Oracle DB:"
su - $ORACLE_OWNER -c "$ORACLE_HOME/bin/dbshut $ORACLE_HOME"
echo "OK"
;;
*)
echo $"Usage: $0 {start|stop}"
esac
Execute (as root) following commands (First script change the permissions, second script is configuring execution for specific runlevels):
chmod 750 /etc/init.d/oracle
chkconfig --add oracle --level 0356
Auto Startup and Shutdown of Enterprise Manager Database Control
As root user create new file "oraemctl" (init script for startup and shutdown EM DB Console) in /etc/init.d/ directory with following content:
#!/bin/bash
#
# oraemctl Starting and stopping Oracle Enterprise Manager Database Control.
# Script is valid for 10g and 11g versions.
#
# chkconfig: 35 80 30
# description: Enterprise Manager DB Control startup script
# Source function library.
. /etc/rc.d/init.d/functions
ORACLE_OWNER="oracle"
ORACLE_HOME="/u01/app/oracle/product/11.1.0"
case "$1" in
start)
echo -n $"Starting Oracle EM DB Console:"
su - $ORACLE_OWNER -c "$ORACLE_HOME/bin/emctl start dbconsole"
echo "OK"
;;
stop)
echo -n $"Stopping Oracle EM DB Console:"
su - $ORACLE_OWNER -c "$ORACLE_HOME/bin/emctl stop dbconsole"
echo "OK"
;;
*)
echo $"Usage: $0 {start|stop}"
esac
Execute (as root) following commands (First script change the permissions, second script is configuring execution for specific runlevels):
chmod 750 /etc/init.d/oraemctl
chkconfig --add oraemctl --level 0356
You may consider to use rlwrap for comfortable work with sqlplus and adrci utility. RPM package for RedHat compatible (x86) distribution you can download here.
su -
# rpm -ivh rlwrap-0.24-rh.i386.rpm
# exit
echo "alias sqlplus='rlwrap sqlplus'" >> /home/oracle/.bash_profile
echo "alias adrci='rlwrap adrci'" >> /home/oracle/.bash_profile
. /home/oracle/.bash_profile
Subscribe to:
Posts (Atom)