求助军哥,lnmpa切割日志提示:Permission denied
求助军哥,lnmpa切割日志提示:-bash: ./cut_nginx_logs.sh: Permission denied按照论坛的日志切割教程
https://bbs.vpser.net/viewthread.php?tid=2402&highlight=%E6%97%A5%E5%BF%97
上传后我就执行:./cut_nginx_logs.sh
然后就提示:
-bash: ./cut_nginx_logs.sh: Permission denied
lnmp0.9再安装的lnmpa。
请教军哥,
是我哪里设置错了吗?
cut_nginx_logs.sh:
#!/bin/bash
#function:cut nginx log files for lnmp v0.5 and v0.6
#author: http://lnmp.org
#set the path to nginx log files
log_files_path="/home/wwwlogs/"
log_files_dir=${log_files_path}$(date -d "yesterday" +"%Y")/$(date -d "yesterday" +"%m")
#set nginx log files you want to cut
log_files_name=(access vpser licess)
#set the path to nginx.
nginx_sbin="/usr/local/nginx/sbin/nginx"
#Set how long you want to save
save_days=30
############################################
#Please do not modify the following script #
############################################
mkdir -p $log_files_dir
log_files_num=${#log_files_name[@]}
#cut nginx log files
for((i=0;i<$log_files_num;i++));do
mv ${log_files_path}${log_files_name}.log ${log_files_dir}/${log_files_name}_$(date -d "yesterday" +"%Y%m%d").log
done
#delete 30 days ago nginx log files
find $log_files_path -mtime +$save_days -exec rm -rf {} \;
$nginx_sbin -s reload 求助军哥帮我看看吧。 chmod +x cut_nginx_logs.sh 谢啦军哥,
完美解决。
页:
[1]