- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- rpc.ttdbserver process with high %CPU hangs
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
Forums
Discussions
Discussions
Discussions
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
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
05-16-2001 12:17 PM
05-16-2001 12:17 PM
We just bought two new B2000 boxes. I installed extra 256MB RAM and an 18 GB hard dirve in each of them.
I experined two peoblems which might be realted to eachother.
- SAM crash (with coredumped) when started from by pressing SAM icon.
- the process rpc.ttdbserver hangs all the time with ~%91 of the CPU.
I checked the dr_dt and it contains no errors.
Any help will be appreciated.
Jim
PS: I am new to this forum so please explain to me how to assign points.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2001 11:06 PM
05-16-2001 11:06 PM
Re: rpc.ttdbserver process with high %CPU hangs
Welcome to the forum.
It looks like rpc.ttdb is misbehaving and this may have caused the core dump from sam. Did you install the latest General Release Patches after installing the OS? Have you tried switching back and forth to a different run-level in order to restart CDE?
Vincent
ps: click the "assign points" button next to the answers to assign points.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2001 11:27 PM
05-16-2001 11:27 PM
Solutionwhat & file on core file ?
contents of syslog.log ?
What's the O/S
Make sure patched recently for CDE
Any funnies ie nfs mounted $Home dirs ?
Try this ?
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.
6. To delete the TT_DB-directories there are two possibilities:
A. for i in ` find / -name TT_DB` do
# Remove all files under each TT_DB subdirectory found
# under each local file system mount point. It doesn't
# matter if one of the mount points does not have a
# TT_DB subdirectory, since the 'rm -f' will not produce
# an error. rm -rf $i/* done
Note that solution 6A searches nfsmounts as well,
which may not be the behavior wanted.
B. for i in `df -F vxfs | awk '{ print $1 }'` do
# Remove all files under each TT_DB subdirectory found
# under each local file system mount point. It doesn't
# matter if one of the mount points does not have a
# TT_DB subdirectory, since the 'rm -f' will not produce
# an error. rm -rf $i/TT_DB/* done
7. Uncomment rpc.ttdbserver in /etc/inetd.conf and
execute this command to reread inetd.conf: /etc/inetd -c
8. Start CDE again: /sbin/init.d/dtlogin.rc start
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2001 10:21 AM
05-17-2001 10:21 AM
Re: rpc.ttdbserver process with high %CPU hangs
The OS is HP-UX 11.00
Alex,
Thanks for the detailed steps.
I tried the proceedure you suggested however I faced two problems:
1. Whenever I killed the rpc.ttdbserver process using the command that you suggetsed, it comes (runs) again
2. I could not found the TT_DB directory. It seems to be not existed.
Regards,
Jim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2002 07:31 AM
08-06-2002 07:31 AM
Re: rpc.ttdbserver process with high %CPU hangs
I found a link that may help you to disable this process. I had the same problem and followed these instructions to disable. I still have some quesitons, What does this service do? Why is installed if I do not need it? and why does the latest CDE patches from hp trigger this condition under HP/UX 11.0?
tks,