Presentation On Jumpstart (Remote Un-Attendant Installation)
Presentation On Jumpstart (Remote Un-Attendant Installation)
Presentation On Jumpstart (Remote Un-Attendant Installation)
Jumpstart
Server in Solaris enables installation of OS over network to multiple range of servers differing in architecture ,softwares, packages, disk capacity etc. The process consists of setting up of a boot server/install server with OS media image and jumpstart client configurations and connecting clients through network
Training Contents
Before You start Preparing for Jumpstart server Setting up an Install server Setting up boot server Setting up configuration Files sysidcfg file Creating Profiles Making Rules Verifying Rules Adding a host entry Adding a client Starting the client installation Begin and Finish scripts Trouble Shooting
make directory to store install server data. # mkdir /export/install share it # vi /etc/dfs/dfstab add share -F nfs -o ro,anon=0 /export/install to export file system for sharing. Do a shareall so that the file system is now exported Setting up an Install server Mount Solaris 10 DVD or cdrom Follow the steps : # cd /cdrom/cdrom0/Solaris_10/Tools #./setup_install_server /export/install This will copy the cdrom contents in to the /export/install directory.
the above command installs software for booting the client. You also have to do a add host and add_install_client in boot server, see adding clients . Rest of the configuration has to be done at install server
Creating sysidcfg
Create one file as sysidcfg which contains all the configuration details of Client. # vi /jumpstart/sysidcfg
keyboard=US-English system_locale=en_US timezone=Asia/Calcutta security_policy=none name_service=none terminal=vt100 timeserver=localhost nfs4_domain=dynamic root_password=cdNFLIX.k.RJs network_interface=e1000g0 {hostname=MITSERVER ip_address=172.16.250.178 netmask=255.255.255.0 protocol_ipv6=no default_route=172.16.250.1}
# ./check
Validating rules... Validating profile profile... The custom JumpStart configuration is ok.
For Updating /etc/bootparam file we need to run one Script as below. # cd /export/jumpstart/Solaris_10/Tools # ./add_install_client -p 192.168.250.11:/jumpstart -c 192.168.250.11:/jumpstart MITSERVER sun4v /etc/bootparam file automatically updated as per options you supply with add_install_client
installing packages
Trouble Shooting
Error : unknown client "client host name"
Source : add_install_client Cause : host name can't be resolved . check host entry is there in /etc/ethers or in nis/nis+ maps . Source : Solaris booting process Cause : Improper media . Make sure proper media is available through disk image or CD in the install server . Also see that the rules point to valid media type. Source: Client boot requests Cause : Muliple entries for a client in different servers. There should not be multiple entries in different install server's /etc/bootparams , /tftpboot or /rplboot . These causes a hang situation when all of them try to answer.
No network boot server .Unable to install the system. See installation instructions
Source : Client boot request. Cause : Installation is not proper. Check the boot server installation again for any error in command or file . Source : Client boot request . Cause : No server is answering its request for booting .Probably they don't know about this client . See the proper entries are there in /etc/bootparams or nis maps with proper entries in nsswitch.conf . add_install_client is responsible for adding client information in jumpstart server so check the command and its option..
Thank You