PermissionError: [Errno 13] Permission denied: ‘/home/xxx/xxx_script/log/import.log‘

PermissionError: [Errno 13] Permission denied: '/home/xxx/xxx_script/log/import.log'

切换root用户,root权限去修改指定文件权限

su root

进入文件夹看权限

cd /home/xxx/xxx_script/
ll

把权限都改正过来,再用ll查看权限

chown -R [用户] import.log

看跑脚本的是用什么用户,需要切换用户的话su [用户]

cd /home/xxx/xxx_script/bin
/bin/sh /home/xxxx/xxxx_script/bin/day_import.sh

你可能感兴趣的:(linux,ubuntu,centos)