You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a linux system is using a default localhost resolving to ::1 (IPv6 localhost address), IDE won't start because the backend process is only listening to 127.0.0.1:<port>.
Listening on both 127.0.0.1 and ::1 by just providing the port would solve the problem.
To reproduce
To reproduce, just ensure having the following configuration in your /etc/hosts file :
::1 localhost.localdomain localhost
instead of
127.0.0.1 localhost.localdomain localhost
Expected behavior
IDE could support dual stack if in order to be started in any situation. Otherwise it shouldn't rely on dynamic resolution that can end up in an incompatible configuration.
Describe the problem
When a linux system is using a default localhost resolving to
::1
(IPv6 localhost address), IDE won't start because the backend process is only listening to127.0.0.1:<port>
.Listening on both
127.0.0.1
and::1
by just providing the port would solve the problem.To reproduce
To reproduce, just ensure having the following configuration in your /etc/hosts file :
instead of
Expected behavior
IDE could support dual stack if in order to be started in any situation. Otherwise it shouldn't rely on dynamic resolution that can end up in an incompatible configuration.
Arduino IDE version
2.3.3
Operating system
Linux
Operating system version
Archlinux
Additional context
Discussion thread: https://forum.arduino.cc/t/ide-2-3-3-not-starting-with-error-14-unavailable-no-connection-established/1325816
Issue checklist
The text was updated successfully, but these errors were encountered: