xntpd on NCR unix


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers xntpd on NCR unix
# 1  
Old 03-01-2005
xntpd on NCR unix

Hi,

I'm having these errors when using xntpd on ncr unix.

synchronisation lost
Feb 25 09:10:14 in.xntpd[3005]: Previous time adjustment didn't complete


Can anyone help me on this. Is it an issue with the time delay as the reference time servers are on different sites and the ping response is more than 40 ms.

Can I synchronise a unix server to a windows server?
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

NCR UNIX system v/386 release 4 recover root password

we have NCR 3455 system from long time as attached all information for server (images) , so we need your help to assist us to get root password which lost it , really we appreciate your efforts if you can send us the procedure for resting the administrator (root) password which this server... (0 Replies)
Discussion started by: univoip
0 Replies

2. Filesystems, Disks and Memory

Ncr UNIX

let me know to create a new partition on ncr unix with vxfs filesystem (0 Replies)
Discussion started by: venikathir
0 Replies

3. UNIX for Advanced & Expert Users

NCR UNIX help

Dear all I'm trying to virtualize NCR on UBUNTU host . I need a help ,I'm new to UNIX world . If any one ca send me step by step guide , I'll appreciate this very much . Thanks (3 Replies)
Discussion started by: semerouk
3 Replies

4. Shell Programming and Scripting

Equivalent of mmin in MP-RAS/NCR Unix

Hi, i created a script to look for the modified files in the last 15 minutes. But later was told that the server that we need to implement this script is an MP-RAS (NCR Unix) server on which i found mmin option of the find command doesnt work.:wall: Can anybody please let me know the... (1 Reply)
Discussion started by: utkarsh
1 Replies

5. HP-UX

NCR Unix MP-RAS - Mail not working

I am getting the following error when I send mail to any domain say abc123@xyz.com Not delivered to :due to 11 transfer failure (mail: Error #22 'Surrogate command failed ', rc =11) En Route to: xyz.com!abc123 =======surrogate command========== :/user/bin/uux -username -xyz.com!rmail... (13 Replies)
Discussion started by: rush143
13 Replies

6. IP Networking

Changing IP address on NCR UNIX

Can someone assist please. I am trying to change IP address on NCR UNIX using tcpconfig but the address wont change!! Using ifconfig -a I still see the old address! This is on an NCR S24 server. (3 Replies)
Discussion started by: Vusi Boutu
3 Replies

7. Filesystems, Disks and Memory

Mount NCR Unix disk on Linux box

Hi all I have an NCR UNIX hard disk I need to mount it on a Linux box The FS Type in fdisk on linux is '63' for the partition How can i mount on my linux box ? what is kernel module i needed ? (6 Replies)
Discussion started by: yasser202
6 Replies

8. Infrastructure Monitoring

NCR unix snmp agent

Good Day, I have requirement to monitor a number of NCR unix server for our unix team. As the System Management product that we use in out company does not have an agent for NCR unix I am investigating the SNMP route. I got the unix guys to enable SNMP however, it seems the default MIB that is... (0 Replies)
Discussion started by: priteshj
0 Replies

9. Filesystems, Disks and Memory

Help - NCR Unix 3.02 MP-RAS

Hi, I am new to the UNIX operating system and would realy appreciate some answers to these problems. I have a unix box (Actually several of them throughout the different locations) that have NCR MP-RAS 3.02.x.x (with multiuser and possibly security packages installed.) Originally they had 2gb... (4 Replies)
Discussion started by: ad7_98
4 Replies
Login or Register to Ask a Question
ntp_gettime(2)							   System Calls 						    ntp_gettime(2)

NAME
ntp_gettime - get local clock values SYNOPSIS
#include <sys/timex.h> int ntp_gettime(struct ntptimeval *tptr); DESCRIPTION
The ntp_gettime() function reads the local clock value and dispersion, returning the information in tptr. The ntptimeval structure contains the following members: struct ntptimeval { struct timeval time; /* current time (ro) */ int32_t maxerror; /* maximum error (us) (ro) */ int32_t esterror; /* estimated error (us) (ro) */ }; RETURN VALUES
Upon successful completion, ntp_gettime() returns the current clock state (see <sys/timex.h>). Otherwise, it returns -1 and sets errno to indicate the error. ERRORS
The ntp_gettime() function will fail if: EFAULT The tptr argument points to an invalid address. The ntp_gettime() function will fail for 32-bit interfaces if: EOVERFLOW The size of the time.tv_sec member of the ntptimeval structure pointed to by tptr is too small to contain the correct number of seconds. SEE ALSO
xntpd(1M), ntp_adjtime(2) SunOS 5.11 9 Nov 1999 ntp_gettime(2)