jayshankarnair
./mix
{“init terminating in do_boot”,{undef,[{elixir,start_cli,,},{init,start_em,1,},{init,do_boot,3,}]}}
init terminating in do_boot ({undef,[{elixir,start_cli,,},{init,start_em,1,},{init,do_boot,3,}]})
I download elixir with
git clone GitHub - elixir-lang/elixir: Elixir is a dynamic, functional language for building scalable and maintainable applications · GitHub in fedora 29. It has precompiled binaries of mix and elixir. I am getting below errors.
Where can i get binaries of elixir, mix that run on fedora and other distros i.e centos, redhat
Crash dump is being written to: erl_crash.dump…done
elixir -v
{“init terminating in do_boot”,{undef,[{elixir,start_cli,,},{init,start_em,1,},{init,do_boot,3,}]}}
init terminating in do_boot ({undef,[{elixir,start_cli,,},{init,start_em,1,},{init,do_boot,3,}]})
If your question is related to Phoenix or Nerves, please post it in the Phoenix or Nerves Questions / Help section. Thanks!
Trending in Questions
Other Trending Topics
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #iex
- #graphql
- #genstage
- #ai
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










First 10 of 10 Posts
NobbZ
The github repository does not contain precompiled binaries for anything.
Therefore it is not clear to me where your
./mixcomes from.Though each release contains precompiled binaries, which are compiled against the lowest compatible version of erlang. The precompiled for 1.11.2 are available at Release v1.11.2 · elixir-lang/elixir · GitHub
The version of erlang according to repology is OTP 20, though elixir 1.11 requires at least OTP 21 according to the compatibility page.
So you either have to upgrade your erlang or use elixir 1.9.
PS: The
init terminating in do_bootis a pretty common error message for using an outdated erlang.jayshankarnair
Hi Norbert,
My erlang version is 23.1 and linux fedora 29. Please send the link of elixir which i can use. I am currently using it to compile rabbitmq-3.8.9.
Thanks,
Jayshankar
NobbZ
I already provided a link to a prebuilt version of elixir, which should work for you if you indeed have erlang 23.1 installed.
If it does not work for you, please run
which --all erlto find all installed versions of erlang, then run each of the entries with-eval 'erlang:display(erlang:system_info(otp_release)), halt().' -noshellas arguments.The following script would do the equivalent for you:
jayshankarnair
Hi Norbert,
My erlang version is 23.1 and linux fedora 29. Please send me the link of elixir which i can use. I am currently using it to compile rabbitmq-3.8.9.
I download the elixir-1.11.2. In bin directory i ran elixir -v.
I get the following error.
elixir -v
{“init terminating in do_boot”,{undef,[{elixir,start_cli,,},{init,start_em,1,},{init,do_boot,3,}]}}
init terminating in do_boot ({undef,[{elixir,start_cli,,},{init,start_em,1,},{init,do_boot,3,}]})
Thanks,
Jayshankar
jayshankarnair
Hi Norbert,
using erlang from /usr/local/bin/erl"23"
Please let me know which elixir package i need to download.
Thanks,
Jayshankar
NobbZ
That erlang version should work with the elixir I linked earlier.
jayshankarnair
Do i have to setup path or LD_LIBRARY_PATH or any other environment?.
I was wondering why it is giving error.
NobbZ
No, thats usually not necessary.
lc0815
none of these answers work on the window system.
Now I’m trying to setup the latest version of erlang and elixir, but I keep getting the error mentioned on this thread…
any hints as to what I am doing wrong?
I have tried elixir with vsn 14.13 down to 11 where everyting works… but not the latest… and the web search does not help…
most of these messages deal wiht ancient version and unix, nothing for windows…
apoorv-2204
Version clash , of elixir , erlang and otp.