- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Troubleshooting
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
12-24-2001 11:20 AM
12-24-2001 11:20 AM
I am trying to put together a best practices document for troubleshooting so that I can pass this on to my jr admins.
I am thinking of including such things as:
Printer troubleshooting
Disk/lvm Troubleshooting
etc....
This is a broad topic, so if anyone has put together any type of documentation for this please let me know. All ideas are welcomed.
When I am finished with the document I will post it out here for all who want to use it.
Thanks and have a happy holiday all of you.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-24-2001 03:21 PM
12-24-2001 03:21 PM
SolutionCreate a volume group
Add disk to VG in a MC/SG environment
How to add/modify printer; how to cancel print job...
..and so on..and so on..
BUT for troubleshooting;...I do this:
1. Any new issue that was resolved gets typed up and added to the 'special file'..doesn't matter who figured out the fix..me..him..or HP Tech Support. It's sort of like a diary really..
2. If it's not in the Documentation Book and it not already in the 'special file' than look it up on the ITRC Forums.
Check manpages; HP Manuals, etc.
3. If it's not resolved using step 1 or 2 than call HP Tech Support; and proceed with step 1 (document in special file)
Special file is just a file in my home directory..that I give all UNIX Admin folks access to for those FYI...tips & tricks and "say what'..
No real format...just info to search on. Like I said more like a diary of notes.
Rgrds,
Rita
..by the way..the special file gets read more than anything around some days for those "I remember seeing something like that error about 6 months ago..what was the fix...oh yeah...."
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-24-2001 03:26 PM
12-24-2001 03:26 PM
Re: Troubleshooting
Have you tried this link yet?
http://us-support3.external.hp.com/cki/bin/doc.pl/sid=5074748e13c79bb361/screen=ckiHome
This is the technical knowledge base which contains both software and hardware KBs of common system problems, issues and solutions.
Hope this helps. Regards.
Steven Sim Kok Leong
Brainbench MVP for Unix Admin
http://www.brainbench.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-26-2001 10:45 AM
12-26-2001 10:45 AM
Re: Troubleshooting
I also run shell scripts that document how each server is configured and also place those on our Intranet server.
The real benefit lies in that our Intranet server is located at a different physical location than the HP-UX servers. So in the event of a major disaster, I have one more remote ( and survivable ) source of documentation.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-27-2001 07:51 AM
12-27-2001 07:51 AM
Re: Troubleshooting
# pg find_core.ksh
#!/bin/ksh
# 09/05/2001 mjg
# finds core files and sends mail about it
####################################################
set -u
### remove old files ###
ls /tmp/findcore_*|xargs -i rm -f {}
### init variables for new files ###
REPORT=/tmp/findcore_report.$$
ERRORS=/tmp/findcore_errors.$$
### redirect standard error for the duration of the script ###
exec 2>$ERRORS
### date stamp report ###
echo "Process started at "`date` >$REPORT
echo "host system: "`hostname` >>$REPORT
### find core files ###
cd /
CNT=`find / -name "core" -print |xargs -i ls -l {} | tee -a $REPORT|wc -l`
STATUS=$?
if [ $? -gt 0 ]; then
echo "errors during the find: $STATUS " >>$REPORT
echo "Count = $CNT" >>$REPORT
exit 1
else
echo $STATUS >>$REPORT
echo "Count = $CNT" >>$REPORT
fi
echo "\nProcess temp file listings:">>$REPORT
ls -l /tmp/findcore_* >>$REPORT
### mail the results ###
if [ "$CNT" -gt 0 ]; then
mailx -s "core files report" [e-mail addresses here] <$REPORT
fi
exit $?
### end of script ###
HTH
--
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-27-2001 08:11 AM
12-27-2001 08:11 AM
Re: Troubleshooting
I think you need to turn your jr admins on to this site, as the best place to find solutions.
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-27-2001 09:58 AM
12-27-2001 09:58 AM
Re: Troubleshooting
in my experience it is best to give them a rather solid fundament to build their own experiences on...
So they'll have to understand how:
- the kernel gets started
- the "init" process-tree is working
- the different flavours of login are working (serial, telnet, rlogin, ssh, XDMCP)
- devices are used in UN*X
- LVM is working
- the file-tree is organized
- to read man-pages
- to use your local documentation
- TCP/IP is working (e.g. the importance of always using the netmask-parameters/-options)
- compare the 'is'-state with the 'should-be'-state (i.e. documented printouts/html-pages of ALL the config files)
- X-windows is working (i.e. X-resources, X-properties, and such)
- filesystems are working (CDFS, VxFS, HFS, NFS, PFS-RRIP)
- printing is done on UN*X systems (System V, BSD LPR, JetAdmin, HPNP)
and of course a lot more, depending on your local applications (Oracle-RDBMS, SAP R/3, PeopleSoft, Informix-RDBMS), and your local middleware (MC/ServiceGuard, DCE, CORBA).
A history of the more or less recent events would be quite useful to know what used to happen on your site...
Even if this is NOT the HPADM mailing-list, I would rather appreciate a "summary" ;-)
Good luck and a happy new year,
Wodisc
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-27-2001 10:09 AM
12-27-2001 10:09 AM
Re: Troubleshooting
how about sharing some of your docs with us?
Richard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-27-2001 11:29 AM
12-27-2001 11:29 AM
Re: Troubleshooting
Thank you for the input so far as it has been just as good as ever.
Rita/Tom, Can you please share some of the documentation with me that you have put together. If you want to send it as attachments here go ahead, or you may send it to me at my email: frank.grosberger@chsli.org
Thanks again all, I will summarize and post a master copy of the document when completed.
BTW, my junior admins already use this site but I want them to be independent thinkers as well.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-27-2001 03:42 PM
12-27-2001 03:42 PM
Re: Troubleshooting
One of my 'favs' is not so much a document, but a form with commands on it..
Called:
Adding disk to existing VG in a MC/SG
Another...adding disk to existing VG not in MC/SG
I find the new folks like it cause they can fill in the blanks and follow the commands...checking off as they go to avoid mistakes.
Like I said, I'll send you a few things..if you have anything specific your looking for...let me know.
Rita