karang
I am not sure what has changed but now ElixirLS does not work for me anymore. I am using the latest vscode (1.77.3) and the latest elixir ls extension (0.14.3). I have elixir 14.2 and OTP 25 installed through asdf. I get the following messages when starting with the command code . :
ElixirLS - asc_enfusion client: couldn't create connection to server.
The ElixirLS - asc_enfusion server crashed 5 times in the last 3 minutes. The server will not be restarted. See the output for more information.
Here is the output:
Starting ElixirLS release v0.14.3
Running in /home/me/my_project
** (Mix.Error) Command "git --git-dir=.git fetch --force --quiet --progress --tags" failed
(mix 1.14.2) lib/mix.ex:513: Mix.raise/2
(mix 1.14.2) lib/mix/scm/git.ex:132: Mix.SCM.Git.checkout/2
(elixir 1.14.2) lib/file.ex:1607: File.cd!/2
(mix 1.14.2) lib/mix/dep/fetcher.ex:61: Mix.Dep.Fetcher.do_fetch/3
(mix 1.14.2) lib/mix/dep/converger.ex:213: Mix.Dep.Converger.all/9
(mix 1.14.2) lib/mix/dep/converger.ex:146: Mix.Dep.Converger.all/7
(mix 1.14.2) lib/mix/dep/converger.ex:95: Mix.Dep.Converger.all/4
(mix 1.14.2) lib/mix/dep/converger.ex:74: Mix.Dep.Converger.converge/4
I do have some settings in my .gitconfig as well. Any clues on what is going on? Thanks
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 9- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
Egis
Try starting elixir-ls in your project dir. By running command
elixir-ls. It might show the actual error.iosif
Hey, just happened to me as well. did you find any solution?
karang
I removed my .gitconfig file and now it works fine. Didn’t quite get to the bottom of this. I would try @Egis suggestion to see if it gives a different or more helpful error.
sechosebio
I fixed using @zachallaun solution from here reverting Elixir-ls to a previous version and it works fine. In my case, I reverted to v0.13.0.
lukaszsamson
@karang v0.14.7 should surface the git error. In one report I’ve seen the reason was blocked connection to github in corporate network and incorrectly set git proxy.
neiby
I was just firing up elixir on a new laptop with a fresh install of VSCode and ran into this same problem with ElixirLS. I also had to revert back to v0.13.0. If I upgrade to even v0.14.0, it breaks again. Pretty weird.
neiby
I was able to solve this accidentally with the help of others while working on a different problem. I’m running on a Mac, which uses LibreSSL 3.3.6 instead of the regular openssl. This was causing the crypto module to be ignored when I installed erlang via asdf. The solution was to use Homebrew to install openssl, then tell KERL (which asdf uses) to use this version of openssl:
export KERL_CONFIGURE_OPTIONS="--without-javac --with-ssl=$(brew --prefix openssl@3"Then I reinstalled erlang via asdf and all is well now. The crypto module is no longer ignored during erlang installation and I can use the latest version of ElixirLS with no problem.
kushalj
I just fixed this on my Windows WSL Ubuntu setup.
TL;DR
What I did:
sudo apt remove elixirsudo apt-get install libssl-devasdf plugin-add erlangasdf plugin-add elixirasdf install erlang 26.1.1asdf install elixir 1.15.6-otp-26asdf global erlang 26.1.1asdf global elixir 1.15.6-otp-26Basically, the
sudo aptapproach is broken. The way to test it is to git clone the ElixirLS repo and try to compile it.mix deps.getand thenmix compileIf this works, there’s good bet that VSCode doing the same thing (compiling ElixirLS) will work and connect.
I removed the elixir install and reinstalled using the embedded elixir approach. - however there is a dependency (documented here: [WSL - mix deps.get] The application "crypto" could not be found - #9 by thelucassampaio) - which is that you need to install libssl first and then use asdf to install-compile erlang and then elixir.
If this worked then the ElixirLS you cloned into a folder should compile. If not, see what error you are getting and go search - this is how I worked my way through this.
Only took 4 hours
It may not be the “correct” approach but at least it’s working for me now.
jameskent
Run
mix local.hexcommand