jonas_h

jonas_h

Hey everyone.

I would like to send messages from an external script to a running Elixir app. The script should be short-lived and terminate immediately after forwarding the message. It could of course be written in Elixir too and they’ll run on the same server.

Thanks!

Showing Posts 1 to 8

speeddragon

speeddragon

I think you can do this in multiple ways. Define a port to receive messages or use the rpc to send messages directly in elixir.

/path/to/_build/prod/rel/my_app/bin/my_app rpc "Genserver.cast(...)"

Nicd

Nicd

Yep, I use something like this to update my blog when I have added a new post or modified an existing one:

sudo -u www-data /var/www/blog/bin/mebe rpc "GenServer.call(Mebe2.Engine.Worker, :refresh, 30_000)"

Mix releases include the “rpc” script builtin.

cenotaph

cenotaph

Really cool solution!

ps: Security Notes:

  • I hope your document root is not pointed at /var/www
  • You have directory listing and all the other nice stuff disabled with the default apache or another unix handler
  • For the future please create a specific user for your projects, applications, scripts and put them into respective directories and run from that location with that user

ie: blog

user: blog
homedir: /home/blog

$ > ps
... blog ...... /home/blog/bin/mebe ...... 
jonas_h

jonas_h OP

The rpc solutions looks easy, but that’s only for release? I’d like to run this in dev (maybe even test?) as well.

Nicd

Nicd

Hi and thanks for the concern. My document root is indeed not /var/www, and directory listing is not enabled. The blog could sure run with a different user, but there is nothing interesting on the server that the user could access, so I’m not too worried about it. But should leave a note to do it the next time I do something on the box.

But this is not at all related to the matter at hand.

To do this in development, you can start your application with a name (--name or --sname) and then use IEx’s --rpc-eval flag (and I think IEx also needs to be given a different name).

derek-zhou

derek-zhou

rpc is good; however fairly slow because it need to start up a separate erlang node just to talk to the existing running system. If you need to interact with the running system every second, you can make a simple server listening on a UNIX domain socket, that respond to a minimal text based API. This is fairly simple with gen_tcp. Another benefit (at least in my view) is you get to limit what you respond to. My client program is just a shell script that invokes socat.

axelson

axelson

Scenic Core Team
jonas_h

jonas_h OP

Excellent, looks like just what I wanted.

For reference, this is what I got working:

defmodule Notify do
  use GenServer

  def start_link(args) do
    GenServer.start_link(__MODULE__, args, name: __MODULE__)
  end

  @impl true
  def init(_opts) do
    BEAMNotify.start_link(
      path: "/tmp/notify_socket",
      dispatcher: &send(__MODULE__, {:notify, &1, &2})
    )
  end

  @impl true
  def handle_info({:notify, msg, _}, state) do
    IO.inspect(msg)
    {:noreply, state}
  end
end

And the script in priv:

#!/bin/sh

BEAM_NOTIFY=$(ls $(dirname $0)/../_build/dev/lib/beam_notify/priv/beam_notify)
$BEAM_NOTIFY -p /tmp/notify_socket -- $1

I’ll have to modify the beam_notify path in production, but other than that I’m good to go.

— All posts loaded —

Where Next? Top

Trending in Questions Top

RSP87
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
nseaSeb
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
RemyXRenard
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
velrest
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
samoloth
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
FlyingNoodle
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
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New

Other Trending Topics Top

mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
marciok
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
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Dmk
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
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
webofbits
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself. My main conc...
#ai
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews