- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- trimming acct loggings
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-28-2001 04:34 AM
06-28-2001 04:34 AM
trimming acct loggings
Is this possible?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2001 07:17 AM
06-28-2001 07:17 AM
Re: trimming acct loggings
Yes you can.
1. Go in sam
2. Auditing and Security.
3. Audited users.
4. Convert to trusted system , this will audit all the users by default.
5. Modify ( right button in motif : popup or action menu in ascii mode ) the users list to audit the users you want to aaudit.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2001 07:22 AM
06-28-2001 07:22 AM
Re: trimming acct loggings
'trusted environment'. I guess I would have to say, No I don't believe you can do that. A trusted system is a trusted 'SYSTEM'.
But, you could do something about keeping their .sh_history and write a script to keep these for your review to see what a user is keying on the command line. I've done this when I'm watching users.
Now others may come up with some more ideas..or maybe some third party software to help with this.
Just a thought,
Rita
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2001 07:39 AM
06-28-2001 07:39 AM
Re: trimming acct loggings
You can also get some very rudimentary accounting information (logons) from 'last' and 'lastb'.
To enable logging successful logons, do:
# touch /var/adm/wtmp
# chmod 644 /var/adm/wtmp
To enable logging unsuccessful ones:
# touch /var/adm/btmp
# chmod 644 /var/adm/btmp
These will grow without bounds. To empty them, do:
# cat /dev/null > /var/adm/[w|b]tmp
To manipulate records in these files, use 'fwtmp'.
To see the last three successful logins for 'root', for example, do:
# last -R -3 root
Take a look at the man pages for 'last', for 'fwtmp' and for 'acct' [1M] for more information.
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2001 09:35 AM
06-28-2001 09:35 AM
Re: trimming acct loggings
By making btmp readable only by root, these mistakes are protected.
Another auditing feature that is often overlooked is the shell history file which is in $HOME/.sh_history by default.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2001 12:37 AM
07-02-2001 12:37 AM
Re: trimming acct loggings
Starting accounting and then putting it just
on 1 user, does that reduce the workload
for the machine (as to putting accounting on all users)?
I need minimal inpact on the machine and i've tested it on a test-machine, but that wasn't a "real" situation.