- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Replacement of rdate commad in HPUX
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
Discussions
Discussions
Discussions
Forums
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
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-26-2007 10:10 PM
тАО06-26-2007 10:10 PM
Replacement of rdate commad in HPUX
Solaris has a command rdate, does it has a replacement in HPUX?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-26-2007 10:25 PM
тАО06-26-2007 10:25 PM
Re: Replacement of rdate commad in HPUX
Or, you could use a little script like this:
echo "yes" > /tmp/yes_time
CTIME=`date +%m%d%H%M%y`
remsh $SERVER date $CTIME < /tmp/yes_time
rm /tmp/yes_time
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-26-2007 11:27 PM
тАО06-26-2007 11:27 PM
Re: Replacement of rdate commad in HPUX
I want to synchronize the time between a solaris machine and a HPUX machine.
when I do ntpdate on HPUX it gives me the following error:
ntpdate solh-01
27 Jun 09:54:08 ntpdate[13846]: no server suitable for synchronization found
when the try to sync a sol machine with the same server(solh-01) using rdate the sync completes.
is there some command in HPUX which will do the same job as rdate
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-26-2007 11:40 PM
тАО06-26-2007 11:40 PM
Re: Replacement of rdate commad in HPUX
Use the ntpq -p command to test the server and once it is working, you just add the server name to your /etc/ntp.conf file. If your systems have access to the open Internet, then obtain the time directly with entries like this in ntp.con:
server 0.north-america.pool.ntp.org
server 1.north-america.pool.ntp.org
server 2.north-america.pool.ntp.org
server 3.north-america.pool.ntp.org
But before you start, run ntpq -p 0.north-america.pool.ntp.org to test connectivity. You need port 123 enabled on your firewall.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-28-2007 12:28 AM
тАО06-28-2007 12:28 AM
Re: Replacement of rdate commad in HPUX
Now I have manually synced the times at there was not NTP server available on the solaris machine.
Thanks for your valuable replies.
sri