Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我像这样删除 node.js 日志文件。
cd /var/log rm node.log
现在我创建了一个名为“node.log”的日志文件,但该文件不是由 node.js 写入的。我应该怎么做?谢谢!!
节点将继续写入旧的(未链接,但尚未删除,因为它仍处于打开状态)日志文件。
最简单的方法是重启节点。