ATG Version 10.0.3 Installation And Configuration
Installation Instructions for ATG WEB COMMERCE
Environment Name: atg Machine: 192.458.15.80
Pre- installation Steps
? Check Operating System Version :
$cat /etc/redhat-release
Red Hat Enterprise Linux Server release 5.5 (Tikanga)
? Check Java Version :
Check for Java (JDK 1.5 or 1.6) versions that are supported by ATG/JBOSS-EAP 5.1 Platforms.
Checking Jdk Version Info
$ which java
/usr/bin/java
$ java -version
java version “1.6.0_27″
Java(TM) SE Runtime Environment (build 1.6.0_27-b07)
Java HotSpot(TM) 64-Bit Server VM (build 20.2-b06, mixed mode)
Certified configurations: JBoss Enterprise Portal Platform 5.1
Operating system Java Virtual Machine(s)
Red Hat Enterprise Linux 5 (x86_64) Open JDK 1.6
IBM JDK 1.6
Sun JDK 1.6
Installing Oracle Database 11.2.0.1
Pre- installation Steps
? Create Directories
Log in as root user and create the following directories.
mkdir -p /home/oracle
mkdir -p /home/applmgr
mkdir -p /d01/oracle/
mkdir -p /d01/applmgr/
? Create Groups and Users
Create User Oracle to install Database and User applmgr to install JBoss and ATG.
groupadd dba
useradd oracle -g dba -d /home/oracle
useradd applmgr -g dba -d /home/applmgr
Create passwords for the users created.
passwd oracle
:*******
passwd applmgr
:*******
Change the ownerships for the directories created.
chown -R oracle:dba /d01/oracle
chmod -R 775 /d01/oracle
chown -R applmgr:dba /d01/applmgr
chmod -R 775 /d01/applmgr
? Configure the Linux Kernel Parameters
cat >> /etc/sysctl.conf
net.ipv4.ip_local_port_range = 1024 65000
net.core.rmem_default=4194304
net.core.wmem_max = 1048576
kernel.shmall = 1073741824
kernel.shmmax = 4398046511104
kernel.shmmni = 4096
kernel.sem = 250 32000 100 142
fs.file-max = 6815744
net.core.wmem_default=262144
net.core.rmem_max=4194304
Set shell limits for the oracle and applmgr users.
cat >> /etc/security/limits.conf
oracle soft nofile 131072
oracle hard nofile 131072
oracle soft nproc 131072
oracle hard nproc 131072
applmgr soft nofile 131072
applmgr hard nofile 131072
applmgr soft nproc 131072
applmgr hard nproc 131072
Change the default profile for bash and ksh as well as the default login script for cshell.
su – oracle
umask 022
Installing Oracle Database 11.2.0.1
Login as oracle user and create a directory for datafile location.
su – oracle
cd /d01/oracle
Create a directory for datafile location.
mkdir oradata
Run the ‘runInstaller’ to start the installation.
cd /d01/stage/database/
./runInstaller
Select the option ‘Create and configure a database’ and click on Next
Select the option ‘Server Class’ and click on Next.
Select the option ‘Single Instance database installation’ and click on next.
Select the option ‘Advanced install’ and click on Next.
Select ‘English’ in the Available Language List and click on Next.
Select the option ‘Enterprise Edition’.
Check the components being installed by clicking on ‘Select Options’
Click on Next.
Enter the paths ‘/d01/oracle’ and ‘/do1/oracle/11.2.0’ for the Oracle Base and Oracle Software Locations respectively and click on Next.
Enter the location ‘/d01/oracle/oraInventory’ for the Inventory Directory.
Select the OS Group ‘dba’ which has write permissions to the Inventory.
Click on Next.
Select the option ‘General Purpose / Transaction Processing’ and click on Next.
Enter Global database name ‘atgcrs.ibizsoft.com’ and provide the Oracle Service Identifier (SID) ‘atgcrs’ and click on Next.
Select the Character sets tab and select the option for UTF8 ‘Use Unicode(AL32UTF8)’
Select Sample Schemas tab and deselect the option to create sample schemas.
Click on Next
Enable Database Control for database management.
Select the File System option and enter the path ‘/d01/oracle/oradata’ for datafile location.
Disable automated backups.
Select the same password for all accounts options.Password given: ******
Select the Database Administrator Group and the Database Operator Groups.
Checkout all the settings and click on Finish.
Click Password Management.
Unlock any user accounts needed.Unlocked the SCOTT USER Account.
Open a terminal and run these scripts as Root user.
$cd
$su –
#sh /d01/oracle/oraInventory/orainstRoot.sh
sh /d01/oracle/11.2.0.root.sh
Click on ok.
Make a note of the Enterprise Manager URL and click on close.
Find the logs of the install session at: /d01/oracle/oraInventory/logs/installActions2012-03-07_07-41-38PM.log
There are no comments yet.