kwando
I’ve installed a lot of updates on my machine, both from brew and the App Store and I probably broke something. When I create a new Phoenix (1.3.0) app with “mix phx.new ” and run it I get the following error in the console:
[error] exited in: GenServer.call(:phoenix_live_reload_file_monitor, :subscribe, 5000)
** (EXIT) no process: the process is not alive or there's no process currently associated with the given name, possibly because its applicat
ion isn't started
Anyone got an idea on what I should do to rectify this?
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Aludel - LLM Evaluation Workbench
Aludel is an embeddable Phoenix LiveView dashboard for evaluating and comparing LLM prompts across mult...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
NobbZ
The term
mac_listeneryou used in your topic is not contained in the error message. Did you copied it only partially?Aside of that, does the problem persist when you disable live reload?
kwando
Nvm, I fixed this right now.
I got a new version of X-Code installed and I forgot to accept the updated license. If the license is not accepted the tools in it cannot be used. This made the
file_systempackage (dependency ofphoenix_live_reload) fail to compile the native stuff it needs to compile in order to detect changes to the file system.Anyway, accepting the license and
mix deps.clean --all && mix deps.compilemade this error disappear and everything works again.kwando
@NobbZ
josevalim
@kwando did you at least get a better error when compiling the code?
In any case, I have pushed a new phoenix_live_reload that improves the error messages and gets rid of the “** (EXIT)” message altogether. Thanks!
gckr
I have plenty of the errors too, in all my projects:
with the latest version of phoenix_live_reload_file_monitor
NobbZ
@kwando said, he had updated his XCode and to accept a license, perhaps you missed this step. Then he had to purge and recompile his dependencies. Just try it yourself.
rm -rf deps _build; mix do deps.get, deps.compile.gckr
already removed and recompiled
I’m on linux
NobbZ
Then you need to install
inotify-tools. I’m wondering though, why its asking formac_listenerthen…richjdsmith
I ran into this issue this afternoon after having updated my operating system.
For those that stumble onto this thread, running
xcode-select --install, accepting the new license agreement and then just runningmix deps.compile file_systemworked for me.rocky
It doesn’t work for me…
I have done everything told :
mix deps.clean --all && rm -rf _build depsxcode-select --install, accept the license agreementmix deps.get && mix deps.compile file_systemand stil doesn’t work.
I even try to
locate /CoreServices.hexport CFLAGS="-isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/usr/include"and stil doesn’t work.
I always have this error
It’s very annoying…
I event tried the recommended
clangcommand from this error message insidedeps/file_systemand still doesn’t work.I have
MacOS Mojave 10.14.4
Xcode Version 10.2.1 (10E1001)
xcode-select version 2354
Erlang/OTP 21 from Homebrew
Elixir 1.8.1 (compiled with Erlang/OTP 21) from Homebrew
Phoenix ~>1.4.0
Phoenix_live_reload ~>1.2
file_system 0.2.6
Anyone can help me?