erlyaws / yaws

Yaws webserver
https://erlyaws.github.io
BSD 3-Clause "New" or "Revised" License
1.28k stars 267 forks source link

Error on launch application Yaws #454

Closed ghost closed 2 years ago

ghost commented 2 years ago

Hello!

I use Manjaro Linux Operating System. When I am startting build after compilation from source a see the nex error message:

Mokachi@/home/grigoriy/yaws >./yaws start cat: /home/grigoriy/yaws/rel/releases/start_erl.data: No such file or directory ./yaws: line 119: /home/grigoriy/yaws/rel/erts-/bin/escript: No such file or directory ./yaws: line 164: /home/grigoriy/yaws/rel/erts-/bin/run_erl: No such file or directory

Erlang/OTP 24 version: 24 Eshell version: V12.3.2

What am I doing wrong? Thank you.

vinoski commented 2 years ago

Can you show your build commands? Also, are you building from master, or from a tag?

ghost commented 2 years ago

My build commands:

  1. Mokachi@/home/grigoriy/yaws > autoreconf -fi
  2. Mokachi@/home/grigoriy/yaws >./configure
  3. Mokachi@/home/grigoriy/yaws >make

I'm building from master.

vinoski commented 2 years ago

You also need to run make install to install Yaws, which will by default install /usr/local/bin/yaws, after which, assuming /usr/local/bin is in your shell PATH, you can run yaws.

ghost commented 2 years ago

I run make install and then yaws-started successfully! I'am much obliged to you!