directadmin cannot show users disk space use

shahab

Verified User
Joined
Aug 4, 2014
Messages
72
Hello

My DirectAdmin shows all new users disk space use "0". the old users have not problem.

When i want to update the disk space ,show this error


Unable to read du_breakdown.list

Details

Unable to open ./data/users/myusername/du_breakdown.list for reading.​


please help me :(
 
Last edited:
It would be great if you could post the output of:
Code:
ls -l /usr/local/directadmin/data/users/myusername/ | grep du_breakdown
 
It would be great if you could post the output of:
Code:
ls -l /usr/local/directadmin/data/users/myusername/ | grep du_breakdown

no result

Capture.JPG
 
Is your DA version higher than 1.4? Don't you have problems with tally?
 
My version is 1.46.2
When i creat a user directadmin dont creat du_breakdown.list file in
/usr/local/directadmin/data/users/myusername/
 
Ah, now I understand you problem, it's a new user :) For new users you need to wait for tally to finish, the file is created only during the tally process. You can call the tally manually for a particular user, if you'd like to:
Code:
cd /usr/local/directadmin
echo "action=tally&value=myusername&type=user" >> data/task.queue
./dataskq d800
 
Ah, now I understand you problem, it's a new user :) For new users you need to wait for tally to finish, the file is created only during the tally process. You can call the tally manually for a particular user, if you'd like to:
Code:
cd /usr/local/directadmin
echo "action=tally&value=myusername&type=user" >> data/task.queue
./dataskq d800

thanks very much :X

can i set cron?
 
Cronjob should be already set to run every night in /etc/cron.d/directadmin_cron. Line:
Code:
20 4 1 * * root echo 'action=reset&value=all' >> /usr/local/directadmin/data/task.queue
 
Cronjob should be already set to run every night in /etc/cron.d/directadmin_cron. Line:
Code:
20 4 1 * * root echo 'action=reset&value=all' >> /usr/local/directadmin/data/task.queue

Automatically dont run this cron :(
When i creat new user directadmin does not creat du_breakdown.list file
 
Back
Top