- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Syslog error NetISAM: read failed
Operating System - HP-UX
1821244
Members
2791
Online
109632
Solutions
Forums
Categories
Company
Local Language
юдл
back
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
юдл
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Topic Options
- 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
тАО01-31-2007 08:12 PM
тАО01-31-2007 08:12 PM
Syslog error NetISAM: read failed
Hi:
I am getting this message in syslog:
Jan 31 17:16:08 primario krsd[1845]: Delay time is 300 seconds
Jan 31 17:16:08 primario sfd[1846]: daemon already running.
Jan 31 17:16:10 primario sfd[1875]: starting the daemon.
Jan 31 18:19:40 primario /usr/dt/bin/rpc.ttdbserver[2972]: NetISAM: read failed
Jan 31 18:19:40 primario NetISAM[2972]: Fatal error: read failed - UNIX errno 17
Jan 31 18:19:40 primario inetd[946]: rpc.ttdbserver/tcp: Exit status 1
Jan 31 18:19:40 primario inetd[946]: getsockname() failed for rpc.ttdbserver/tcp errno(216),Deleting Service
Jan 31 18:20:07 primario xntpd[1388]: synchronized to LOCAL(1), stratum=3
What do you think is happening ?
Thanks all
I am getting this message in syslog:
Jan 31 17:16:08 primario krsd[1845]: Delay time is 300 seconds
Jan 31 17:16:08 primario sfd[1846]: daemon already running.
Jan 31 17:16:10 primario sfd[1875]: starting the daemon.
Jan 31 18:19:40 primario /usr/dt/bin/rpc.ttdbserver[2972]: NetISAM: read failed
Jan 31 18:19:40 primario NetISAM[2972]: Fatal error: read failed - UNIX errno 17
Jan 31 18:19:40 primario inetd[946]: rpc.ttdbserver/tcp: Exit status 1
Jan 31 18:19:40 primario inetd[946]: getsockname() failed for rpc.ttdbserver/tcp errno(216),Deleting Service
Jan 31 18:20:07 primario xntpd[1388]: synchronized to LOCAL(1), stratum=3
What do you think is happening ?
Thanks all
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-31-2007 09:28 PM
тАО01-31-2007 09:28 PM
Re: Syslog error NetISAM: read failed
Hi Ignacio,
You can disable this rpc.ttdbserver/tcp if your not using that, see below, or can contact local hp for that warning..
1. Disable the rpc.ttdbserver by commenting out the following line in
/etc/inetd.conf
#rpc xti tcp swait root /usr/dt/bin/rpc.ttdbserver 100083 1
/usr/dt/bin/rpc.ttdbserver
2. Restart the internet daemon with:
inetd -c
You can disable this rpc.ttdbserver/tcp if your not using that, see below, or can contact local hp for that warning..
1. Disable the rpc.ttdbserver by commenting out the following line in
/etc/inetd.conf
#rpc xti tcp swait root /usr/dt/bin/rpc.ttdbserver 100083 1
/usr/dt/bin/rpc.ttdbserver
2. Restart the internet daemon with:
inetd -c
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-31-2007 11:18 PM
тАО01-31-2007 11:18 PM
Re: Syslog error NetISAM: read failed
Hello:
Ok, thanks, could you explain lightly to me what is this service for ?
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-01-2007 12:05 AM
тАО02-01-2007 12:05 AM
Re: Syslog error NetISAM: read failed
rpc.ttdbserver is the ToolTalk database server (used by the ToolTalk
messaging system) that performs filename mapping. rpc.ttdbserver
essentially replaces the BMS messaging system in VUE.
ToolTalk is a SunSoft product for network data interchange. In 1992, several
companies formed a consortium to develop what has become the Common Desktop
Environment (CDE), which uses ToolTalk as a messaging system. Both Solaris
2.6 and HP-UX 10.20 support CDE; therefore, they also support the newer version
of ToolTalk (1.1).
Since CDE on HP-UX 10.20 uses a form of socket communication, it does not
REQUIRE that the ToolTalk daemon be running for proper functionality.
How to disable it ?
1. Have all users log out of CDE.
2. Login at the command line as root. Or, better yet,
use telnet or rlogin.
3. Stop CDE-login
/sbin/init.d/dtlogin.rc stop
4. Prevent rpc.ttdbserver from restarting:
A. Comment out rpc.ttdbserver in /etc/inetd.conf.
Note: There will only be one line that contains a reference to
rpc.ttdbserver. Insert a '#' before the line, and save
the /etc/inetd.conf file. So the line in
/etc/inetd.conf would look similar to this line:
# rpc stream tcp swait root /usr/dt/bin/rpc.ttdbserver 100083 1 /usr/dt/bin/rpc.tt dbserver
B. Reread the inetd.conf file: /etc/inetd -c
5. Kill rpc.ttdbserver and verify it stays away:
kill `ps -e | grep rpc.ttdb | awk '{ print $1 }' `
Verify that rpc.ttdb is not running: ps -ef |grep rpc.ttdb should return nothing.
For further information check
http://www.docs.hp.com/en/B1171-90163/index.html
messaging system) that performs filename mapping. rpc.ttdbserver
essentially replaces the BMS messaging system in VUE.
ToolTalk is a SunSoft product for network data interchange. In 1992, several
companies formed a consortium to develop what has become the Common Desktop
Environment (CDE), which uses ToolTalk as a messaging system. Both Solaris
2.6 and HP-UX 10.20 support CDE; therefore, they also support the newer version
of ToolTalk (1.1).
Since CDE on HP-UX 10.20 uses a form of socket communication, it does not
REQUIRE that the ToolTalk daemon be running for proper functionality.
How to disable it ?
1. Have all users log out of CDE.
2. Login at the command line as root. Or, better yet,
use telnet or rlogin.
3. Stop CDE-login
/sbin/init.d/dtlogin.rc stop
4. Prevent rpc.ttdbserver from restarting:
A. Comment out rpc.ttdbserver in /etc/inetd.conf.
Note: There will only be one line that contains a reference to
rpc.ttdbserver. Insert a '#' before the line, and save
the /etc/inetd.conf file. So the line in
/etc/inetd.conf would look similar to this line:
# rpc stream tcp swait root /usr/dt/bin/rpc.ttdbserver 100083 1 /usr/dt/bin/rpc.tt dbserver
B. Reread the inetd.conf file: /etc/inetd -c
5. Kill rpc.ttdbserver and verify it stays away:
kill `ps -e | grep rpc.ttdb | awk '{ print $1 }' `
Verify that rpc.ttdb is not running: ps -ef |grep rpc.ttdb should return nothing.
For further information check
http://www.docs.hp.com/en/B1171-90163/index.html
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Learn About
News and Events
Support
© Copyright 2025 Hewlett Packard Enterprise Development LP