Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
38 views

Here is the Dockerfile # ===== Stage 1: BUILD OTP 27.2 ===== FROM debian:bookworm AS build RUN apt-get update && apt-get install -y \ build-essential \ autoconf \ automake \ ...
Rumal Gunawardana's user avatar
2 votes
0 answers
53 views

I'm wondering I can use devices with LoRa antennas to run a distributed erlang cluster. Some of these devices would have no direct internet connection. Are there limitations to the protocol that would ...
jnmandal's user avatar
  • 658
0 votes
1 answer
69 views

I'm trying to install RabbitMQ in my custom docker image. For RabbitMQ I need Erlang and I install it in the docker file like this: RUN powershell -Command Start-Process -Wait -FilePath C:\...
testing's user avatar
  • 20.3k
1 vote
0 answers
58 views

When running RabbitMQ version 4.0, I encountered a problem where a function was undefined. [test@rabbitmq4-2:~/workspace/rabbitmq-server-4.0/deps/rabbit] ((v4.0.0))$ rabbitmqctl status Status of node ...
孙海城's user avatar
  • 419
0 votes
1 answer
100 views

Trying to RPC to another node from a script, everything works when using "shortnames" but fails when using "longnames". Where my local machine name is "Pandora", and ...
sthames42's user avatar
  • 1,038
1 vote
1 answer
47 views

I'm trying to use the ecpool library to pool Mongo db connections. My supervisor's init looks like what I added in the first code snippet. mongo_client is a module that I use to setup the connection ...
Marcel N.'s user avatar
  • 14k
2 votes
1 answer
54 views

Is there an efficient way to convert gb_trees to json in erlang or maps? Here is a truncated example: {46, {{25,56}, {fld,{25,56},0}, {{25,30}, ...
heiheshang's user avatar
1 vote
1 answer
495 views

I am trying to set elixir up as a back-end for React, and I have done a bunch of stuff to get it running. I cannot seem to make it work. "10:09:43.125 [error] beam/beam_load.c(206): Error loading ...
Ian's user avatar
  • 11
1 vote
1 answer
96 views

I am writing a simple Erlang application that manages auctions. When a new auction is created I would like to create a new child process to handle it. The function call is the following one: ...
salbh's user avatar
  • 71
1 vote
1 answer
75 views

I have a rebar3 app with a supervisor and some modules I want to execute a function before aborting the shell I have tried adding an exit function in the supervisor,but its not working.I wanted to ...
Kaushik .p's user avatar
1 vote
0 answers
37 views

The SNMP test module snmp_ex2_simple_standard_test has different test cases to test various SNMP operations. I considered the test case related to the SNMP GET operation to simplify the debugging. I ...
Bhuvan's user avatar
  • 439
0 votes
1 answer
55 views

Consider the following module-based Supervisor: defmodule MyApp.Supervisor do use Supervisor def start_link(init_arg) do Supervisor.start_link(__MODULE__, init_arg, name: __MODULE__) end ...
category's user avatar
  • 2,165
0 votes
6 answers
173 views

The documentation details the following: When the supervisor starts, it traverses all child specifications and then starts each child in the order they are defined. This is done by calling the ...
category's user avatar
  • 2,165
0 votes
1 answer
60 views

In Arif Isaq booklet there is an example where the gen_server behaviour is replace with wx_object. I'm trying to run this example, but somehow or other the message I send to the processes Eshell V13.1....
Alberto Perri's user avatar
1 vote
1 answer
123 views

I was trying to implement an emoji server and write codes for it. But when I test it in the terminal it is showing timeout error. For checking the code please check the alias function for it: -spec ...
Arraytics New's user avatar
1 vote
1 answer
67 views

In Elixir umbrella apps, when an error occurs in one application (e.g., appA) and its supervisor determines that the error cannot be recovered, the supervisor might terminate the entire umbrella ...
AungMyoOo's user avatar
1 vote
1 answer
115 views

An erlang OTP application (nerlnetApp) that depends on cowboy compiled and run successfully when executed using the command: rebar3 shell, from application directory. However, erlang shell cannot run ...
ddleon's user avatar
  • 85
2 votes
0 answers
39 views

I have a main controller controller.erl that acts with gen_server behavior, that controller is supposed create 4 other processes called tower.erl, on 4 different pcs and communicate with them ...
user avatar
0 votes
1 answer
53 views

I am trying to implement a counter using the Erlang/OTP Client Server. In the following code I can set a count to count up from, but the incr() function does not work. Could someone please explain to ...
Alberto Perri's user avatar
1 vote
1 answer
698 views

Getting error when installing Elixir dependencies, all Mix command are throwing same exception 23:31:44.447 [notice] Application ssl exited: exited in: :ssl_app.start(:normal, []) ** (EXIT) an ...
Bhanwarlal Chaudhary's user avatar
2 votes
1 answer
2k views

im trying to install RabbitMQ Server 3.12.0. Before i have installed compatible Erlang OTP 26.0 (have tried it also with 25.3). In the setup i get the error message rabbitmq-service.bat install exited ...
Iam Artur's user avatar
-1 votes
1 answer
218 views

I am trying to install RabbitMQ but it is giving error image of error please help me fix it. I'm using windows-10 64-bit I tried uninstalling and reinstalling RabbitMQ and Erlang/OTP but nothing seems ...
ALFEZ MANSURI's user avatar
0 votes
1 answer
139 views

Rebar3 dependencies installing locally but when I'm trying to run it inside the container raising error for all dependencies e.g: #0 1.936 ===> Failed to fetch and copy dep: {git,"https://...
Moeen's user avatar
  • 422
0 votes
1 answer
50 views

I have configured the YML file of Ejabberd 23.04. I am able to see the Ejabberd dashboard in Firefox when I enter the username and password (screenshot attached below). Using the IP address and Port ...
Mohammed Rifaz's user avatar
3 votes
1 answer
559 views

I'm trying to create a child process for each connection and the problem is, it won't return until the the child process exited. -module(nodesupervisor). -export([start_link/0, init/1, start_child/2])...
user avatar

1
2 3 4 5
17