- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Script to automate installation
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2004 10:33 PM
06-23-2004 10:33 PM
Script to automate installation
Can we have a script which can perform the
weblogic or informix istallation on HP-UX
i.e. Instead of user supplying the Input
the script should pass the pre-defined
parameters.
Thanks,
AMit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2004 10:49 PM
06-23-2004 10:49 PM
Re: Script to automate installation
install_weblogic.sh <
webuser
webgrp
y
n
EOF
Where the lines above the EOF are answers to the questions posed by the install script.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2004 11:09 PM
06-23-2004 11:09 PM
Re: Script to automate installation
Once upon a time I used the attached script for half-automatic installation.
You can use the parts which you find intersting.
HTH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2004 11:30 PM
06-23-2004 11:30 PM
Re: Script to automate installation
I did'nt get your point can you explain
and how should my script handle the
creation of user account and specifying
java path, making entries in .profile
Thanks,
Amit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2004 01:38 AM
06-24-2004 01:38 AM
Re: Script to automate installation
Anyone please help me with the script
to automate the installation of Weblogic
and Informix 9.4
Thanks,
Amit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2004 07:00 PM
06-24-2004 07:00 PM
Re: Script to automate installation
I want a script to check whether a user exist or not if not then create it, set the vairables in the .profile file and then start the installation of package.
Thanks
Amit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2004 07:23 PM
06-24-2004 07:23 PM
Re: Script to automate installation
grep $1 /etc/passwd > /dev/null
if [ $? -ne 0 ]
then
echo "add user"
useradd -m user_name
echo "PARAMETER_NAME" >> /home/user_name/.profile
sh other_commands
else
echo "User already Exists ..."
exit 1
fi
sks