how can i create new file in /var/log directory using python language in OSX leopard? i tried to do it using os.open function but i get "permission denied"
thanks in advance
|
|
|||
|
|
|
Only root can write in
Maybe consider using the |
||||||||
|
|
|
It probably failed because /var/log has user set to root and group set to wheel. Try running your python code as root and it will probably work. |
||
|
|
|
You can create the log file as root and then change the owner to the user your script is run as
where mylogfile is your logfile and myuser is the user the script will be run as also look into logrotate |
|||
|
|