Giter Site home page Giter Site logo

Crash Yaws after running about yaws HOT 2 CLOSED

 avatar commented on July 29, 2024
Crash Yaws after running

from yaws.

Comments (2)

vinoski avatar vinoski commented on July 29, 2024

In Erlang, a crash doesn't necessarily indicate a bug, but rather it can mean that an important expectation failed, and the system should not proceed until the problem is corrected. The issue in this case is that Yaws is configured for logging but due to permissions issues, it can't write its logs.

The key element of everything you posted is this:

{{badmatch,
{error,
{handler_not_added,
{open_failed,"/usr/local/var/log/yaws/report.log",eacces}}}}

Getting an EACCES error for a file means "permission denied", so maybe one or more of its parent directories are not accessible to your application, or maybe report.log is not writable by your application.

  • Check permissions on the /usr/local/var/log directories to make sure all have at least 555 (r-xr-xr-x) permissions
  • Check that the /usr/local/var/log/yaws directory is also writable, something like 755 (rwxr-xr-x, for user write) or 775 (rwxrwxr-x, for user and group write) permissions
  • Verify that your application is running as a user or group that has write permissions for /usr/local/var/log/yaws
  • Similarly, verify that the file /usr/local/var/log/yaws/report.log is writable by the user or group your application runs as

If you're using log rotation, also make sure any existing rotated log files have suitable write permissions.

from yaws.

 avatar commented on July 29, 2024

Steve, Thank you very much!
My trouble was that I didn't have enough rights to write to the report.log
When I set 775 for report.log Yaws started successfully!
Now I suddenly realized that I want to learn more about Erlang.

from yaws.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.