- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- can't login my account Error Message: Datalog Err...
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
Discussions
Discussions
Discussions
Forums
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
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
тАО08-29-2008 06:17 AM
тАО08-29-2008 06:17 AM
I have an account called demo in my hp-ux system for reason I can't login any more I have this error message:
Error Message: Datalog Error, Can't write to file, Check file system space or file size.
Other accounts can login perfectly, only demo account is unable to login.
Did anybody has this problem before?
Alex
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-29-2008 06:59 AM
тАО08-29-2008 06:59 AM
Re: can't login my account Error Message: Datalog Error, Can't write to file, Check file system space o
Log in as root
grep demo /etc/passwd
You might get some idea what this account is all about.
You can do a su - demo to get more information.
It appears to me that the home directory of that user may not be there or accessible to that user.
But not knowing where the user came from all I can do from here is provide a path for you to discover the problem.
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
тАО08-29-2008 08:00 AM
тАО08-29-2008 08:00 AM
Re: can't login my account Error Message: Datalog Error, Can't write to file, Check file system space o
Looks like a VxFS error and the home filesystem may be full. Login as root and check the filesystem using "bdf" If it is full you have to cleanup or extend the volume/filesystem.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-29-2008 08:28 AM
тАО08-29-2008 08:28 AM
Re: can't login my account Error Message: Datalog Error, Can't write to file, Check file system space o
Thank you
I have 0 space available and %100 space used, how I clean the system files? Which are those files?
Alex
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-29-2008 08:31 AM
тАО08-29-2008 08:31 AM
Re: can't login my account Error Message: Datalog Error, Can't write to file, Check file system space o
What is 100% used, /home or /
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-29-2008 08:35 AM
тАО08-29-2008 08:35 AM
Re: can't login my account Error Message: Datalog Error, Can't write to file, Check file system space o
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-29-2008 08:39 AM
тАО08-29-2008 08:39 AM
Re: can't login my account Error Message: Datalog Error, Can't write to file, Check file system space o
Filesystem kbytes used avail %used Mounted on
/dev/vg00/lvol3 12142140 10927931 0 100% /
/dev/vg00/lvol1 47829 23570 19476 55% /stand
/dev/vg00/lvol9 288157 220479 38862 85% /var
/dev/vg00/lvol8 490645 308942 132638 70% /usr
/dev/vg00/lvol7 30597 14272 13265 52% /tmp
/dev/vg00/lvol6 251285 225640 516 100% /home2
/dev/vg00/lvol5 19861 15277 2597 85% /home
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-29-2008 08:44 AM
тАО08-29-2008 08:44 AM
Re: can't login my account Error Message: Datalog Error, Can't write to file, Check file system space o
For /, its not obvious to have anything which should occupy the space, rather it is static FS.Look for extra files, which you can remove safely...tars...core files...Else, you may want to increase it. Search the forum for increasing /
For /home2, it may be increased online if your users are stubborn enough to disagree deleting any file from their login locations. You can do a du -xk /home2|sort -k1nr and check for consumtions....
Anshu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-29-2008 08:45 AM
тАО08-29-2008 08:45 AM
Re: can't login my account Error Message: Datalog Error, Can't write to file, Check file system space o
---You should have OnlineJFS for this. :)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-29-2008 09:39 AM
тАО08-29-2008 09:39 AM
SolutionPls check is there any core file is create in / using
# find / -name core or u can grep it
============================================
for home directory use
#du -kx /home2 |sort -nr |more
Regards
Prashant
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-29-2008 09:49 AM
тАО08-29-2008 09:49 AM
Re: can't login my account Error Message: Datalog Error, Can't write to file, Check file system space o
Alex
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-29-2008 10:08 AM
тАО08-29-2008 10:08 AM