Não é possível abrir / var / log / sysstat / sa20: nenhum arquivo ou diretório

1

Eu tenho:

mona@pascal:~$ cat /etc/default/sysstat
#
# Default settings for /etc/init.d/sysstat, /etc/cron.d/sysstat
# and /etc/cron.daily/sysstat files
#

# 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"

e depois:

mona@pascal:~$ sudo sar -d
Cannot open /var/log/sysstat/sa20: No such file or directory
Please check if data collecting is enabled in /etc/default/sysstat

Você pode sugerir uma correção?

Ubuntu 14.04
    
por Mona Jalal 20.10.2016 / 21:25

1 resposta

4

Abra /etc/default/sysstat usando seu editor de arquivos favorito e altere ENABLED="false" para ENABLED="true"

vi /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"
----

Reinicie o sysstat: sudo service sysstat restart

e agora você está aqui!

    
por Bibin Joseph 02.06.2017 / 08:16