You could use the NTP protocol. You need to configure one of the servers as NTP server and the others as NTP clients. If you need more information about how to do this go :
One need to use NTP protocol and here I can give a small script which I used in my company
First determine the time server(master) and u can synchronize all othe risc servers with that master risc server In the example shown below.First you can set master time matching with global time(whatever)
#!/bin/ksh
#script title:timeset.ksh
#date 7-17-03
#This script synchronizes the different times of rest of the nodes with master time server.so that a common time for
all servers
TIMESERVER=masternode
for TIMESTAMP in node1 node2 node3 node4 node5
do
rsh $TIMESTAMP /bin/su -root -c
echo "SYNCHRONIZING THE TIME OF NODE:$TIMESTAMP with $TIMESERVER ..."
setclock $TIMSERVER
done
echo "The script execution completed $0 "
#End of the script
step 2: Now u can verify the time stamp on all nodes by using
#date
sushveer
IBM certified specialist-p-series AIX5L System Administration
AIX/SOLARIS/WEBSPHERE-MQ/TIVOLI Administrator
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.