Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I compiled the nginx on Ubuntu myself. I start my nginx with -c nginx.conf parameter. In my nginx.conf file, I try to turn off error log with but failed.

error_log /dev/null crit;

Still got the error message: nginx: [alert] could not open error log file: open() "/usr/nginx/logs/error.log" failed (2: No such file or directory)

How could I turn off this log or change its location?

share|improve this question
Have you tried removing the error_log declaration (your line)? :) – Sean3z Nov 14 '12 at 2:43
I tried just now, only use access_log, but still got the error message. I didn't create the folder:/home/dist/carrier/nginx/logs. Restarting nginx: nginx: [alert] could not open error log file: open() "/home/dist/carrier/nginx/logs/error.log" failed (2: No such file or directory – Dean Chen Nov 14 '12 at 7:23

1 Answer

up vote 4 down vote accepted

The syntax for disabling the error log is ok, but the docs state that a default logfile is used before the config is read. (which seems reasonable because how would it otherwise tell you you have an error in your config)

Try creating this file by hand with the correct permissions for the user that runs nginx. Or try starting the server as root.

share|improve this answer
That's what I have done. use --prefix when compiling nginx to set the correct logs location and create the folder when installing my nginx service. – Dean Chen Nov 15 '12 at 11:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.