Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"Cannot open /var/log/sysstat/sa16 Please check if data collecting is enabled in /etc/default/sysstat"

Tags:

linux

io

unix

sar

I want to look at disk I/O info on my machine/in general. Found some help from https://unix.stackexchange.com/questions/55212/how-can-i-monitor-disk-io

After recently installing sysstat package and attempting to use sar command (I assume) as that person did, I was instead prompted to check if data collecting was enabled in the above specified file.

After:

sudo vim /etc/default/sysstat

I changed the only line of uncommented code:

ENABLED="false"

to:

ENABLED="true"

However, I am still not able to run sar and get the expected output in my terminal.

like image 236
David Tahvildaran Avatar asked Aug 17 '17 01:08

David Tahvildaran


5 Answers

I assume that you have installed the sysstat utility properly,

apt-get install sysstat

STEP 1

Open "/etc/default/sysstat" using your favorite file editor and change ENABLED="false" to ENABLED="true"

vim /etc/default/sysstat
----
# Should sadc collect system activity informations? Valid values
# are "true" and "false". Please do not put other values, they
# will be overwritten by debconf!
ENABLED="true"
----

STEP 2

change the collection interval from every 10 minutes to every 2 minutes. So that we get metrics for every two minutes, you can change the interval as per your need.

----
vim /etc/cron.d/sysstat
Change
5-55/10 * * * * root command -v debian-sa1 > /dev/null && debian-sa1 1 1
To
*/2 * * * * root command -v debian-sa1 > /dev/null && debian-sa1 1 1
----

STEP 3

Next we need to restart the sysstat service.

service sysstat restart
Or
/etc/init.d/sysstat restart

For reference you can click here

like image 92
Liju Kuriakose Avatar answered Oct 11 '22 12:10

Liju Kuriakose


I install sysstat when I provision new Ubuntu machines so it's scripted.

apt-get install sysstat -y
sed -i 's/false/true/g' /etc/default/sysstat
sed -i 's/5-55\/10/*\/2/g' /etc/cron.d/sysstat
service sysstat restart

In 15 minutes run this command to see some data ...
sar -d

like image 39
Curious Sam Avatar answered Oct 11 '22 12:10

Curious Sam


Try restarting the service and see the data collects or not

$ sudo service sysstat restart 
like image 34
Javeed Shakeel Avatar answered Oct 11 '22 12:10

Javeed Shakeel


Please follow the steps below to get it to work: https://www.crybit.com/sysstat-sar-on-ubuntu-debian/

Open /etc/default/sysstat using your favorite editor and change ENABLED="false" to ENABLED="true"

$ vi /etc/cron.d/sysstat

Change

5-55/10 * * * * root command -v debian-sa1 > /dev/null && debian-sa1 1 1

To:

*/2 * * * * root command -v debian-sa1 > /dev/null && debian-sa1 1 1

Then:

$ service sysstat restart
like image 2
Linda Avatar answered Oct 11 '22 11:10

Linda


just restart it to reload modified configuration :

sudo systemctl restart sysstat.service

it works for me :)

like image 1
Ali Avatar answered Oct 11 '22 10:10

Ali