I accidentally removed the whole /var/log folder and all its content. I don’t mind losing the old logs, but no new ones are being created. How can I solve this?
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 @aljrico,
If you’ve removed only the folder /var/log, it’s fine. You’ll just need to recreate the folder with the proper permissions and ownership. I’ve just checked the perms on my end :
- drwxrwxr-x 12 root syslog 4096 Jun 3 06:25 /var/log
so you need to create it like that:
mkdir /var/log
chmod 775 /var/log
chown root:syslog /var/log
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.