My post installation script

#I hope its the right forum to post that in, if not im very sorry!
This here is a script i wrote to automate all the stuff i do after installing arch, i have several computers and it has options for a additional one
Some important points:
1) this script is very specific, its made for my computer and my needs, this means that its useful right now only to people who know bash
and will find use in altering it to their own needs, also if someone wants he can make it more general for a wider use
2) this is one of the first scripts i wrote, it may be that it doesn't implent some of its features in the best way possible
3) use it at your own risk, if it breaks your system don't blame me please, you should check it before you use it, anyway its meant to be used
on a FRESH arch install, not on a working system.
What the correct script actually does:
The script as stated in the comments does the next things:
1) First of all it consists of several files, one the "install" file is the actual script, the others are just meant to run the script and split its output to
show both on the terminal and in a file named: /var/log/MySysInstall.log, here is an example of main.install:
#!/bin/bash
./install Main | tee /var/log/MySysInstall.log
in the current script Main in the last row can be replaces with Laptop, Game for computer specific arguments or without argumets for a general install
the two files should be in the same folder, i think it could have been implented with one file but im new to scripting..
2) The script will ask some general questions to make sure everything is currect, some of the questions and checks in the script are not relevant at all
to anybody other than myself, they usually make sure that i have a samba shared partition running (it could lose connection on wireless).
3) Adds the archlinux.fr repo, it will be used for yaourt.
4) The script installs lots of stuff, at first general stuff used by all computers in my house, then stuff based on the argument given in 1)
please inspect the packages and change according to your needs
5) The script nano's to /etc/yaourtrc
6) Adds users to the system, change to your users.
7) It creates my /home/samba share dir if its not created (probably irrelevant to you)
8) Configures sudo in a nasty way that maybe can damage the sudoers file, delete this line if you dodnt know sudo well enough.
9) Edits samba if needed, this is the first line in the script that relies on additional files i have on my comp or the samba share (main and game are the same
comp (dual boot of arch32 and 64) and they are the hosts of /home/samba all the other computers will mount it from them, this is why a samba check is not
present here.).
10) Adds some commented lines to fstab and nano's it for easier configurations, this is the regular workflow in the script BTW (adding comments to the file
before editing it)
11) Helps edit the gpm daemon
12) Helps to configure alsa
13) Helps to configure xorg
14) Does some post install copies of files AND creates a file in my main users home with further instructions, mostly for stuff that needs to be done with xorg runnig
or stuff i was to lasy to add to the script
15) chowns and sets my regular permissions for user folders
16) ends the script
The script itself, ENJOY:
#!/bin/bash
# Copyright 2008 Leon Vayman
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# A copy of the GNU General Public License is found in
# <http://www.gnu.org/licenses/>.
#Check that the user updated the kernel and restarted before proceeding
while [ 1 ] ; do
echo ; clear
echo -n "Have you already used pacman -Syu and Restarted? (y/n) "
read Keypress
case "$Keypress" in
[Yy])
break
[Nn])
echo "Then do it now.."
exit
esac
done
#Check if samba is accesible and warn the user if its not (offering to quit)
if [ ! -e /home/samba/Config/ ] ; then
while [ 1 ] ; do
echo ; clear
echo -n "Samba is not accesible, do you want to proceed? (y/n) "
read Keypress
case "$Keypress" in
[Yy])
break
[Nn])
exit
esac
done
fi
#Make sure the app wasnt ran accidently with wrong arguments
while [ 1 ] ; do
echo ; clear
echo -n "The comp you are on is $1 is that correct? (y/n) "
read Keypress
case "$Keypress" in
[Yy])
break
[Nn])
exit
esac
done
#Edit /etc/pacman.conf
echo ; clear
echo >> /etc/pacman.conf
echo "[archlinuxfr]" >> /etc/pacman.conf
if [ "$1" = "Game" ] ; then
echo "Server = http://repo.archlinux.fr/x86_64" >> /etc/pacman.conf
else
echo "Server = http://repo.archlinux.fr/i686" >> /etc/pacman.conf
fi
echo -n "Make sure the right archlinux.fr repo was added "
read n1
nano /etc/pacman.conf
echo ; clear
#Install all packages
echo "Installing packages"
pacman -Syu
pacman -S yaourt
pacman -S xorg
pacman -S gstreamer0.10-plugins
yaourt -S abiword alsa-lib alsa-utils alsa-oss bash-completion cabextract centerim conky exaile hal epdfview feh freetype2 gamin gconf-editor geany gksu gmrun gnome-icon-theme gpicview \
gtk-engines zip irssi jre links-g libdvdcss tcl lxappearance lxpanel lxde-common lxrandr lxtask mesa moc mousepad mplayer-plugin numlockx openbox obconf obmenu openbox-themes \
p7zip pcmanfm pidgin pm-utils powertop screen terminal ttf-bitstream-vera ttf-dejavu ttf-freefont ttf-ms-fonts unace unrar unzip xarchiver xchat xmahjongg
yaourt -S stjerm
case "$1" in
"Laptop")
yaourt -S vlc keytouch keytouch-editor xf86-video-i810 synaptics cpufrequtils flashplugin
yaourt -S swiftweasel-pentium-3
yaourt -S wpa_supplicant-beta
yaourt -S xcompmgr-git
"Main")
yaourt -S flashplugin cpufrequtils epiphany catalyst deluge amule xmoto abs samba
yaourt -S icecat
yaourt -S xcompmgr-git
yaourt -S ekiga3
yaourt -S ov51x-jpeg
yaourt -S vlc-branch
yaourt -S brasero-no-gnome
"Game")
yaourt -S epiphany catalyst deluge amule xmoto abs samba ##!! add gnash or swfdec
yaourt -S icecat
yaourt -S ekiga3
yaourt -S ov51x-jpeg
yaourt -S vlc-branch
yaourt -S brasero-no-gnome
echo -n "No extra packages installed "
esac
echo -n "Press Enter to continue "
read n1
echo ; clear
#Configure yaourt.rc
echo -n "Replace the editor in yaourtrc "
read n1
nano /etc/yaourtrc
echo ; clear
#Add users
echo "Adding User vleon"
useradd -d /home/vleon -g users -G disk,wheel,games,video,audio,optical,storage,power,dbus,hal,avahi,log -m vleon
echo "Set vleon's password"
passwd vleon
echo ; clear
echo "Adding User masha"
useradd -d /home/masha -g users -G disk,wheel,games,video,audio,optical,storage,power,dbus,hal,avahi,log -m masha
echo "Set masha's password"
passwd masha
echo ; clear
#If for some reason samba dir doesnt exist, create it
if [ ! -e /home/samba ] ; then
mkdir /home/samba
chown vleon:users /home/samba
chmod 770 /home/samba
fi
#Configure visudo
echo -n "uncomment wheel in visudo and make sure the added lines are correct "
read n1
echo "#%power ALL=(ALL) NOPASSWD: /usr/sbin/pm-hibernate" >> /etc/sudoers
echo "#%power ALL=(ALL) NOPASSWD: /sbin/shutdown" >> /etc/sudoers
visudo
echo ; clear
#Edit samba if needed
if ( [ "$1" = "Main" ] || [ "$1" = "Game" ] ) ; then
echo -n "Edit swat "
read n1
cp /home/samba/Config/etc/xinetd.d/swat /etc/xinetd.d/swat
nano /etc/xinetd.d/swat
echo ; clear
echo -n "Edit Hosts "
read n1
cp /home/samba/Config/etc/hosts.allow /etc/hosts.allow
nano /etc/hosts.allow
echo ; clear
echo -n "Edit smb.conf "
read n1
cp /home/samba/Config/etc/samba/smb.conf /etc/samba/smb.conf
nano /etc/samba/smb.conf
echo ; clear
echo "Set vleon's samba password"
smbpasswd -a vleon
echo ; clear
echo -n "Add samba and xinetd daemon to rc.conf "
read n1
nano /etc/rc.conf
echo ; clear
fi
#Edit fstab
echo -n "Edit fstab "
read n1
echo >> /etc/fstab
if [ "$1" != "Laptop" ] ; then
echo "#UUID=92D8DA69D8DA4ADD /mnt/windows ntfs-3g defaults,noatime 0 0" >> /etc/fstab
if ( [ "$1" != "Main" ] && [ "$1" != "Game" ] ) ; then
echo "#UUID=0E15-1D06 /mnt/windows vfat defaults,noatime,umask=0000 0 0" >> /etc/fstab
echo "#//192.168.1.100/samba /home/samba cifs defaults,noatime,noauto,user=vleon%pass 0 0" >> /etc/fstab
echo "##change the above password!!" >> /etc/fstab
fi
nano /etc/fstab
echo ; clear
else
echo "#UUID=0E15-1D06 /mnt/windows vfat defaults,noatime,umask=0000 0 0" >> /etc/fstab
echo "#//192.168.1.100/samba /home/samba cifs defaults,noatime,noauto,user=vleon%pass 0 0" >> /etc/fstab
echo "##change the above password!!" >> /etc/fstab
nano /etc/fstab
echo ; clear
fi
#Edit gpm
echo -n "Edit gpm "
read n1
echo "#GPM_ARGS=\"-m /dev/input/mice -t imps2\"" >> /etc/conf.d/gpm
nano /etc/conf.d/gpm
echo ; clear
echo -n "Add gpm daemon to rc.conf "
read n1
nano /etc/rc.conf
echo ; clear
#Configure alsa
Alsa Config
test=1
echo -n "Edit alsamixer "
read n1
while [ "$test" = 1 ] ; do
alsamixer -V all
echo "Testing Sound"
aplay /usr/share/sounds/alsa/Noise.wav
while [ 1 ] ; do
echo ; clear
echo -n "Did You Hear Any Sound? (y/n) "
read Keypress
case "$Keypress" in
[Yy])
test=0
break
[Nn])
break
esac
done
done
alsactl store
echo -n "Add alsa to daemons "
read n1
nano /etc/rc.conf
echo ; clear
#Configure Xorg
if [ -e /home/samba/Config/etc/X11/ ] ; then
echo -n "Edit xorg.conf "
read n1
if ( [ "$1" = "Laptop" ] ) ; then
cp /home/samba/Config/etc/X11/laptop.xorg.conf /etc/X11/xorg.conf
else
cp /home/samba/Config/etc/X11/main.xorg.conf /etc/X11/xorg.conf
fi
nano /etc/X11/xorg.conf
echo ; clear
echo -n "add \"ru\" to xorg.conf.mom "
read n1
cp etc/X11/xorg.conf etc/X11/xorg.conf.mom
nano /etc/X11/xorg.conf.mom
echo ; clear
else
echo -n "No samba connection found, manually editing xorg.conf "
read n1
X -configure
mv /root/xorg.conf.new /etc/X11/xorg.conf
echo >> /etc/X11/xorg.conf
echo "# Option \"XkbLayout\" \"us,il\"" >> /etc/X11/xorg.conf
echo "# Option \"XkbOptions\" \"grp:alt_shift_toggle,grp_led:scroll\"" >> /etc/X11/xorg.conf
echo "# DefaultDepth 24" >> /etc/X11/xorg.conf
echo "# Modes \"1680x1050\" \"1280x1024\" \"1024x768\" \"800x600\"" >> /etc/X11/xorg.conf
if [ "$1" = "Laptop" ] ; then
echo >> /etc/X11/xorg.conf
echo "#Section \"InputDevice\"" >> /etc/X11/xorg.conf
echo "# Identifier \"Touchpad\"" >> /etc/X11/xorg.conf
echo "# Driver \"synaptics\"" >> /etc/X11/xorg.conf
echo "# Option \"Device\" \"/dev/input/mouse0\"" >> /etc/X11/xorg.conf
echo "# Option \"Protocol\" \"auto-dev\"" >> /etc/X11/xorg.conf
echo "# Option \"LeftEdge\" \"1700\"" >> /etc/X11/xorg.conf
echo "# Option \"RightEdge\" \"5300\"" >> /etc/X11/xorg.conf
echo "# Option \"TopEdge\" \"1700\"" >> /etc/X11/xorg.conf
echo "# Option \"BottomEdge\" \"4200\"" >> /etc/X11/xorg.conf
echo "# Option \"FingerLow\" \"25\"" >> /etc/X11/xorg.conf
echo "# Option \"FingerHigh\" \"30\"" >> /etc/X11/xorg.conf
echo "# Option \"FingerPress\" \"100\"" >> /etc/X11/xorg.conf
echo "# Option \"MaxTapTime\" \"180\"" >> /etc/X11/xorg.conf
echo "# Option \"MaxTapMove\" \"220\"" >> /etc/X11/xorg.conf
echo "# Option \"VertScrollDelta\" \"100\"" >> /etc/X11/xorg.conf
echo "# Option \"MinSpeed\" \"0.06\"" >> /etc/X11/xorg.conf
echo "# Option \"MaxSpeed\" \"0.12\"" >> /etc/X11/xorg.conf
echo "# Option \"AccelFactor\" \"0.0010\"" >> /etc/X11/xorg.conf
echo "# Option \"SHMConfig\" \"on\"" >> /etc/X11/xorg.conf
echo "#EndSection" >> /etc/X11/xorg.conf
fi
echo -n "Edit xorg.conf "
read n1
nano /etc/X11/xorg.conf
echo ; clear
echo -n "add \"ru\" to xorg.conf.mom "
read n1
cp etc/X11/xorg.conf etc/X11/xorg.conf.mom
nano /etc/X11/xorg.conf.mom
echo ; clear
fi
#Start the post install document and copy files to homes if able and need to
echo "Post Installation Instructions" > /home/vleon/PostInstall.txt
echo "------------------------------" >> /home/vleon/PostInstall.txt
echo >> /home/vleon/PostInstall.txt
echo "Usage: Follow the instructions and delete the lines that are not relevant anymore. you can delete" >> /home/vleon/PostInstall.txt
echo " this file after you finished." >> /home/vleon/PostInstall.txt
echo >> /home/vleon/PostInstall.txt
echo "-------------------------------------------------------------------------------------------------" >> /home/vleon/PostInstall.txt
if [ ! -e /home/vleon/.config] ; then
if [ -e /home/samba/Config/ ] ; then
cp /home/samba/Config/.bash_profile /home/vleon/ ; cp /home/samba/Config/.bash_profile /home/masha/
cp /home/samba/Config/.bashrc /home/vleon/ ; cp /home/samba/Config/.bashrc /home/masha/
cp /home/samba/Config/.xinitrc /home/vleon/ ; cp /home/samba/Config/.xinitrc /home/masha/
cp /home/samba/Config/.xserverrc /home/masha/
mkdir -p /home/vleon/.config/openbox ; mkdir -p /home/masha/.config/openbox
cp /home/samba/Config/.config/openbox/rc.xml /home/vleon/.config/openbox/ ; cp /home/samba/Config/.config/openbox/rc.xml /home/masha/.config/openbox/
if [ "$1" = "Laptop" ] ; then
cp /home/samba/Config/.conkyrc.laptop /home/vleon/.conkyrc ; cp /home/samba/Config/.conkyrc.laptop /home/masha/.conkyrc
cp /home/samba/Config/.Xdefaults.laptop /home/vleon/.Xdefaults ; cp /home/samba/Config/.Xdefaults.laptop /home/masha/.Xdefaults
cp /home/samba/Config/.config/openbox/menu.xml.laptop /home/vleon/.config/openbox/menu.xml
cp /home/samba/Config/.config/openbox/menu.xml.laptop /home/masha/.config/openbox/menu.xml
cp /home/samba/Config/.config/openbox/autostart.sh.laptop /home/vleon/.config/openbox/autostart.sh
cp /home/samba/Config/.config/openbox/autostart.sh.laptop /home/masha/.config/openbox/autostart.sh
else
if ( [ "$1" != "Main" ] && [ "$1" != "Game" ] )
cp /home/samba/Config/.conkyrc.laptop /home/vleon/.conkyrc ; cp /home/samba/Config/.conkyrc.laptop /home/masha/.conkyrc
else
cp /home/samba/Config/.conkyrc.main /home/vleon/.conkyrc ; cp /home/samba/Config/.conkyrc.main /home/masha/.conkyrc
fi
cp /home/samba/Config/.Xdefaults.main /home/vleon/.Xdefaults ; cp /home/samba/Config/.Xdefaults.main /home/masha/.Xdefaults
cp /home/samba/Config/.config/openbox/menu.xml.main /home/vleon/.config/openbox/menu.xml
cp /home/samba/Config/.config/openbox/menu.xml.main /home/masha/.config/openbox/menu.xml
cp /home/samba/Config/.config/openbox/autostart.sh.main /home/vleon/.config/openbox/autostart.sh
cp /home/samba/Config/.config/openbox/autostart.sh.main /home/masha/.config/openbox/autostart.sh
fi
else
echo >> /home/vleon/PostInstall.txt
echo "!!Samba is not availble, you will have to create the following files yourself!!" >> /home/vleon/PostInstall.txt
fi
echo >> /home/vleon/PostInstall.txt
echo "The folowing files where probably created in your home folders:" >> /home/vleon/PostInstall.txt
echo ".bash_profile" >> /home/vleon/PostInstall.txt
echo ".bashrc" >> /home/vleon/PostInstall.txt
echo ".conkyrc" >> /home/vleon/PostInstall.txt
echo ".Xdefaults" >> /home/vleon/PostInstall.txt
echo ".xinitrc" >> /home/vleon/PostInstall.txt
echo ".xserverrc #<< only to /home/masha" >> /home/vleon/PostInstall.txt
echo ".config/openbox/autostart.sh" >> /home/vleon/PostInstall.txt
echo ".config/openbox/menu.xml" >> /home/vleon/PostInstall.txt
echo ".config/openbox/rc.xml" >> /home/vleon/PostInstall.txt
echo "!!Make sure the above files created and are configured properly!!" >> /home/vleon/PostInstall.txt
echo >> /home/vleon/PostInstall.txt
echo "Configuration Guidelines:" >> /home/vleon/PostInstall.txt
echo "1) make sure width and hight are correct .Xdefaults" >> /home/vleon/PostInstall.txt
echo "2) make sure to comment the \"xcompmgr\" line in autostart.sh, to fit the Computer and User" >> /home/vleon/PostInstall.txt
echo "3) use obmenu and obconf later to tune up stuff" >> /home/vleon/PostInstall.txt
echo >> /home/vleon/PostInstall.txt
echo "-------------------------------------------------------------------------------------------------" >> /home/vleon/PostInstall.txt
echo >> /home/vleon/PostInstall.txt
echo "rc.conf Guidelines:" >> /home/vleon/PostInstall.txt
echo "1) possible modules are: powernow-k8 or acpi-cpufreq, cpufreq_ondemand, ov51x-jpeg, fglrx" >> /home/vleon/PostInstall.txt
echo "2) possible daemons are: hal, cpufreq, acpid [laptop], netfs, keytouch" >> /home/vleon/PostInstall.txt
echo >> /home/vleon/PostInstall.txt
echo "-------------------------------------------------------------------------------------------------" >> /home/vleon/PostInstall.txt
echo >> /home/vleon/PostInstall.txt
echo "General Guidelines:" >> /home/vleon/PostInstall.txt
echo "1) copy or compare the files from /home/samba/Config/etc to /etc" >> /home/vleon/PostInstall.txt
echo "2) on the laptop, dont forget to add the additional scripts needed from the /home/samba/Config/, dont forget to backup replaced files" >> /home/vleon/PostInstall.txt
echo "3) add resume=/dev/sda3 to /boot/grub/menu.lst if its not there already" >> /home/vleon/PostInstall.txt
echo "4) dont Forget to configure gksu after launching X" >> /home/vleon/PostInstall.txt
echo "5) lauch and configure all the apps in the menu and the cmdline apps links -g, mocp, irssi, centerim" >> /home/vleon/PostInstall.txt
echo "6) test logout, reboot, shutdown and hibernate" >> /home/vleon/PostInstall.txt
echo "7) configure keytouch on the laptop" >> /home/vleon/PostInstall.txt
echo "8) if it doesnt exist mkdir ~/.Theme for both users and add a jpg picture named theme.jpg to be the wallpaper" >> /home/vleon/PostInstall.txt
echo "9) read /var/log/MySysInstall.log and make sure all was succesfull especialy AUR install's like icecat or iceweasel" >> /home/vleon/PostInstall.txt
echo "10) run lxappearance, configure lxpanel, configure terminal" >> /home/vleon/PostInstall.txt
echo "11) run powertop after you restart again with all the modules and daemons and other stuff configured" >> /home/vleon/PostInstall.txt
#Return ownership to the approtiate users
chown -R vleon:users /home/vleon ; chown -R masha:users /home/masha
chmod /home/vleon 750 ; chmod /home/masha 750
chmod /home/vleon/.config 750 ; chmod /home/masha/config 750
chmod /home/vleon/.config/openbox 750 ; chmod /home/vleon/.config/openbox 750
#End
echo "Install Finished, please additional instructions where created in /home/vleon/PostInstall.txt"
read n1
exit

luckystar09 - I'd say you're on your own there. This thread is nearly a year old, and Black Mage hasn't posted here since. Read the script, and modify it yourself as required.
Forum rule - do not post in threads that have been inactive for six months of more. See here for full details.
Closed.

Similar Messages

  • Question on CAPolicy.inf file and post-installation script

    I'm preparing a small PKI implementation with a single Enterprise Root CA on Windows 2008 R2 Enterprise.
    The primary role of this CA is to provide certificates for about 20 laptops that will use the certificates for authentication to a wireless network.
    I have prepared a CAPolicy.inf file and a post installation script (below).
    Renewal period for the root cert should be 10 years, CRL publication every 2 days with Delta publication every 12 hours (details in scripts below).
    I want to make sure the AIA and CRL url commands are correct.
    Does this look correct?
    AIA
    1:%WINDIR%\System32\CertSrv\CertEnroll\%%1_%%3%%4.crt
    This should publish the CA certificate to the local file system "certenroll".
    2:ldap:///CN=%%7,CN=AIA,CN=Public Key Services,CN=Services,%%6%%11
    This places the LDAP url in the AIA extension of issued certs.
    I am not planning to use HTTP, hence its absence.
    CRL
    1:%WINDIR%\System32\CertSrv\CertEnroll\%%3%%8%%9.crl
    This publishes the CRL to the local file system ("certenroll" subfolder).
    10:ldap:///CN=%%7%%8,CN=%%2,CN=CDP,CN=Public Key Services,CN=Services,%%6%%10
    Indicates CDP in AD DS and includes CDP url in issued certificates.
    Complete scripts
    1. CAPolicy.inf - %windir%
    [Version]
    Signature= "$Windows NT$"
    [certsrv_server]
    renewalkeylength=2048
    RenewalValidityPeriodUnits=10
    RenewalValidityPeriod=years
    CRLPeriod = days
    CRLPeriodUnits = 2
    CRLDeltaPeriod = hours
    CRLDeltaPeriodUnits = 12
    LoadDefaultTemplates=0
    2. Install Role
    Follow steps in GUI here
    3. Run post-install script
    certutil -setreg CA\DSConfigDN CN=Configuration,DC=mydomain,DC=local
    certutil -setreg CA\CRLPeriodUnits 2
    certutil -setreg CA\CRLPeriod "days"
    certutil -setreg CA\CRLDeltaPeriodUnits 12
    certutil -setreg CA\CRLDeltaPeriod "hours"
    certutil -setreg CA\ValidityPeriodUnits 10
    certutil -setreg CA\ValidityPeriod "Years"
    certutil –setreg CA\CACertPublicationURLs "1:%WINDIR%\System32\CertSrv\CertEnroll\%%1_%%3%%4.crt\n2:ldap:///CN=%%7,CN=AIA,CN=Public Key Services,CN=Services,%%6%%11"
    certutil –setreg CA\CRLPublicationURLs "1:%WINDIR%\System32\CertSrv\CertEnroll\%%3%%8%%9.crl\n10:ldap:///CN=%%7%%8,CN=%%2,CN=CDP,CN=Public Key Services,CN=Services,%%6%%10"
    certutil -setreg CA\csp\DiscreteSignatureAlgorithm 1
    certutil -setreg CA\AuditFilter 127
    net stop certsvc & net start certsvc
    certutil -crl
    Please mark as helpful if you find my contribution useful or as an answer if it does answer your question. That will encourage me - and others - to take time out to help you.

    A couple of things (just a quick glance)
    1) CAPolicy.inf
    Everything looks fine in this file. You will have a 2 day base crl and 12 hour delta CRLs. No default templates are loaded, so you must manually designate all published certificates
    2) Post install Script
    a. Best practices are to use HTTP only, not to use LDAP, so your whole design does not follow best practices. Furthermore, if you issue a certificate to a single, non-domain joined machine, they will be unable to evaluate your certificates. If you decide
    to do VPN (or use an internal SSL cert on an externally accessible Web server), revocation checking will fail because you do not publish AD to the external world
    b. Will you be issuing 10 year certificates from the CA. These lines:
    certutil -setreg CA\ValidityPeriodUnits 10
    certutil -setreg CA\ValidityPeriod "Years"
    define the maximum validity period of certs issued *by* the CA. For example, if a certificate template states 4 years, then a four year will be issued (less than 10 years). If a template state 12 years, then the max age will be 10 years. Think of it as a
    governor.
    c.CACertPublicationURLs . This should include an HTTP URL, and if you want to still include LDAP, HTTP should be prior to the LDAP URL.
    d. CRLPublicationURLs. This should include an HTTP URL. If you want to still include LDAP, HTTP should be prior to the LDAP URL. Your checkbox value for the LDAP URL is incorrect as well. For a CA that issues both base and delta CRLs, you must have a value
    of 79 (all check boxes enabled). Your current configuration would fail for revocation checking because you do not publish the base or delta CRL to AD. There is another check box missing (I believe the one to include the URL in the base CRL's freshest CRL extension
    (how to find the delta CRL).
    e. Do not include the DiscreteSignatureAlgorithm line in the script. If you have any Windows XP clients, they will not be able to use the certs (BTW, this should have been AlternateSignatureAlgorithm in my book - where you sourced your scripts). This would
    only be used on a CA where you used something like Elliptical Curve as the assymetric algorithm and SHA384 as the signature algorithm).
    f. The restart line should be net stop certsvc && net start certsvc. The double && ensures that the service comes to a complete stop before the start command is executed.
    HTH,
    Brian

  • 11.5.10.2 Post Installation Checks: DBC ,JSP checks failed (Resolved)

    Hi,
    I am trying to install 11.5.10.2 OEL 5 installation on VMware. Its failing in the post installation checks: the DBC check and JSP checks are failing. Looking at the errors, it says that .dbc file is not generated. And because of which the JSP is also failing. I am able to access the portal http://vega.apps11i:8005 , but not anything after that.
    So, I tried to generate the dbc file by running the adgendbc.sh file.. but its failing as below:
    ==============================================
    adgendbc.sh started at Sun July 13 07:19:17 PDT 2008
    touch: error while loading shared libraries: librt.so.1: cannot open shared object file: No such file or directory
    sqlplus: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
    mkdir: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    grep: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    sed: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    Params=
    Unique constraint error (00001) is OK if key already exists
    /u01/sam/applvck/vckcomn/util/java/1.4/j2sdk1.4.2_04/bin/java: error while loading shared libraries: libpthread.so.0: cannot open shared object file: No such file or directory
    ADD call failed with exit code 127
    Trying to update information ...
    cp: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    /u01/sam/applvck/vckcomn/util/java/1.4/j2sdk1.4.2_04/bin/java: error while loading shared libraries: libpthread.so.0: cannot open shared object file: No such file or directory
    UPDATE call failed with exit code 127
    Generating /u01/sam/applvck/vckappl/fnd/11.5.0/secure/vega.apps11i_vck.dbc
    cp: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    /u01/sam/applvck/vckcomn/util/java/1.4/j2sdk1.4.2_04/bin/java: error while loading shared libraries: libpthread.so.0: cannot open shared object file: No such file or directory
    DBC generation failed with exit code 127
    Generating /u01/sam/applvck/vckappl/fnd/11.5.0/secure/vega_vck.dbc
    cp: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    /u01/sam/applvck/vckcomn/util/java/1.4/j2sdk1.4.2_04/bin/java: error while loading shared libraries: libpthread.so.0: cannot open shared object file: No such file or directory
    DBC generation failed with exit code 127
    Updating Server Security Authentication
    /u01/sam/applvck/vckcomn/util/java/1.4/j2sdk1.4.2_04/bin/java: error while loading shared libraries: libpthread.so.0: cannot open shared object file: No such file or directory
    Updating Server Security Authentication failed with exit code 127
    adgendbc.sh exiting with status 127
    ERRORCODE = 127 ERRORCODE_END
    ==================================================
    So I checked if the librt.so.1, libdl.so.2 and libc.so.6 exist or not. But I see that those exist also. Unable to understand how to fix this. Please help.
    Thanks
    Vikram
    [root@vega ~]# locate librt.so.1
    /lib/librt.so.1
    /lib/i686/nosegneg/librt.so.1
    /lib/rtkaio/librt.so.1
    /lib/rtkaio/i686/nosegneg/librt.so.1
    /u01/sam/applvck/vckora/8.0.6/lib/stubs/librt.so.1
    /u01/sam/applvck/vckora/iAS/lib/stubs/librt.so.1
    /u01/sam/oravck/vckdb/9.2.0/lib/stubs/librt.so.1
    [root@vega ~]# locate libdl.so.6
    [root@vega ~]# locate libdl.so.2
    /lib/libdl.so.2
    /u01/sam/applvck/vckora/8.0.6/lib/stubs/libdl.so.2
    /u01/sam/applvck/vckora/iAS/lib/stubs/libdl.so.2
    /u01/sam/oravck/vckdb/9.2.0/lib/stubs/libdl.so.2
    [root@vega ~]# locate libc.so.6
    /lib/libc.so.6
    /lib/i686/nosegneg/libc.so.6
    /u01/sam/applvck/vckora/8.0.6/lib/stubs/libc.so.6
    /u01/sam/applvck/vckora/iAS/lib/stubs/libc.so.6
    /u01/sam/oravck/vckdb/9.2.0/lib/stubs/libc.so.6
    Message was edited by: Vikram C

    I posted the installation log here. Apologize if its too long.
    Succesfully changed Permissions for /u01/sam/applvck/vckappl/admin/VCK_vega/log
    Processing DriverFile = /u05/start11i/startCD/Disk1/rapidwiz/template/adriapps.drv
    Running Instantiation Drivers for /u05/start11i/startCD/Disk1/rapidwiz/template/adriapps.drv
    instantiate file:
    source : /u05/start11i/startCD/Disk1/rapidwiz/template/adrunias.sh
    dest : /u01/sam/applvck/vckcomn/temp/adrunias.sh
    backup : /u01/sam/applvck/vckcomn/temp/adrunias.sh to /u01/sam/applvck/vckappl/admin/VCK_vega/out/templbac/adrunias0.sh
    setting permissions: 755
    setting ownership: applvck:dba
    instantiate file:
    source : /u05/start11i/startCD/Disk1/rapidwiz/template/adrunat.sh
    dest : /u01/sam/applvck/vckcomn/temp/adrunat.sh
    backup : /u01/sam/applvck/vckcomn/temp/adrunat.sh to /u01/sam/applvck/vckappl/admin/VCK_vega/out/templbac/adrunat0.sh
    setting permissions: 755
    setting ownership: applvck:dba
    Step 0 of 5
    Command: /u01/sam/applvck/vckcomn/temp/adrunias.sh
    Step 3 of 5: Doing UNIX preprocessing
    Executing: chmod -R 777 /etc/oraInventory
    chmod -R 777 /etc/oraInventory has succeeded
    Processing Step 3 of 5
    Step 1 of 5
    Command: /u01/sam/applvck/vckcomn/temp/adrunat.sh
    Step 4 of 5: Doing UNIX preprocessing
    Executing: chmod -R 777 /etc/oraInventory
    chmod -R 777 /etc/oraInventory has succeeded
    Processing Step 4 of 5
    Starting CVM on Middle Tier.....
         Using Context file : /u01/sam/applvck/vckappl/admin/VCK_vega.xml
    Attempting to create a back up of the Context file
    Created back up file of name :
    /u01/sam/applvck/vckappl/admin/VCK_vega/out/07130653/VCK_vega.xml
    ===========================================================================
    Starting synchronization of file system Context file and its templates with those in the database
    Database connection : Established
    ADX Database Utility
    getConnection() -->
    sDbHost : vega
    sDbDomain : apps11i
    sDbPort : 1526
    sDbSid : VCK
    sDbUser : APPS
    Trying to connect using SID...
    getConnectionUsingSID() -->
    JDBC URL: jdbc:oracle:thin:@vega.apps11i:1526:VCK
    Connection obtained
    Result : Successfully uploaded the Context information template file to the DataBase
    ===========================================================================
    Completed CVM on Middle Tier....
    Succesfully changed Permissions for /u01/sam/applvck/vckcomn/temp
    Setting service Oracle Apache Server VCK_vega to mode 3
    Executing service control script:
    /u01/sam/applvck/vckcomn/admin/scripts/VCK_vega/adapcctl.sh stop
    Timeout specified in context file: 100 second(s)
    script returned:
    adapcctl.sh version 115.43
    Apache Web Server Listener is not running (dedicated HTTP) ...
    Apache Web Server Listener is already stopped.
    adapcctl.sh: exiting with status 2
    .end std out.
    cat: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    sh: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
    sh: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
    sh: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
    sh: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
    .end err out.
    Setting service OracleTNSListener80APPS_VCK_vega to mode 3
    Executing service control script:
    /u01/sam/applvck/vckcomn/admin/scripts/VCK_vega/adalnctl.sh stop
    Timeout specified in context file: 100 second(s)
    script returned:
    adalnctl.sh version
    Shutting down listener process APPS_VCK.
    adalnctl.sh: exiting with status 0
    .end std out.
    .end err out.
    Setting service OracleConcMgrVCK_vega to mode 3
    Executing service control script:
    /u01/sam/applvck/vckcomn/admin/scripts/VCK_vega/adcmctl.sh stop
    Timeout specified in context file: 1000 second(s)
    script returned:
    You are running adcmctl.sh version 115.20
    Shutting down concurrent managers for VCK ...
    adcmctl.sh: exiting with status 127
    .end std out.
    /u01/sam/applvck/vckappl/fnd/11.5.0/bin/CONCSUB: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
    .end err out.
    Setting service OracleFormsServer-Forms60VCK_vega to mode 3
    Executing service control script:
    /u01/sam/applvck/vckcomn/admin/scripts/VCK_vega/adfrmctl.sh stop
    Timeout specified in context file: 100 second(s)
    script returned:
    You are running adfrmctl.sh version 115.34
    Unable to create logfile - permission denied
    Attempted to write to:
         /u01/sam/applvck/vckcomn/admin/log/VCK_vega/f60svrm.txt
    adfrmctl.sh: exiting with status 1
    .end std out.
    dirname: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    touch: error while loading shared libraries: librt.so.1: cannot open shared object file: No such file or directory
    .end err out.
    Setting service OracleReportServer-Rep60_VCK to mode 3
    Executing service control script:
    /u01/sam/applvck/vckcomn/admin/scripts/VCK_vega/adrepctl.sh stop
    Timeout specified in context file: 100 second(s)
    script returned:
    You are running adrepctl.sh version 115.29
    Reports Server for VCK is already stopped.
    adrepctl.sh: exiting with status 2
    .end std out.
    sed: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    grep: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    awk: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
    grep: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    ps: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
    /u01/sam/applvck/vckappl/fnd/11.5.0/bin/FNDSVCRG: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
    .end err out.
    Setting service Oracle Metrics Client VCK_vega to mode 3
    Executing service control script:
    /u01/sam/applvck/vckcomn/admin/scripts/VCK_vega/adfmcctl.sh stop
    Timeout specified in context file: 100 second(s)
    script returned:
    You are running adfmcctl.sh version 115.17
    forms load balancing client for VCK already stopped.
    adfmcctl.sh: exiting with status 2
    .end std out.
    .end err out.
    Setting service Oracle Metrics Server VCK_vega to mode 3
    Executing service control script:
    /u01/sam/applvck/vckcomn/admin/scripts/VCK_vega/adfmsctl.sh stop
    Timeout specified in context file: 100 second(s)
    script returned:
    You are running adfmsctl.sh version 115.13
    forms metrics server for VCK on port 9205 already stopped.
    adfmsctl.sh: exiting with status 2
    .end std out.
    .end err out.
    Setting service Oracle Fulfillment Server VCK_vega to mode 3
    Executing service control script:
    /u01/sam/applvck/vckcomn/admin/scripts/VCK_vega/jtffmctl.sh stop
    Timeout specified in context file: 100 second(s)
    script returned:
    You are running jtffmctl.sh version 115.16
    Shutting down Fulfillment Server for on port 9305 ...
    jtffmctl.sh: exiting with status 0
    .end std out.
    touch: error while loading shared libraries: librt.so.1: cannot open shared object file: No such file or directory
    .end err out.
    Setting service Oracle Discoverer services VCK_vega to mode 3
    Executing service control script:
    /u01/sam/applvck/vckcomn/admin/scripts/VCK_vega/addisctl.sh stop
    Timeout specified in context file: 300 second(s)
    script returned:
    addisctl.sh version 115.14
    OAD is not running
    Osagent is not running
    Unable to stop locator. No process-id file found.
    Unable to stop gatekeeper. No process-id file found.
    Unable to stop any Discoverer Sessions. No process-id file found.
    Unable to stop any Discoverer Preference. No process-id file found.
    Unable to stop any Discoverer Collector. No process-id file found.
    addisctl.sh: exiting with status 0
    Executing script in InstantiateFile:
    /u01/sam/applvck/vckcomn/admin/install/VCK_vega/admkxdir.sh
    script returned:
    Executing script in InstantiateFile:
    /u01/sam/applvck/vckcomn/admin/install/VCK_vega/adgendbc.sh
    script returned:
    adgendbc.sh started at Sun Jul 13 06:58:55 PDT 2008
    Params=
    Unique constraint error (00001) is OK if key already exists
    ADD call failed with exit code 127
    Trying to update information ...
    UPDATE call failed with exit code 127
    Generating /u01/sam/applvck/vckappl/fnd/11.5.0/secure/vega.apps11i_vck.dbc
    DBC generation failed with exit code 127
    Generating /u01/sam/applvck/vckappl/fnd/11.5.0/secure/vega_vck.dbc
    DBC generation failed with exit code 127
    Updating Server Security Authentication
    Updating Server Security Authentication failed with exit code 127
    adgendbc.sh exiting with status 127
    ERRORCODE = 127 ERRORCODE_END
    .end std out.
    touch: error while loading shared libraries: librt.so.1: cannot open shared object file: No such file or directory
    sqlplus: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
    mkdir: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    grep: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    sed: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    /u01/sam/applvck/vckcomn/util/java/1.4/j2sdk1.4.2_04/bin/java: error while loading shared libraries: libpthread.so.0: cannot open shared object file: No such file or directory
    cp: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    /u01/sam/applvck/vckcomn/util/java/1.4/j2sdk1.4.2_04/bin/java: error while loading shared libraries: libpthread.so.0: cannot open shared object file: No such file or directory
    cp: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    /u01/sam/applvck/vckcomn/util/java/1.4/j2sdk1.4.2_04/bin/java: error while loading shared libraries: libpthread.so.0: cannot open shared object file: No such file or directory
    cp: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    /u01/sam/applvck/vckcomn/util/java/1.4/j2sdk1.4.2_04/bin/java: error while loading shared libraries: libpthread.so.0: cannot open shared object file: No such file or directory
    /u01/sam/applvck/vckcomn/util/java/1.4/j2sdk1.4.2_04/bin/java: error while loading shared libraries: libpthread.so.0: cannot open shared object file: No such file or directory
    .end err out.
    Executing script in InstantiateFile:
    /u01/sam/applvck/vckcomn/admin/install/VCK_vega/adgenjky.sh
    script returned:
    adgenjky.sh started at Sun Jul 13 06:58:58 PDT 2008
    Unable to create the log file /u01/sam/applvck/vckcomn/admin/log/VCK_vega/VCK_vegajkey.log
    ERRORCODE = 127 ERRORCODE_END
    .end std out.
    touch: error while loading shared libraries: librt.so.1: cannot open shared object file: No such file or directory
    .end err out.
    script returned:
    amscmprf.sh started at Sun Jul 13 07:01:34 PDT 2008
    The environment settings are as follows ...
    ORACLE_HOME : /u01/sam/applvck/vckora/8.0.6
    ORACLE_SID :
    TWO_TASK : VCK
    PATH : /u01/sam/applvck/vckora/iAS/Apache/perl/bin:/u01/sam/applvck/vckora/8.0.6/bin:/u01/sam/applvck/vckappl/fnd/11.5.0/bin:/u01/sam/applvck/vckappl/ad/11.5.0/bin:/u01/sam/applvck/vckcomn/util/java/1.4/j2sdk1.4.2_04/bin:/u01/sam/applvck/vckcomn/util/unzip/unzip/unzip-5.50::/u01/sam/applvck/vckora/8.0.6/bin:/usr/bin:/usr/ccs/bin:/usr/sbin:/usr/bin:/u05/start11i/startCD/Disk1/rapidwiz/unzip/Linux:/usr/bin:/usr/local/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/root/bin
    LD_LIBRARY_PATH : /u01/sam/applvck/vckora/8.0.6/network/jre11/lib/i686/native_threads:/u01/sam/applvck/vckora/8.0.6/network/jre11/lib/linux/native_threads:/u01/sam/applvck/vckappl/cz/11.5.0/bin:/u01/sam/applvck/vckora/8.0.6/lib:/usr/X11R6/lib:/usr/openwin/lib
    Executable :
    ERRORCODE = 127 ERRORCODE_END
    .end std out.
    which: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    sqlplus: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
    .end err out.
    Executing script in InstantiateFile:
    /u01/sam/applvck/vckcomn/admin/install/VCK_vega/amswebprf.sh
    script returned:
    amswebprf.sh started at Sun Jul 13 07:01:37 PDT 2008
    The environment settings are as follows ...
    ORACLE_HOME : /u01/sam/applvck/vckora/8.0.6
    ORACLE_SID :
    TWO_TASK : VCK
    PATH : /u01/sam/applvck/vckora/iAS/Apache/perl/bin:/u01/sam/applvck/vckora/8.0.6/bin:/u01/sam/applvck/vckappl/fnd/11.5.0/bin:/u01/sam/applvck/vckappl/ad/11.5.0/bin:/u01/sam/applvck/vckcomn/util/java/1.4/j2sdk1.4.2_04/bin:/u01/sam/applvck/vckcomn/util/unzip/unzip/unzip-5.50::/u01/sam/applvck/vckora/8.0.6/bin:/usr/bin:/usr/ccs/bin:/usr/sbin:/usr/bin:/u05/start11i/startCD/Disk1/rapidwiz/unzip/Linux:/usr/bin:/usr/local/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/root/bin
    LD_LIBRARY_PATH : /u01/sam/applvck/vckora/8.0.6/network/jre11/lib/i686/native_threads:/u01/sam/applvck/vckora/8.0.6/network/jre11/lib/linux/native_threads:/u01/sam/applvck/vckappl/cz/11.5.0/bin:/u01/sam/applvck/vckora/8.0.6/lib:/usr/X11R6/lib:/usr/openwin/lib
    Executable :
    ERRORCODE = 127 ERRORCODE_END
    .end std out.
    which: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    sqlplus: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
    .end err out.
    Executing script in InstantiateFile:
    /u01/sam/applvck/vckcomn/admin/install/VCK_vega/wshadmprf.sh
    script returned:
    wshadmprf.sh started at Sun Jul 13 07:01:47 PDT 2008
    The environment settings are as follows ...
    ORACLE_HOME : /u01/sam/applvck/vckora/8.0.6
    ORACLE_SID :
    TWO_TASK : VCK
    PATH : /u01/sam/applvck/vckora/iAS/Apache/perl/bin:/u01/sam/applvck/vckora/8.0.6/bin:/u01/sam/applvck/vckappl/fnd/11.5.0/bin:/u01/sam/applvck/vckappl/ad/11.5.0/bin:/u01/sam/applvck/vckcomn/util/java/1.4/j2sdk1.4.2_04/bin:/u01/sam/applvck/vckcomn/util/unzip/unzip/unzip-5.50::/u01/sam/applvck/vckora/8.0.6/bin:/usr/bin:/usr/ccs/bin:/usr/sbin:/usr/bin:/u05/start11i/startCD/Disk1/rapidwiz/unzip/Linux:/usr/bin:/usr/local/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/root/bin
    LD_LIBRARY_PATH : /u01/sam/applvck/vckora/8.0.6/network/jre11/lib/i686/native_threads:/u01/sam/applvck/vckora/8.0.6/network/jre11/lib/linux/native_threads:/u01/sam/applvck/vckappl/cz/11.5.0/bin:/u01/sam/applvck/vckora/8.0.6/lib:/usr/X11R6/lib:/usr/openwin/lib
    Executable :
    wshadmprf.sh exiting with status 127
    ERRORCODE = 127 ERRORCODE_END
    .end std out.
    which: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    sqlplus: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
    .end err out.
    Executing script in InstantiateFile:
    /u01/sam/applvck/vckcomn/admin/install/VCK_vega/clnadmprf.sh
    script returned:
    clnadmprf.sh started at Sun Jul 13 07:01:54 PDT 2008
    The environment settings are as follows ...
    ORACLE_HOME : /u01/sam/applvck/vckora/8.0.6
    ORACLE_SID :
    TWO_TASK : VCK
    PATH : /u01/sam/applvck/vckora/iAS/Apache/perl/bin:/u01/sam/applvck/vckora/8.0.6/bin:/u01/sam/applvck/vckappl/fnd/11.5.0/bin:/u01/sam/applvck/vckappl/ad/11.5.0/bin:/u01/sam/applvck/vckcomn/util/java/1.4/j2sdk1.4.2_04/bin:/u01/sam/applvck/vckcomn/util/unzip/unzip/unzip-5.50::/u01/sam/applvck/vckora/8.0.6/bin:/usr/bin:/usr/ccs/bin:/usr/sbin:/usr/bin:/u05/start11i/startCD/Disk1/rapidwiz/unzip/Linux:/usr/bin:/usr/local/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/root/bin
    LD_LIBRARY_PATH : /u01/sam/applvck/vckora/8.0.6/network/jre11/lib/i686/native_threads:/u01/sam/applvck/vckora/8.0.6/network/jre11/lib/linux/native_threads:/u01/sam/applvck/vckappl/cz/11.5.0/bin:/u01/sam/applvck/vckora/8.0.6/lib:/usr/X11R6/lib:/usr/openwin/lib
    Executable :
    clnadmprf.sh exiting with status 127
    ERRORCODE = 127 ERRORCODE_END
    .end std out.
    which: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    sqlplus: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
    .end err out.
    setting ownership: applvck:dba
    Executing script in InstantiateFile:
    /u01/sam/applvck/vckcomn/admin/install/VCK_vega/okeadmprf.sh
    script returned:
    okeadmprf.sh started at Sun Jul 13 07:02:00 PDT 2008
    The environment settings are as follows ...
    ORACLE_HOME : /u01/sam/applvck/vckora/8.0.6
    ORACLE_SID :
    TWO_TASK : VCK
    PATH : /u01/sam/applvck/vckora/iAS/Apache/perl/bin:/u01/sam/applvck/vckora/8.0.6/bin:/u01/sam/applvck/vckappl/fnd/11.5.0/bin:/u01/sam/applvck/vckappl/ad/11.5.0/bin:/u01/sam/applvck/vckcomn/util/java/1.4/j2sdk1.4.2_04/bin:/u01/sam/applvck/vckcomn/util/unzip/unzip/unzip-5.50::/u01/sam/applvck/vckora/8.0.6/bin:/usr/bin:/usr/ccs/bin:/usr/sbin:/usr/bin:/u05/start11i/startCD/Disk1/rapidwiz/unzip/Linux:/usr/bin:/usr/local/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/root/bin
    LD_LIBRARY_PATH : /u01/sam/applvck/vckora/8.0.6/network/jre11/lib/i686/native_threads:/u01/sam/applvck/vckora/8.0.6/network/jre11/lib/linux/native_threads:/u01/sam/applvck/vckappl/cz/11.5.0/bin:/u01/sam/applvck/vckora/8.0.6/lib:/usr/X11R6/lib:/usr/openwin/lib
    Executable :
    okeadmprf.sh exiting with status 127
    ERRORCODE = 127 ERRORCODE_END
    .end std out.
    which: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    sqlplus: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
    .end err out.
    Executing script in InstantiateFile:
    /u01/sam/applvck/vckcomn/admin/install/VCK_vega/okladmprf.sh
    script returned:
    okladmprf.sh started at Sun Jul 13 07:02:07 PDT 2008
    The environment settings are as follows ...
    ORACLE_HOME : /u01/sam/applvck/vckora/8.0.6
    ORACLE_SID :
    TWO_TASK : VCK
    PATH : /u01/sam/applvck/vckora/iAS/Apache/perl/bin:/u01/sam/applvck/vckora/8.0.6/bin:/u01/sam/applvck/vckappl/fnd/11.5.0/bin:/u01/sam/applvck/vckappl/ad/11.5.0/bin:/u01/sam/applvck/vckcomn/util/java/1.4/j2sdk1.4.2_04/bin:/u01/sam/applvck/vckcomn/util/unzip/unzip/unzip-5.50::/u01/sam/applvck/vckora/8.0.6/bin:/usr/bin:/usr/ccs/bin:/usr/sbin:/usr/bin:/u05/start11i/startCD/Disk1/rapidwiz/unzip/Linux:/usr/bin:/usr/local/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/root/bin
    LD_LIBRARY_PATH : /u01/sam/applvck/vckora/8.0.6/network/jre11/lib/i686/native_threads:/u01/sam/applvck/vckora/8.0.6/network/jre11/lib/linux/native_threads:/u01/sam/applvck/vckappl/cz/11.5.0/bin:/u01/sam/applvck/vckora/8.0.6/lib:/usr/X11R6/lib:/usr/openwin/lib
    Executable :
    ERRORCODE = 127 ERRORCODE_END
    .end std out.
    which: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    sqlplus: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
    .end err out.
    Executing script in InstantiateFile:
    /u01/sam/applvck/vckcomn/admin/install/VCK_vega/csfagprf.sh
    script returned:
    csfagprf.sh started at Sun Jul 13 07:02:21 PDT 2008
    The environment settings are as follows ...
    ORACLE_HOME : /u01/sam/applvck/vckora/8.0.6
    ORACLE_SID :
    TWO_TASK : VCK
    PATH : /u01/sam/applvck/vckora/iAS/Apache/perl/bin:/u01/sam/applvck/vckora/8.0.6/bin:/u01/sam/applvck/vckappl/fnd/11.5.0/bin:/u01/sam/applvck/vckappl/ad/11.5.0/bin:/u01/sam/applvck/vckcomn/util/java/1.4/j2sdk1.4.2_04/bin:/u01/sam/applvck/vckcomn/util/unzip/unzip/unzip-5.50::/u01/sam/applvck/vckora/8.0.6/bin:/usr/bin:/usr/ccs/bin:/usr/sbin:/usr/bin:/u05/start11i/startCD/Disk1/rapidwiz/unzip/Linux:/usr/bin:/usr/local/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/root/bin
    LD_LIBRARY_PATH : /u01/sam/applvck/vckora/8.0.6/network/jre11/lib/i686/native_threads:/u01/sam/applvck/vckora/8.0.6/network/jre11/lib/linux/native_threads:/u01/sam/applvck/vckappl/cz/11.5.0/bin:/u01/sam/applvck/vckora/8.0.6/lib:/usr/X11R6/lib:/usr/openwin/lib
    Executable :
    csfagprf.sh exiting with status 127
    ERRORCODE = 127 ERRORCODE_END
    .end std out.
    which: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    sqlplus: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
    .end err out.
    Executing script in InstantiateFile:
    /u01/sam/applvck/vckcomn/admin/install/VCK_vega/csfwebprf.sh
    script returned:
    csfwebprf.sh started at Sun Jul 13 07:02:23 PDT 2008
    The environment settings are as follows ...
    ORACLE_HOME : /u01/sam/applvck/vckora/8.0.6
    ORACLE_SID :
    TWO_TASK : VCK
    PATH : /u01/sam/applvck/vckora/iAS/Apache/perl/bin:/u01/sam/applvck/vckora/8.0.6/bin:/u01/sam/applvck/vckappl/fnd/11.5.0/bin:/u01/sam/applvck/vckappl/ad/11.5.0/bin:/u01/sam/applvck/vckcomn/util/java/1.4/j2sdk1.4.2_04/bin:/u01/sam/applvck/vckcomn/util/unzip/unzip/unzip-5.50::/u01/sam/applvck/vckora/8.0.6/bin:/usr/bin:/usr/ccs/bin:/usr/sbin:/usr/bin:/u05/start11i/startCD/Disk1/rapidwiz/unzip/Linux:/usr/bin:/usr/local/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/root/bin
    LD_LIBRARY_PATH : /u01/sam/applvck/vckora/8.0.6/network/jre11/lib/i686/native_threads:/u01/sam/applvck/vckora/8.0.6/network/jre11/lib/linux/native_threads:/u01/sam/applvck/vckappl/cz/11.5.0/bin:/u01/sam/applvck/vckora/8.0.6/lib:/usr/X11R6/lib:/usr/openwin/lib
    Executable :
    csfwebprf.sh exiting with status 127
    ERRORCODE = 127 ERRORCODE_END
    .end std out.
    which: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    sqlplus: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
    .end err out.
    setting ownership: applvck:dba
    Executing script in InstantiateFile:
    /u01/sam/applvck/vckcomn/admin/install/VCK_vega/xnccmprf.sh
    script returned:
    xnccmprf.sh started at Sun Jul 13 07:02:29 PDT 2008
    The environment settings are as follows ...
    ORACLE_HOME : /u01/sam/applvck/vckora/8.0.6
    ORACLE_SID :
    TWO_TASK : VCK
    PATH : /u01/sam/applvck/vckora/iAS/Apache/perl/bin:/u01/sam/applvck/vckora/8.0.6/bin:/u01/sam/applvck/vckappl/fnd/11.5.0/bin:/u01/sam/applvck/vckappl/ad/11.5.0/bin:/u01/sam/applvck/vckcomn/util/java/1.4/j2sdk1.4.2_04/bin:/u01/sam/applvck/vckcomn/util/unzip/unzip/unzip-5.50::/u01/sam/applvck/vckora/8.0.6/bin:/usr/bin:/usr/ccs/bin:/usr/sbin:/usr/bin:/u05/start11i/startCD/Disk1/rapidwiz/unzip/Linux:/usr/bin:/usr/local/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/root/bin
    LD_LIBRARY_PATH : /u01/sam/applvck/vckora/8.0.6/network/jre11/lib/i686/native_threads:/u01/sam/applvck/vckora/8.0.6/network/jre11/lib/linux/native_threads:/u01/sam/applvck/vckappl/cz/11.5.0/bin:/u01/sam/applvck/vckora/8.0.6/lib:/usr/X11R6/lib:/usr/openwin/lib
    Executable :
    ERRORCODE = 127 ERRORCODE_END
    .end std out.
    which: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    sqlplus: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
    .end err out.
    setting ownership: applvck:dba
    Executing script in InstantiateFile:
    /u01/sam/applvck/vckcomn/admin/install/VCK_vega/ibywebprf.sh
    script returned:
    ibywebprf.sh started at Sun Jul 13 07:02:37 PDT 2008
    The environment settings are as follows ...
    ORACLE_HOME : /u01/sam/applvck/vckora/8.0.6
    ORACLE_SID :
    TWO_TASK : VCK
    PATH : /u01/sam/applvck/vckora/iAS/Apache/perl/bin:/u01/sam/applvck/vckora/8.0.6/bin:/u01/sam/applvck/vckappl/fnd/11.5.0/bin:/u01/sam/applvck/vckappl/ad/11.5.0/bin:/u01/sam/applvck/vckcomn/util/java/1.4/j2sdk1.4.2_04/bin:/u01/sam/applvck/vckcomn/util/unzip/unzip/unzip-5.50::/u01/sam/applvck/vckora/8.0.6/bin:/usr/bin:/usr/ccs/bin:/usr/sbin:/usr/bin:/u05/start11i/startCD/Disk1/rapidwiz/unzip/Linux:/usr/bin:/usr/local/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/root/bin
    LD_LIBRARY_PATH : /u01/sam/applvck/vckora/8.0.6/network/jre11/lib/i686/native_threads:/u01/sam/applvck/vckora/8.0.6/network/jre11/lib/linux/native_threads:/u01/sam/applvck/vckappl/cz/11.5.0/bin:/u01/sam/applvck/vckora/8.0.6/lib:/usr/X11R6/lib:/usr/openwin/lib
    Executable :
    ERRORCODE = 127 ERRORCODE_END
    .end std out.
    which: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    sqlplus: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
    .end err out.
    Executing script in InstantiateFile:
    /u01/sam/applvck/vckcomn/admin/install/VCK_vega/paadmprf.sh
    script returned:
    paadmprf.sh started at Sun Jul 13 07:02:43 PDT 2008
    Executable :
    ERRORCODE = 127 ERRORCODE_END
    Message was edited by: Vikram C

  • 11.5.10.2 Post Installation Check Failures in Linux

    Hi All,
    I had installed 11i (11.5.10.2) in an external drive (made as a Linux OS through VM Ware) and was trying to access through my laptop (having OS XP Professional)
    The Installation of 11i in Linux (RHEL 4) went fine, except during the post installation checks I got the following errors:
    1. JSP Check failed
    and
    2. Environment File Check failed
    ============================================
    For the JSP Check:
    a. I ensured the dbc file in $FND_SECURE top is fine
    b. The jserv.log file shows as below:
    java.lang.NumberFormatException: For input string: "%s_servlet_init_timeout%"
    at java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)
    at java.lang.Long.parseLong(Long.java:394)
    at java.lang.Long.<init>(Long.java:630)
    at org.apache.java.util.Configurations.getLong(Configurations.java:678)
    at org.apache.java.util.Configurations.getLong(Configurations.java:657)
    at org.apache.jserv.JServServletManager.init(JServServletManager.java:320)
    at org.apache.jserv.JServ.start(JServ.java:622)
    c. The mod_jserv.log is as follows:
    [04/07/2008 15:42:21:813] (EMERGENCY) ajp12: function auth fail
    [04/07/2008 15:42:22:233] (EMERGENCY) ajp12: auth did not receive challenge size
    [04/07/2008 15:42:22:234] (EMERGENCY) ajp12: function auth fail
    [04/07/2008 15:42:29:394] (EMERGENCY) ajp12: auth did not receive challenge size
    [04/07/2008 15:42:29:395] (EMERGENCY) ajp12: function auth fail
    [04/07/2008 15:42:29:763] (EMERGENCY) ajp12: auth did not receive challenge size
    d. I had given the virtual host as vision.imax.info, where imax.info is a named server that is registered
    I am able to dig vision.imax.info, as shown below:
    [root@vision etc]# dig vision.imax.info
    ; <<>> DiG 9.2.4 <<>> vision.imax.info
    ;; global options: printcmd
    ;; Got answer:
    ;; ->>HEADER<<- opcode: QUERY, status: SERVFAIL, id: 3228
    ;; flags: qr rd; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0
    ;; QUESTION SECTION:
    ;vision.imax.info. IN A
    ;; Query time: 12 msec
    ;; SERVER: 192.168.222.5#53(192.168.222.5)
    ;; WHEN: Fri Jul 4 18:59:56 2008
    ;; MSG SIZE rcvd: 34
    but please note that my ifconfig gives the following output:
    [root@vision etc]# ifconfig
    eth0 Link encap:Ethernet HWaddr 00:0C:29:5E:C8:97
    inet6 addr: fe80::20c:29ff:fe5e:c897/64 Scope:Link
    UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
    RX packets:15421 errors:0 dropped:0 overruns:0 frame:0
    TX packets:11828 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:1464189 (1.3 MiB) TX bytes:2554712 (2.4 MiB)
    Interrupt:177 Base address:0x1080
    eth0:0 Link encap:Ethernet HWaddr 00:0C:29:5E:C8:97
    inet addr:192.168.222.5 Bcast:192.168.222.255 Mask:255.255.255.0
    UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
    Interrupt:177 Base address:0x1080
    lo Link encap:Local Loopback
    inet addr:127.0.0.1 Mask:255.0.0.0
    inet6 addr: ::1/128 Scope:Host
    UP LOOPBACK RUNNING MTU:16436 Metric:1
    RX packets:2058114 errors:0 dropped:0 overruns:0 frame:0
    TX packets:2058114 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:0
    RX bytes:297458110 (283.6 MiB) TX bytes:297458110 (283.6 MiB)
    and the linux OS having the static IP as follows:
    IP: 192.168.222.5
    Mask: 255.255.255.0
    Gateway: 192.168.222.5
    Primary DNS: 192.168.222.5
    ========================
    And for the Environment File check:
    The Error is:
    RW 10006: Error: - APPL_TOP environment files has uninstantiated variables
    File = /d01/oracle/visappl/VIS_vision.env
    But I am not able to locate which variable is not instantiated...
    Please help me to resolve this out... Please correct me if I am wrong any where..
    Many Thanks....

    Please note that, when I restarted the application services in a different terminal, I got the following script Error, only for the below mentioned script:
    Executing service control script:
    /d01/oracle/viscomn/admin/scripts/VIS_vision/addisctl.sh start
    script returned:
    addisctl.sh version 115.14
    /d01/oracle/visora/8.0.6/vbroker/bin/osagent
    Started osagent.
    Osagent logs messages to the file /d01/oracle/visora/8.0.6/discwb4/util/osagent.log.
    Waiting for OAD to start...
    Started OAD.
    OAD logs messages to the file /d01/oracle/visora/8.0.6/discwb4/util/oad.log.
    Failed to start locator.
    Cannot bind to OAD. Re-starting...
    OAD is stopped
    Osagent is stopped
    Unable to stop locator. No process-id file found.
    Unable to stop gatekeeper. No process-id file found.
    Unable to stop any Discoverer Sessions. No process-id file found.
    Unable to stop any Discoverer Preference. No process-id file found.
    Unable to stop any Discoverer Collector. No process-id file found.
    /d01/oracle/visora/8.0.6/vbroker/bin/osagent
    Started osagent.
    Osagent logs messages to the file /d01/oracle/visora/8.0.6/discwb4/util/osagent.log.
    Waiting for OAD to start...
    Started OAD.
    OAD logs messages to the file /d01/oracle/visora/8.0.6/discwb4/util/oad.log.
    Failed to start locator.
    Registering Discoverer Session
    Registering the Collector
    Applying preferences from file : /d01/oracle/visora/8.0.6/discwb4/util/pref.txt
    Finished applying preferences
    Closing down registry..
    Registry File sync...
    Registering Discoverer Preference Repository
    addisctl.sh: exiting with status 127
    .end std out.
    /d01/oracle/visora/8.0.6/vbroker/bin/vbj: %s_disco_jretop%/bin/jre: not found
    /d01/oracle/visora/8.0.6/vbroker/bin/vbj: %s_disco_jretop%/bin/jre: not found
    /d01/oracle/visora/8.0.6/vbroker/bin/vbj: %s_disco_jretop%/bin/jre: not found
    /d01/oracle/visora/8.0.6/vbroker/bin/vbj: %s_disco_jretop%/bin/jre: not found
    /d01/oracle/visora/8.0.6/vbroker/bin/vbj: %s_disco_jretop%/bin/jre: not found
    /d01/oracle/visora/8.0.6/vbroker/bin/vbj: %s_disco_jretop%/bin/jre: not found
    /d01/oracle/visora/8.0.6/vbroker/bin/vbj: %s_disco_jretop%/bin/jre: not found
    .end err out.
    Check logfile /d01/oracle/viscomn/admin/log/VIS_vision/07042249.log for details
    Exiting with status 1
    ====================
    The /d01/oracle/viscomn/admin/log/VIS_vision/07042249.log file shows the following too:
    [Service Control Execution Report]
    The report format is:
    <Service> <Script> <Status>
    Oracle Apache Server VIS_vision adapcctl.sh Started
    OracleTNSListener80APPS_VIS_vision adalnctl.sh Started
    OracleConcMgrVIS_vision adcmctl.sh Started
    OracleFormsServer-Forms60VIS_vision adfrmctl.sh Started
    OracleReportServer-Rep60_VIS adrepctl.sh Started
    Oracle Metrics Client VIS_vision adfmcctl.sh Started
    Oracle Metrics Server VIS_vision adfmsctl.sh Started
    Oracle Fulfillment Server VIS_vision jtffmctl.sh Started
    Oracle Discoverer services VIS_vision addisctl.sh Failed
    Oracle Restricted Apache Server VIS_vision adaprstctl.sh Disabled
    Oracle Apache Server VIS_vision for PL/SQL adapcctl.sh Disabled
    Oracle TCF SocketServer VIS_vision adtcfctl.sh Disabled
    Oracle ICSM VIS_vision ieoicsm.sh Disabled
    Oracle iProcurement Bulk Loader VIS_vision icxblkctl.sh Disabled
    ServiceControl is exiting with status 1
    Where could be the problem for the above issues....

  • Post-installation Error Oracle 9i on Red Hat 8.0

    After installing the package, I tried to follow the following
    Post-Installation
    Let's fix the issues Oracle had with ins_ctx.mk and starting the agent. Open a new terminal and log in as the oracle user. Execute these lines:
    [oracle@miniroko oracle]$ cd $ORACLE_HOME/network/lib
    [oracle@miniroko lib]$ make -f ins_net_client.mk install
    But the linker doesen seem to identify one of the options and I've got the error:
    make -f ins_net_client.mk install
    chmod 755 /home/oracle/OraHome1/bin
    /home/oracle/OraHome1/bin/echodo gcc -L/home/oracle/OraHome1/lib/ -L/home/oracle/OraHome1/rdbms/lib/ -L/home/oracle/OraHome1/network/lib/ -L/home/oracle/OraHome1/lib/ -L/home/oracle/OraHome1/rdbms/lib/ -L/home/oracle/OraHome1/network/lib/ -o trcasst /home/oracle/OraHome1/network/lib/s0nue.o -lntal9 \
    -lclntsh `cat /home/oracle/OraHome1/lib/ldflags` -lnsslb9 -lncrypt9 -lnsgr9 -lnzjs9 -ln9 -lnl9 -lnro9 `cat /home/oracle/OraHome1/lib/ldflags` -lnsslb9 -lncrypt9 -lnsgr9 -lnzjs9 -ln9 -lnl9 -lclient9 -lvsn9 -lwtc9 -lcommon9 -lgeneric9 -lwtc9 -lmm -lnls9 -lcore9 -lnls9 -lcore9 -lnls9 -lxml9 -lcore9 -lunls9 `cat /home/oracle/OraHome1/lib/ldflags` -lnsslb9 -lncrypt9 -lnsgr9 -lnzjs9 -ln9 -lnl9 -lnro9 `cat /home/oracle/OraHome1/lib/ldflags` -lnsslb9 -lncrypt9 -lnsgr9 -lnzjs9 -ln9 -lnl9 -lclient9 -lvsn9 -lwtc9 -lcommon9 -lgeneric9 -ltrace9 -lnls9 -lcore9 -lnls9 -lcore9 -lnls9 -lxml9 -lcore9 -lunls9 -lclient9 -lvsn9 -lwtc9 -lcommon9 -lgeneric9 -lnls9 -lcore9 -lnls9 -lcore9 -lnls9 -lxml9 -lcore9 -lunls9 `cat /home/oracle/OraHome1/lib/sysliblist` -ldl -lm -lnonc9 -lnl9 -ln9 -lnlsnr9 -lnlsnrc9 -lnsgr9 -lnmd -lnms -lncm9 -lnmsp -lpeer -lnro9 -ln9 -ltrace9 -lnl9 -lnonc9 -lnlsnr9 -lnlsnrc9 -lnmd -lnms -lncm9 -lnmsp -ln9 `cat /home/oracle/OraHome1/lib/sysliblist` -Wl,-rpath,/home/oracle/OraHome1/lib:/lib:/usr/lib -lm `cat /home/oracle/OraHome1/lib/sysliblist` -ldl -lm /home/oracle/OraHome1/rdbms/lib/defopt.o
    gcc -L/home/oracle/OraHome1/lib/ -L/home/oracle/OraHome1/rdbms/lib/ -L/home/oracle/OraHome1/network/lib/ -L/home/oracle/OraHome1/lib/ -L/home/oracle/OraHome1/rdbms/lib/ -L/home/oracle/OraHome1/network/lib/ -o trcasst /home/oracle/OraHome1/network/lib/s0nue.o -lntal9 -lclntsh -lnbeq9 -lnhost9 -lnus9 -lnldap9 -lldapclnt9 -lnsslb9 -lncrypt9 -lnoname9 -ln9 -lntcp9 -lntcps9 -lnsslb9 -lntcp9 -lntns9 -ln9 -lnsslb9 -lncrypt9 -lnsgr9 -lnzjs9 -ln9 -lnl9 -lnro9 -lnbeq9 -lnhost9 -lnus9 -lnldap9 -lldapclnt9 -lnsslb9 -lncrypt9 -lnoname9 -ln9 -lntcp9 -lntcps9 -lnsslb9 -lntcp9 -lntns9 -ln9 -lnsslb9 -lncrypt9 -lnsgr9 -lnzjs9 -ln9 -lnl9 -lclient9 -lvsn9 -lwtc9 -lcommon9 -lgeneric9 -lwtc9 -lmm -lnls9 -lcore9 -lnls9 -lcore9 -lnls9 -lxml9 -lcore9 -lunls9 -lnbeq9 -lnhost9 -lnus9 -lnldap9 -lldapclnt9 -lnsslb9 -lncrypt9 -lnoname9 -ln9 -lntcp9 -lntcps9 -lnsslb9 -lntcp9 -lntns9 -ln9 -lnsslb9 -lncrypt9 -lnsgr9 -lnzjs9 -ln9 -lnl9 -lnro9 -lnbeq9 -lnhost9 -lnus9 -lnldap9 -lldapclnt9 -lnsslb9 -lncrypt9 -lnoname9 -ln9 -lntcp9 -lntcps9 -lnsslb9 -lntcp9 -lntns9 -ln9 -lnsslb9 -lncrypt9 -lnsgr9 -lnzjs9 -ln9 -lnl9 -lclient9 -lvsn9 -lwtc9 -lcommon9 -lgeneric9 -ltrace9 -lnls9 -lcore9 -lnls9 -lcore9 -lnls9 -lxml9 -lcore9 -lunls9 -lclient9 -lvsn9 -lwtc9 -lcommon9 -lgeneric9 -lnls9 -lcore9 -lnls9 -lcore9 -lnls9 -lxml9 -lcore9 -lunls9 -ldl -lm -lpthread -ldl -lm -lnonc9 -lnl9 -ln9 -lnlsnr9 -lnlsnrc9 -lnsgr9 -lnmd -lnms -lncm9 -lnmsp -lpeer -lnro9 -ln9 -ltrace9 -lnl9 -lnonc9 -lnlsnr9 -lnlsnrc9 -lnmd -lnms -lncm9 -lnmsp -ln9 -ldl -lm -lpthread -Wl,-rpath,/home/oracle/OraHome1/lib:/lib:/usr/lib -lm -ldl -lm -lpthread -ldl -lm /home/oracle/OraHome1/rdbms/lib/defopt.o
    /usr/bin/ld: cannot find -lclntsh
    collect2: ld returned 1 exit status
    make: *** [trcasst] Error 1
    SERVER02>
    TIA,
    Juliana de Paula

    I think you have to relink genclntsh lib ... there should be a script... genclntsh in $ORACLE_HOME/bin.
    the directive -laaa means that linker is looking for libaaa.
    If an error occure, if I remember correctly try to remove the -Z flags in ld command.
    Bye
    Pier Paolo

  • Apps 11i Post-Installation problem

    Dear Members :
    I am on OEL 5.3 and installed Apps 11i. Post-installation, while try to run adstrtal.sh, got the following errors. I am pasting last couple of lines from the log file.
    ./applypreferences.sh: line 26: 6317: Memory fault
    /d01/oracle/visora/8.0.6/jre1183o/lib/i686/green_threads/libzip.so: symbol errno, version GLIBC_2.0 not defined in file libc.so.6 with link time reference (libzip.so)
    Unable to initialize threads: cannot find class java/lang/Thread
    Could not create Java VM
    [Service Control Execution Report]
    The report format is:
    <Service> <Script> <Status>
    Oracle Apache Server VIS_oel5 adapcctl.sh Started
    OracleTNSListener80APPS_VIS_oel5 adalnctl.sh Started
    OracleConcMgrVIS_oel5 adcmctl.sh Started
    OracleFormsServer-Forms60VIS_oel5 adfrmctl.sh Started
    OracleReportServer-Rep60_VIS adrepctl.sh Started
    Oracle Metrics Client VIS_oel5 adfmcctl.sh Started
    Oracle Metrics Server VIS_oel5 adfmsctl.sh Started
    Oracle Fulfillment Server VIS_oel5 jtffmctl.sh Started
    Oracle Discoverer services VIS_oel5 addisctl.sh Failed
    Oracle Restricted Apache Server VIS_oel5 adaprstctl.sh Disabled
    Oracle Apache Server VIS_oel5 for PL/SQL adapcctl.sh Disabled
    Oracle TCF SocketServer VIS_oel5 adtcfctl.sh Disabled
    Oracle ICSM VIS_oel5 ieoicsm.sh Disabled
    Oracle iProcurement Bulk Loader VIS_oel5 icxblkctl.sh Disabled
    I tried unsetting LD_ASSUME_KERNEL after installation, but that didn't work. Could someone please guide me with suggestion ?
    Thanks in advance.
    Atanu

    Hi Hussein :
    [1] Would you pls. tell me what you mean by "need to source" - is it just running .env file ? Under $APPL_TOP I see the following .env files : APPSORA, APPSVIS_oel5, VIS_oel5 and VIS; none of them having permission to run. So I chmod, ran VIS_oel5 and find LD_ASSUME_KERNEL value null - as usual (I am on OEL 5.3).
    [2] I tried using http://oel5.localdomain:8000/oa_servlets/AppsLogin using sysadmin/sysadmin and got the following out of many more :
    oracle.apps.fnd.framework.OAException: Could not load application module 'oracle.apps.fnd.framework.navigate.server.OANavigatePortletAM'. at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:280) at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:78) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1034)
    ## Detail 0 ## oracle.apps.fnd.framework.OAException: Application: FND, Message Name: FND_GENERIC_MESSAGE. Tokens: MESSAGE = java.sql.SQLException: ORA-00607: Internal error occurred while making a change to a data block ORA-00600: internal error code, arguments: [4194], [66], [33], [], [], [], [], [] ORA-06512: at "APPS.FND_SESSION_MANAGEMENT", line 1010 ORA-06512: at "APPS.FND_SESSION_MANAGEMENT", line 920 ORA-06512: at "APPS.FND_AOLJ_UTIL", line 220 ORA-06512: at line 1 ; (Could not lookup message because there is no database connection) at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:888) at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:862)
    If you could please guide me to some conclusion - appreciate very much.
    Thanks.
    Atanu

  • DAC, ETL failed due to Post-Etl Script not exist and table not exist.

    When execute the ETL in DAC, it failed when execute the "Change Capture For Siebel OLTP"
    encounterred the following two type errors.
    how to fix these errors?
    The first is the table not exist:
    ======================================================================
    MESSAGE:::Could not truncate table 'S_ETL_I_IMG_38' because this table does not exist in database 'OLTP_SIA'.
    EXCEPTION CLASS::: com.microsoft.sqlserver.jdbc.SQLServerException
    com.microsoft.sqlserver.jdbc.SQLServerException.makeFromDatabaseError(Unknown Source)
    ======================================================================
    The second is the Post-Etl not exist.
    I have copied the Copy Source Files and Lookup Files. What else should I do? What script it not find? have no idea.
    ======================================================================
    Jan 20, 2009 4:11:06 PM com.siebel.etl.etlmanager.EtlExecutionManager finishEtl
    SEVERE: Incorrectly specified Post-Etl Script/Executable. The file either does n
    ot exist, or is not readable
    UNREGISTERING: com.siebel.etl.engine.bore.FixedFailedNodesFacility
    686 SEVERE Tue Jan 20 16:11:06 CST 2009
    END OF ETL
    687 SEVERE Tue Jan 20 16:11:06 CST 2009 Incorrectly specified Post-Etl Script
    /Executable. The file either does not exist, or is not readable
    UNREGISTERING: com.siebel.etl.engine.core.SessionHandler
    UNREGISTERING: com.siebel.etl.engine.bore.ServerTokenPool
    UNREGISTERING: com.siebel.etl.engine.core.TableIndexHandler
    UNREGISTERING: com.siebel.etl.engine.bore.NewDispatcher
    Stopping EtlParameters 9550256
    UNREGISTERING: com.siebel.etl.engine.bore.EtlParameters
    UNREGISTERING: com.siebel.etl.engine.bore.ExternalTaskTokenPool
    UNREGISTERING: com.siebel.analytics.etl.execution.RefreshDateHandler

    Hi tigger,
    ad scripts:
    http://download.oracle.com/docs/cd/E12102_01/books/AnyInstAdm784/AnyInstAdmFunctionalRef9.html#wp1005877
    http://download.oracle.com/docs/cd/E12102_01/books/AnyInstAdm784/AnyInstAdmFunctionalRef8.html
    ad tables:
    Without data change capture tables nothing will work. Have you looked at the actual documentaiotn? It contains everythign step by step.
    http://www.oracle.com/technology/documentation/bi_apps.html
    --> Oracle Business Intelligence Applications Fusion Edition Installation and Configuration Guide -> 4.15.3 How to Update Siebel Transactional Database Schema Definitions

  • SQL 2005 Upgrade complete! - Post installation tasks questions!

    Hi All
    I have managed to upgrade our DEV and TST ECC6 systems to SQL2005 (from SQL2000) and so far all seems ok however I have a a few questions and checks I would like some help with. I have included my post installation tasks at the bottom of this post, so you know what I have done.
    I have noticed that when I  run SGEN I get a short dump  LOAD_VERSION_LOST which I am not sure what this means.
    If there is anything else I need to do or should do please let me know.
    Thanks
    Phil
    <b>Post Installation Tasks</b>
    <u>SQL Queries</u>
    exec sp_configure 'show advanced options', 1
    reconfigure with override
    exec sp_configure 'max degree of parallelism', 1
    reconfigure with override
    exec sp_configure 'xp_cmdshell', 1
    reconfigure with override
    alter database <SID> set page_verify checksum
    go
    alter database <SID> set auto_create_statistics on
    go
    alter database <SID> set auto_update_statistics on
    go
    alter database <SID> set auto_update_statistics_async on
    go
    dbcc updateusage ('<SID>')
    go
    exec sp_updatestats
    go
    <u>SAP Tasks</u>
    Check SM21/SM50/DB02/ST04/ST22/SICK for any unusual error messages.

    Hello,
    I want run the below script on SQL 2005, can anyone tell me how I run it in SQL 2005?
    exec sp_configure 'xp_cmdshell', 1
    reconfigure with override
    I need to enable xp_cmdshell in sql 2005
    Reg,
    SAT

  • How to create installation scripts in packaged application

    can u tel me How to create installation scripts for packaged application.
    also tell me , i have to first install scripts and then supporting objects or
    supporting objects first then installation scripts..

    Hi,
    Depending upon your usecase there are different ways to implement this logic.
    Check this for example (Read my answer in this post):
    https://forums.sdn.sap.com/thread.jspa?threadID=349151
    Also check these senarios:
    http://help.sap.com/saphelp_nw70/helpdata/en/42/9ddf20bb211d72e10000000a1553f6/frameset.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/42/9ddcc9bb211d72e10000000a1553f6/frameset.htm
    Also the delegation may be interesting for you:
    http://help.sap.com/saphelp_nw70/helpdata/en/a0/44b742cafec96ae10000000a155106/frameset.htm
    Greetings,
    Praveen Gudapati

  • ESourcing post installation problem

    Hi,
    I am installing ESourcing 5.1 on NW04s SR2 on windows IA 32 machine.
    I have installed Netweaver app server and esourcing successfully.
    I am facing issue while running dbimport file. (as part of step 1 of post installation procedure)
    Script is showing error in install stored procedure step.
    some steps are executed successfully inside this. some are failing
    Here is the log  for one of those errors:
    Error message:
    com.ibm.db2.jcc.b.SqlException: DB2 SQL error: SQLCODE: -85, SQLSTATE:      , SQLERRMC: S1
    Details:
    AssociatedAttribute=STANDARD_ATTRIBUTE_ID - com.frictionless.common.install.exception.InstallErrorException: Database error: DB2 SQL error: SQLCODE: -85, SQLSTATE:      , SQLERRMC: S1. Contact your system administrator.
         at com.frictionless.install.actions.SqlCommandFile.executeHook(SqlCommandFile.java:70)
         at com.frictionless.install.actions.InstallAction.execute(InstallAction.java:202)
         at com.frictionless.install.engine.ScriptedImportEngine.runSingleItem(ScriptedImportEngine.java:302)
         at com.frictionless.install.engine.DbSetupEngine.execute(DbSetupEngine.java:186)
         at com.frictionless.install.tools.gui.DbGuiImporter.go(DbGuiImporter.java:280)
         at com.frictionless.install.tools.gui.DbGuiImporter$InstallThread.run(DbGuiImporter.java:555)
    AssociatedAttribute=STANDARD_ATTRIBUTE_ID - com.frictionless.api.common.exception.DatabaseException: Database error: DB2 SQL error: SQLCODE: -85, SQLSTATE:      , SQLERRMC: S1. Contact your system administrator.
         at com.frictionless.install.actions.SQLInstallAction.createDatabaseException(SQLInstallAction.java:241)
         at com.frictionless.install.actions.SQLInstallAction.executeSQLCommand(SQLInstallAction.java:217)
         at com.frictionless.install.actions.SQLInstallAction.executeSQLCommand(SQLInstallAction.java:148)
         at com.frictionless.install.actions.SqlCommandFile.executeHook(SqlCommandFile.java:63)
         at com.frictionless.install.actions.InstallAction.execute(InstallAction.java:202)
         at com.frictionless.install.engine.ScriptedImportEngine.runSingleItem(ScriptedImportEngine.java:302)
         at com.frictionless.install.engine.DbSetupEngine.execute(DbSetupEngine.java:186)
         at com.frictionless.install.tools.gui.DbGuiImporter.go(DbGuiImporter.java:280)
         at com.frictionless.install.tools.gui.DbGuiImporter$InstallThread.run(DbGuiImporter.java:555)
    com.ibm.db2.jcc.b.SqlException: DB2 SQL error: SQLCODE: -85, SQLSTATE:      , SQLERRMC: S1
         at com.ibm.db2.jcc.b.nh.c(nh.java:1669)
         at com.ibm.db2.jcc.b.nh.d(nh.java:1657)
         at com.ibm.db2.jcc.b.nh.b(nh.java:1168)
         at com.ibm.db2.jcc.a.db.h(db.java:219)
         at com.ibm.db2.jcc.a.db.b(db.java:46)
         at com.ibm.db2.jcc.a.t.b(t.java:40)
         at com.ibm.db2.jcc.a.sb.e(sb.java:121)
         at com.ibm.db2.jcc.b.nh.l(nh.java:1163)
         at com.ibm.db2.jcc.b.nh.a(nh.java:1941)
         at com.ibm.db2.jcc.b.nh.c(nh.java:522)
         at com.ibm.db2.jcc.b.nh.executeUpdate(nh.java:506)
         at com.frictionless.common.db.DbHandle.executeUpdate(DbHandle.java:927)
         at com.frictionless.install.actions.SQLInstallAction.executeSQLCommand(SQLInstallAction.java:210)
         at com.frictionless.install.actions.SQLInstallAction.executeSQLCommand(SQLInstallAction.java:148)
         at com.frictionless.install.actions.SqlCommandFile.executeHook(SqlCommandFile.java:63)
         at com.frictionless.install.actions.InstallAction.execute(InstallAction.java:202)
         at com.frictionless.install.engine.ScriptedImportEngine.runSingleItem(ScriptedImportEngine.java:302)
         at com.frictionless.install.engine.DbSetupEngine.execute(DbSetupEngine.java:186)
         at com.frictionless.install.tools.gui.DbGuiImporter.go(DbGuiImporter.java:280)
         at com.frictionless.install.tools.gui.DbGuiImporter$InstallThread.run(DbGuiImporter.java:555)
    Can anybody help me this regard!

    Hi,
    Even I face similar error in dbimport phase... Any help?
    Regards
    Thilip Kumar

  • Post installation issues of SAPMEINT

    Hi,
    We have installed SAPMEINT as per the guide T066_CIG_SAPME_52_FINAL.pdf. We have executed the SAPMEINT standard interfaces and yet to execute the SAPMEINT high performance interfaces.
    We are facing the following issues
    1) SAPMEINT_SQL  jdbc driver in Unknown status.
    2) VMJDBC  jdbc driver in Unknown status.
    3) POst installation of SAPMEINT, SAPMII should have the preconfigured schedulers, Message listeners and data sources with SQL database. Also under role Role_SAPMEINT, navigation should have the configuration as MII Dashboard menu. We are not able to find any of these.
    Our installation did not throw any errors or warnings.
    Request to send your views on this.
    Thanks.
    Shankar

    Hi,
    For ME system
    First you have to install the NW CE and then CE Update Manager followed by JSPM.
    Secondly install the WIP and ODS database(Creation of database, listener,tablespace,user, assigning the roles & previliges,)
    Thirdly install the SAP ME application  and then Update also.
    Make the changes required in configtool>Instance>VM parameters JVM settings .Bounce the system for changes.
    http://hostname:50000/nwa, Choose Configuration Management-> Infrastructure-> Application Resources
    Create New Resource ->Deploy New JDBC Driver.(check whether you have uploaded the correct JDBC driverand check status)
    Applying license
    Running the WIP scripts with WIPUSER on WD5 database
    Deploying the SAPME  into the JAVA System i.e, VISPRISE 5.2 SCA file through JSPM
    Before starting the deployment, you need to add a reference to the Classloader of the Security Provider
    SAP ME 5.2 Clients installation
    SAP ME 5.2 Client update
    now stop and start the me~ear application under the path , operation mgnt>systems>stop&start-->filter on and search for
    me and do it.
    you have to execute the script "InitialLoad.ksh" and provide the admin password to work.
    SAP ME ERP Integration (SAPMEINT) you have to deploy on MII through JSPM.
    Deploy of the SAMEINTCTC need to be configured on the system MII and for configurations you can ask ME
    Consultant for any decisions
    Regards,
    PERALA

  • OBIEE 11g post installation tasks in Linux?

    Hi,
    Do I need to write any script for high availability of OBIEE and web logic servers in Linux? what are the processes to start/stop manually using command? Please give me post installation tasks I need to taken care of.
    Thanks
    Jay.

    Becky,
    You need not do any thing additional to have EM running in the OBI 11g instance. Although it is a deployed JEE application, if your Weblogic Server (WLS) is started and up and running then your EM Console should also be up and running.
    You say that you are doing everything from the command line. So, start the Weblogic Server then navigate to http://< your server name> : 7001/console
    If that comes up then go to
    http://<your server name>:7001/em
    That is your EM Fusion Console and it should come up as well.
    Don't mess with the XML file directly.

  • Installing Update Rollup 4 for R2. Question of post installation task

    I will be installing Update Rollup 4 for Service Manager 2012 R2 on our Orchestrator, Data Warehouse, Service Manager and Portal Server as well as updating the client Consoles.
    Following MS article
    http://support2.microsoft.com/kb/2989601/en-us?sd=rss#install.
    A bit confused about the Post installation tasks. Particularly the following:
    Resynchronize System Center Operations Manager mount point data
    To resynchronize Operations Manager mount point data after you apply this update, follow these steps:
    Disable all the Operations Manager configuration item (CI) connectors in the Service Manager console.
    In Windows PowerShell, check the current execution policy by running the following cmdlet:
    Get-ExecutionPolicy
    If the current execution policy is Restricted, set it to
    Remotesigned by running the following command:
    Set-ExecutionPolicy –force RemoteSigned
    Find the following PowerShell script in your System Center 2012 R2 installation directory:
    OMCIConnector_SyncMetadata_UpdateTimestamp.ps1
    By default, you should find this file in the following location:
    C:\Program Files\Microsoft System Center 2012 R2\Service Manager\PowerShell
    Run the following command from the Primary Management server:
    PowerShell .\OMCIConnector_SyncMetadata_UpdateTimestamp.ps1
    Revert the execution policy to the original value that it had in step 2.
    Enable and synchronize the relevant Operations Manager CI connectors.
    Make sure that all the mount point data is populated in Service Manager.
    I am guessing they are talking about the System Center Configuration Manager Connector but not sure. We don't have a Connector for SCOM. If by OMCIConnector they mean SCOM, then I don't need to worry about this.  If would be nice if they would tell
    you why you are doing this. I don't even know what "Mount Point Data" is.
    Does anyone know if it would cause any problems if I skipped this step? I hate doing stuff when I don't know why I am doing it. For example, step 8 "Make sure that all the mount point data is populated in Service Manager."
    What does that even mean?
    Also, I cannot even find the PowerShell script they are talking about in the C:\Program Files\Microsoft System Center 2012\Service Manager\Powershell folder so are they talking about SCOM or SCCM?

    All of the steps listed refer to the Operations Manager connections. none of these steps relate to the Config Manager connector.  If you are not using SCOM, or don't have a SCOM connector, then you can safely ignore these steps. 

  • Post-Clone script error

    Hello,
    I am facing post-clone error on 11i O.S aix 5.3 when i run post-clone script on db it got error.share any solution is highly appreciable
    $ perl adcfgclone.pl dbTier
    Enter the APPS password [APPS]:
    First Creating a new context file for the cloned system.
    The program is going to ask you for information about the new system:
    RC-50004: Error occurred in CloneContext:
    null
    Check logfile CloneContext_01210431.log for details.
    ERROR: context creation not completed successfully.
    Please check /tmp/adcfgclone.err file for errors
    Thanks,
    MAAN
    Edited by: user1116442 on Jan 20, 2011 3:40 AM

    Hello,
    Yes i run sh orainstRoot.sh as root user after running orainstRoot.sh script as root user i run adcfgclone.pl script but it still getting error.
    The 806 installer uses the oratab file.
    The file oratab needs to exist at:
    /etc/oratab
    Please run the script /tmp/orainstRoot.sh as root
    Restart adclone.pl after performing required corrections.
    ERROR: Failed to execute /apps/oracle/orcldb/9.2.0/appsutil/clone/bin/adclone.pl
    This error little bit change from above mention error which come at first time after running sh orainstRoot.sh.kindly look at this.
    I didn't run adclone.pl as it saying in error Restart adclone.pl after performing required corrections.
    i am asking you should i run adclone.pl as it in above error.and please tell how can i run adclone.pl..is it run as perl adclone.pl dbTier....?
    Thanks,

  • Oracle Enterprise Repository post installation steps failed.

    Hi,
    I was able to install Oracle 11g Express and Weblogic 10.3.6.0 and 11.1.1.6.0 and when try to follow post installation steps to extend a domain installation fails with following steps. Could you please assist me
    what could i have done wrong or suggest me hints to locate the error.
    2013-01-30 23:08:04,768 INFO [WizardController] com.oracle.cie.domain.template.catalog.impl.ComponentsXMLConverter - C:\Oracle\Middleware\wlserver_10.3\common\lib\components.xml does not contain component elements and will be skipped
    2013-01-30 23:08:11,830 INFO [WizardController] com.oracle.cie.wizard.domain.gui.tasks.MultipleTemplateSelectionGUITask - Selected required template: Basic WebLogic Server Domain:10.3.6.0 [C:\Oracle\Middleware\wlserver_10.3\common\templates\domains\wls.jar]
    2013-01-30 23:08:15,362 INFO [WizardController] com.oracle.cie.domain.WLSTemplateBuilder - No template-database.xml found in template
    2013-01-30 23:08:15,471 WARN [WizardController] com.oracle.cie.domain.AbstractTemplate - Could not find component name 'Oracle Enterprise Repository' version 'null'
    2013-01-30 23:08:15,471 INFO [WizardController] com.oracle.cie.domain.AbstractTemplate - Replacing component reference Oracle Enterprise Repository version null with top-level component reference: WebLogic Server version 10.3.6.0
    2013-01-30 23:08:15,471 INFO [WizardController] com.oracle.cie.domain.AbstractTemplate - Setting symbol for component WebLogic Server version 10.3.6.0 to WebLogic_Server_10.3.6.0_wlserver_10.3_ORACLE_HOME
    2013-01-30 23:08:27,096 INFO [WizardController] com.oracle.cie.domain.assignment.ServerMachineAssignment - ListenPort internal Validation result= [null]
    2013-01-30 23:08:28,737 INFO [WizardController] com.oracle.cie.domain.DomainChecker - ListenPort external Validation result= [null]
    2013-01-30 23:08:32,580 ERROR [create_gui] com.oracle.cie.wizard.domain.gui.tasks.DomainCreationGUITask - Generation Error!!
    Traceback (innermost last):
    (no code object) at line 0
    SyntaxError: ('Lexical error at line 6, column 11. Encountered: "@" (64), after : ""', ('<iostream>', 6, 11, 'oerPort = @DOMAIN_LISTEN_PORT@'))
         at org.python.core.parser.fixParseError(Unknown Source)
         at org.python.core.parser.parse(Unknown Source)
         at org.python.core.Py.compile_flags(Unknown Source)
         at org.python.util.PythonInterpreter.execfile(Unknown Source)
         at org.python.util.PythonInterpreter.execfile(Unknown Source)
         at com.oracle.cie.domain.script.ScriptHelper.executeEmbeddedTemplateScript(ScriptHelper.java:1574)
         at com.oracle.cie.domain.DomainChecker.executeEmbeddedScript(DomainChecker.java:1322)
         at com.oracle.cie.domain.DomainChecker.runCustomWLSTScript(DomainChecker.java:1305)
         at com.oracle.cie.domain.DomainChecker.preprocessOutput(DomainChecker.java:143)
         at com.oracle.cie.domain.TemplateImporter.generate(TemplateImporter.java:274)
         at com.oracle.cie.wizard.domain.gui.tasks.DomainCreationGUITask$1.run(DomainCreationGUITask.java:216)
    Thanks
    Edited by: 985275 on Jan 31, 2013 12:13 AM

    Hi,
    After installing Oracle DB, did you Install RCU setup succesfully??
    If not, Install RCU and then procced.
    -Santosh

Maybe you are looking for

  • Call for N96 suppor of OVI MAPS

    Pleas enable the support for ovi maps on the N96 reply 'yes' to all N96 users who are part of this discussion group. with symbian . who needs a PA?

  • Are my devices supposed to wi-fi synce even if they are not plugged into a power source?

    My three devices are checked to wi-fi sync for windows 7 iTunes, iPad 2, iPhone 4s and iPod touch 4th G.  When I launch iTunes all three devices appear under DEVICES after a few seconds. Now if I click on my iPad's name or my iPhone's name under DEVI

  • Files in my trash bin which I didn't put

    I noticed there are file in my trash bin which I didn't put. Pictures folder files and sometime document files. Did I somehow got infected by virus....

  • How do I set my default browser to Firefox?

    When a URL is in an email message and I click on it, it goes to Safari. I want it to go to Firefox. I looked through all the preferences settings and could not find an answer to this. Thank you.

  • Generate_Sequence_number

    How can I control the incrementing during execute_query/panning to a blank record? I've created a sequence room_sequence that increments by one. I used this in my block item default property. The problem with this was the sequence automatically incre