wtmpx file is too big


 
Thread Tools Search this Thread
Operating Systems Solaris wtmpx file is too big
# 1  
Old 12-31-2007
Question wtmpx file is too big

Hi,

I am using Sun Solaris 5.9 OS. I have found a file called wtmpx having a size of 5.0 GB. I want to clear this file using :>/var/adm/wtmpx. My query is, would it cause any problem to the running live system.

Could anyone suggest the best method to clear the file without causing problem to the system.

Thanks & Regards,
P.C.Vijayakumar.
# 2  
Old 12-31-2007
Code:
cat /dev/null > /var/adm/wtmpx
cat /dev/null > /var/adm/wtmp

# 3  
Old 12-31-2007
Question Thanks

Thanks,

would it cause any problem to the running system?

Reg
Vijay
# 4  
Old 12-31-2007
This will work without executing cat.

Code:
> /var/adm/wtmpx
> /var/adm/wtmp

You may want to backup what you have since it may contain audit data.

I would suggest to compress the files when you do the backup.
ie:
Code:
gzip -c /var/adm/wtmpx >/my/backup/path/wtmpx.gz
gzip -c /var/adm/wtmp >/my/backup/path/wtmp.gz

I would suggest to rotate these files on a regular basis.
# 5  
Old 12-31-2007
Thanks

Thanks for the help.

Reg,
Vijay
# 6  
Old 12-31-2007
check the logadm utility. This might work for you.

Code:
logadm          logadm (1m)     - manage endlessly growing log files

# 7  
Old 01-05-2008
Hi Friend, Smilie

Best way is to purge the file

> /var/adm/wtmpx

this command will not effect your system, but you will loss all the information of user who logged in your server before, and first check the permission of file what is that after purging file and befor purging file if it chaged due to some resion then system will not boot after reboot then you need to reboot m/c in sigle user mode and create these empty file with same permission

Smilie

Thanks
Pravin Landge
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Getting information from the wtmpx file

Hi, I tried running the command "last" in the server to check the users that were last logged into the system. However, I get this error : root@csidblog:# last /var/adm/wtmpx: Value too large for defined data type How do I proceed to get this info? I read some forums suggesting to use... (2 Replies)
Discussion started by: anaigini45
2 Replies

2. Solaris

Wtmpx File Permissions Question

Hi all, I have been tasked to change permissions on the wtmpx file to 640. Currently the permissions are at 644. My question is will anything be affected if I change the permissions as shown? Thanks in advance. Derek (2 Replies)
Discussion started by: Derk Berk
2 Replies

3. Solaris

Something is removing/deleting my wtmpx file?

hi, we have a solaris 10 box that was handled by a different sysadmin before & now it is turned over to us for system administration. our concern is that if we issue the "last" command, it usually says "wtmp begins current day current month date 02:30". just like this "wtmp begins Thu Mar 7... (6 Replies)
Discussion started by: booghaw
6 Replies

4. Solaris

WTMPX File corrupted

Hi All I work on solaris 8, 9 and 10 platforms and have encountered an error which is my wtmpx files appear to be corrupted as all entries contain the date 1970 (the birth of unix). Now this is obviously not the case, so my query is: 1 - Can the existing wtmpx files be manipulated to... (6 Replies)
Discussion started by: drestarr96
6 Replies

5. UNIX for Dummies Questions & Answers

How big is too big a config.log file?

I have a 5000 line config.log file with several "maybe" errors. Any reccomendations on finding solvable problems? (2 Replies)
Discussion started by: NeedLotsofHelp
2 Replies

6. Solaris

wtmpx file

What could possibly happen if wtmpx file got deleted by mistake? Thanks, (8 Replies)
Discussion started by: Pouchie1
8 Replies

7. UNIX for Advanced & Expert Users

wtmpx file is not updating

Hi in my solaris 9 system wmptx file is not updating so it is not recording any login or logout or any other entry. can any one tell me how to solve this problem (0 Replies)
Discussion started by: aaysa123
0 Replies

8. UNIX for Dummies Questions & Answers

wtmpx file

Hello everybody: the wtmpx file on my Sol8 machine, got so big (2GB), that my root partition is almost full now, can I empty that file, I read about it that it contains database of user access and auditing, so in case I emptied it will it affect my system?? Thanks alot (3 Replies)
Discussion started by: aladdin
3 Replies

9. UNIX for Advanced & Expert Users

how to delete entry in file "wtmpx"(/var/adm/wtmpx)

Do someone know how to delete entry(some lines) in file "wtmpx" that command "last" use it. this file is binary so I cannot edit directy. ========================= #last root pts/1 noc Fri Mar 3 22:04 still logged in root pts/1 noc Fri Mar 3 22:01 - 22:02 ... (4 Replies)
Discussion started by: arm_naja
4 Replies

10. UNIX for Dummies Questions & Answers

How to view a big file(143M big)

1 . Thanks everyone who read the post first. 2 . I have a log file which size is 143M , I can not use vi open it .I can not use xedit open it too. How to view it ? If I want to view 200-300 ,how can I implement it 3 . Thanks (3 Replies)
Discussion started by: chenhao_no1
3 Replies
Login or Register to Ask a Question