Linux下运行的Web服务器Apache,默认日志文件是不分割的,一个整文件既不易于管理,也不易于分析统计。安装cronolog后,可以将日志文件按时间分割,易于管理和分析。
在Ubuntu下载完cronolog.tar.gz包以后,解压进入cronolog目录,运行
./configure 命令时,报以下错误:
checking build system type… i686-pc-linux-gnu
checking host system type… i686-pc-linux-gnu
checking whether make sets $(MAKE)… yes
checking for gcc… no
checking for cc… no
checking for cc… no
checking for cl… no
configure: error: no acceptable C compiler found in $PATH
执行make后,
提示:No targets specified and no makefile found.Stop.
执行make install后
提示:No rule to make target ‘install’.Stop.
进过上网查询,原因是系统没有安装gcc组件导致的,
sudo apt-get install gcc
执行完上述指令再安装cronolog,就没有问题了。