I'm trying to deploy my default project with scrapyd using the "scrapy deploy default" command.
I receive the following error:
Server response (200):
{"status": "error", "message": "OSError: [Errno 13] Permission denied: 'logs'"}
I've tried running the "scrapy deploy default" both as root and user.
I've also tried changing both the write permissions and the user/group permissions the of the logs directory, which resides in same directory as the spiders directory
-rw-rw-r-- 1 ubuntu root 0 Dec 19 14:54 __init__.py
-rw-rw-r-- 1 ubuntu root 739 Dec 19 14:54 items.py
drwxr-xr-x 3 root root 4096 Dec 27 13:15 logs/ <== tried changing both user and group for this dir
-rw-rw-r-- 1 ubuntu root 18232 Dec 19 14:54 pipelines.py
-rw-rw-r-- 1 ubuntu root 1812 Dec 27 13:19 settings.py
drwxrwxr-x 2 ubuntu root 4096 Dec 23 09:39 spiders/
Is there another logs directory or what could be wrong?