-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Step-by-step description of how to run the observer on OS X #41
Comments
possibly this need special attention; sorry, since I have re-installed Linux on the Mac hardware running natively, I no longer have the osx; will probably find another osx environment soon |
👍 for |
No localhost doesn't work for me I need to pass the ip
…On Fri, 14 Apr 2017, 10:10 Codruț Constantin Gușoi, < ***@***.***> wrote:
👍 for duckduckgoing 😄 .
Just curious, does DISPLAY work for you with localhost:0 instead of the
ip?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#41 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AATuwyJ_p33fTE3-r9CEk7lhJatOLjYXks5rvynrgaJpZM4M5KbH>
.
|
According to https://docs.docker.com/docker-for-mac/networking/, it looks like |
|
@futtetennista It should be |
Never run observer on the Erlang VM which you are running work on - observer crashes all the time and frequently takes down the VM. What's safer is to start a distributed Erlang node, run observer on it, and connect to the VM you want to observe. |
The steps described here didn't work for me and it took me quite a bit of fiddling and duckduckgoing around to make the observer work on my machine - I'm running OS X v10.12.3 (16D32). Here's a step-by-step description - mostly take from here - that can be added to the README if you feel it'll help people:
brew install xquartz
(at the time of writing the latest version I installed is 2.7.11)lsof -i :6000
ip=$(ipconfig getifaddr en0) && echo "My IP is: " + $ip
xhost + xxx.xxx.xxx.xxx
. The output should be something like:xxx.\ xxx.xxx.xxx being added to access control list
docker run -it --rm -e DISPLAY=${ip}:0 -v /tmp/.X11-unix:/tmp/.X11-unix erlang
The text was updated successfully, but these errors were encountered: