How do I access my Access.log to view them for problems.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hi there,
In addition to what has already been mentioned, the location of your access log will be different depending on the web service that you are using.
For example for Apache, typically, the access log for Apache on a Linux system would be found in:
You can view the file with a command like:
And for Nginx, the access log might be located at:
You can view the file with a command like:
Hope that this helps!
Best,
Bobby
Hey @zoscubadiver,
What platform are you using? Is it the App Platform or a Droplet?
If you are using App Platform, You can view activity, build, deployment, and runtime logs in App Platform using the control panel, CLI, and API. You can also enable log forwarding to forward application logs to external log providers.
More on that here :
https://docs.digitalocean.com/products/app-platform/how-to/view-logs/
If you are using a Droplet, you’ll need to SSH to it, go to the log’s folder, usually it’s
/var/log/
and fidn the log you are looking for. Then you can try andtail
orgrep
in it.You should enable error.log on your nginx.conf or host configuration file.