1
Itβs problem related with SELinux
. If You run locally, then You have full rights to write to log file.
If You run server with apache, then apache must have full rights to write to file.
To check it, login as apache sudo su - apache
and try to access to log file.
Solution is simple: put log file in /var/log
folder. Or create /var/log/myapp
folder and give it full access chmod 777 /var/log/myapp
.
import logging
logging.basicConfig(filename='/var/log/myapp/models.log',level=logging.INFO)
logging.info('Staring execution. Models for db tables')
0
The process needs execute (not only read) access on the directory and parent directories. The best way would be to log in as the user the process is running and try to create the file manually. My guess is you will get a permission error. Create the directories and grant relevant permissions for the directories.
- Python2.7 django 1.10.3. Can't use oauth2app
- Failed to install dependency on Bluemix with a personal setup pypiserver
- How to connect button and field value with jQuery for object in for loop from template
- Gunicorn settings for virtualenvwrapper
Source:stackexchange.com