Hermanverschooten
Hi,
I have an app running that uses nbpm to avoid using epmd in production.
Using the supplied mix task I find which port my app is running on.
I have added export ELIXIR_ERL_OPTIONS="-erl_epmd_port nnn" to my .livebookdesktop.sh.
Following the reply from @jonatanklosko I used the EPMD module he supplied to register my app name on epmd running in my livebook. I can connect to the remote node as an attached node.
But what I want is to use the remote execution smart cell, but this refuses to connect.
Does anyone have an idea if this is at all possible?
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Kia ora,
We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
Hello,
I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter).
The diffic...
New
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
Other Trending Topics
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
ICal is a library for interacting with iCalendar data. It parses iCalendars into typed Elixir structs via ICal.from_ics, and can prepare ...
New
Latest Livebook Threads
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
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #ai
- #phoenix_html
- #elixirconf-us
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 4- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
Hermanverschooten
I currently found a workaround, that allows me to get my data into the liveview.
The names have been changed to protect the innocent.
I removed the export from
.livebookdesktop.shand restarted livebook.Then in a console I ran
I added
my.local.domainwhich is externally resolvable by my production server to my/etc/hoststo resolve to127.0.0.1.I restarted livebook, started the
EPMDmodule to register mytestnode and its port.Opened a new livebook and made a Remote execution Smart cell to the
testnode, that works.Then as code to remotely execute I made another
:rpc.call(:"admin@localhost.remote.somewhere", Graph, :yearly, ["202410"])and assigned it to variable. Now I can use it to generate some graphs.I also had to do a port forwarding in my firewall to the ip of my computer for the port.
I do hope however that there is a simpler solution.
jonatanklosko
Just to clarify, you are trying to connect to
name@prod.domainandprod.domainis accessible from your local machine? (i.e. you don’t do port proxying and similar)The difference between the two is that in attached mode Livebook connects directly to the remote node, so
export ELIXIR_ERL_OPTIONS="-erl_epmd_port nnn"(which configures the Livebook server node) did the trick. With the standalone runtime and remote execution cell, Livebook first starts the standalone runtime node (andELIXIR_ERL_OPTIONSis not applicable to that node), so when you do RPC in the cell, it’s that runtime node connecting to the remote node. Other env vars, such asERL_AFLAGScan be used both for the Livebook server and the standalone runtime, however this inherently doesn’t work, because then we would have two nodes trying to bind to the same port for distribution.Given that you connect to the remote node directly and it has no EPMD, I think the only way for this to work would be to have a field to specify extra options for the remote runtime specifically, in this case
-erl_epmd_port xyz. Let me know if the above is correct, we can probably add a UI field for this.Hermanverschooten
Yes, that would be a big help. I saw when running
epmd -nameslocally the initial livebook runtime was using the port.jonatanklosko
Implemented in Support specifying erl flags for standalone runtime node by jonatanklosko · Pull Request #2843 · livebook-dev/livebook · GitHub : )