- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: syslog su messages
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
06-18-2005 05:40 PM
06-18-2005 05:40 PM
I know that using the syslog parser. I can prune it and I also have other means of extracting the relevant data from the syslog or stat logging su to a separate log file. But I want to understand why am I seeing these root is definitely not su ing to Oracle account. can this be from the Oracle OEM product? or the RAC? Any inputs will be valuable..
Thanks in advance.
Devesh
-------------------------------------
Jun 16 13:15:08 radprod su: + tty?? root-oracle
Jun 16 13:16:06 radprod above message repeats 37 times
Jun 16 13:16:08 radprod su: + tty?? root-oracle
Jun 16 13:35:17 radprod su: + tty?? root-oracle
Jun 16 13:36:06 radprod above message repeats 39 times
Jun 16 13:36:18 radprod su: + tty?? root-oracle
Jun 16 13:55:26 radprod su: + tty?? root-oracle
Jun 16 13:56:06 radprod above message repeats 39 times
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2005 05:54 PM
06-18-2005 05:54 PM
Re: syslog su messages
There is a good chance these su attempts are from a cron job as they are repeated every 20m Min. Check your scripts in cron and there logs (cron logs) for clarification.
In case a user is doing this (which I dont really think of!) you need to match the output of last command and syslog by time.
Hope this helps
Sudeesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2005 06:09 PM
06-18-2005 06:09 PM
Re: syslog su messages
most likely thats programmed into your cron log. At my last job we used that to fire up oracle reports and such.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2005 03:21 PM
06-19-2005 03:21 PM
Re: syslog su messages
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2005 03:53 PM
06-19-2005 03:53 PM
Re: syslog su messages
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2005 06:34 PM
06-19-2005 06:34 PM
Re: syslog su messages
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2005 08:53 AM
10-28-2005 08:53 AM
Re: syslog su messages
Did you ever figure out where these were coming from? I just discovered this myself and do not know what is causing them. Every Oracle database server that I have looked at does this regularly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2005 10:15 AM
10-28-2005 10:15 AM
SolutionWe have similar logins at my site. I traced them a while back to the MC/SG installation. If you have MC/SG on your servers then that's a good starting point to look for those su logins. Especially the pkg control script which startups the HA applications.
The MC/SG pkg control script runs as root and is responsible for su'ing to the app id and either starting up or shutting down the associated application, one of them being Oracle...or...
You can simply search files for the "su -" pattern.
# find / -type f -exec grep -il "su -" {} \;
hope it helps!!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2005 10:37 AM
10-28-2005 10:37 AM
Re: syslog su messages
We're not running ServiceGuard. I think the messages have something to do with backups.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-31-2005 06:14 AM
10-31-2005 06:14 AM
Re: syslog su messages
Search for files owned by root that contain the su string...
# find / -type f -user root -exec grep -il "su -" {} \;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-31-2005 10:09 AM
10-31-2005 10:09 AM
Re: syslog su messages
It our case it turned out to be NetBackup running Oracle backup scripts.