runtime-tools | [ DEPRECATED ] Use https :
kandi X-RAY | runtime-tools Summary
kandi X-RAY | runtime-tools Summary
[DEPRECATED] Use
Support
Quality
Security
License
Reuse
Top functions reviewed by kandi - BETA
Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of runtime-tools
runtime-tools Key Features
runtime-tools Examples and Code Snippets
Community Discussions
Trending Discussions on runtime-tools
QUESTION
Yesterday I tried to install Ejabberd first through souce code, and then with Ubuntu specific packages.
I guess I made a mess, because now I'm getting this threatening Crash dump
error.
ANSWER
Answered 2021-Apr-27 at 07:46Yesterday I tried to install Ejabberd first through souce code
Just curiosity: what problems did you find, that prefered to use the Ubuntu package?
Did you install from source code? If so, did you later uninstall it? Maybe uninstallation left some files there (there was some bug related to that in make uninstall)... it will help if you can take a look at the installation paths and remove the remaining ejabberd files and directories, specially the file ejabberdctl.
and then with Ubuntu specific packages
Well, it could be that both installations get mixed... or maybe the Ubuntu package has some problem unrelated to your previous installation. Keep all investigation lines open :)
{"init terminating in [do_boot",{undef,[{ejabberd_ctl,start,[],
This error message says that erlang cannot find the file ejabberd_ctl.beam, or that the file doesn't define the function start.
Just a wild idea: maybe you are running the "ejabberdctl" script from source installation (pointing to the old ejabberd beam files), but now you have the ejabberd beam files installed in a different location (by the Ubuntu package).
QUESTION
I'm trying to upgrade RabbitMQ on a cluster of two Linux VMs created via Bitnami in Azure (running Debian 9 Stretch) from version 3.8.2 to the newest version, 3.8.6. According to RabbitMQ's documentation, I can do a rolling upgrade by stopping one of the nodes, installing the newest version on it, restarting that node, and then doing the same on the other node. The machines are running with Erlang 22, which RabbitMQ states is compatible with the 3.8.6 release:
...ANSWER
Answered 2020-Oct-15 at 22:22I had Erlang 23 and RabbitMQ Server 3.8.2 (they are not fully compatible so I decided to upgrade RabbitMQ Server to 3.8.9 because I had some problems running my app)
I have a cluster with one node on AWS EC2 instance of Ubuntu 20.04 (unconfigured yet properly as RabbitMQ advises via plugin - I plan to do it later).
What I did and it worked for me (following commands executed under sudo
or root sudo su
):
It's important to
shutdown
not juststop_app
as Erlang also needs to be stopped andstop_app
only stops RabbitMQ Server leaving Erlang on which would later might give you error while starting new version of the RabbitMQ Server - for port 25672 being busy with another app:rabbitmqctl shutdown
Change in rabbitmq file from old version (I had for some strange reason 3.8.8 instead of 3.8.2 which I run) to a new one - in my case 3.8.9:
vim /etc/apt/preferences.d/rabbitmq
Recheck if dependencies are installed:
apt-get -y install socat logrotate init-system-helpers adduser
Install wget if you don't have it:
apt-get -y install wget
Download latest .deb package of server installation file:
wget https://github.com/rabbitmq/rabbitmq-server/releases/download/v3.8.9/rabbitmq-server_3.8.9-1_all.deb
Install it:
dpkg -i rabbitmq-server_3.8.9-1_all.deb
Remove distro:
rm rabbitmq-server_3.8.9-1_all.deb
Check if server stopped (may be redundant command):
service rabbitmq-server stop
Restart server:
service rabbitmq-server restart
Check server status:
rabbitmq-server status
If it gives you an error BOOT FAILED. Distribution port 25672 is in use by another node, check who uses that port it may be that Erlang uses that port:
lsof -i :25672
Start RabbitMQ app:
rabbitmqctl start_app
Check status of node:
rabbitmqctl status
You should see upgraded RabbitMQ Server version (in my case 3.8.9) along with you recent Erlang version (in my case 23)
QUESTION
I'm quite new to Raspberry Pi and Linux/Debian, so please bear with me. I have been trying for hours now to install rabbitMQ on my Raspberry Pi 3, to no avail. I followed the steps, but in the end I just get this whenever I try to write sudo apt-get install rabbitmq-server
:
ANSWER
Answered 2020-Mar-15 at 16:34Go to the page: https://www.erlang-solutions.com/resources/download.html and download the latest version for raspbian buster.
Then in Raspbian type
QUESTION
ANSWER
Answered 2020-Jan-10 at 17:38The packages erlang-ftp
and erlang-tftp
were introduced in Ubuntu 19.04 (disco), and are thus not present in bionic. Just leave them out of the command; they're not required for RabbitMQ to function.
QUESTION
everyone . I have a problem here. when i do the process follow the https://hyperledger-fabric.readthedocs.io/en/latest/dev-setup/build.html. With "make dist-clean all", when it runs to make couchdb docker, there are some error occur. "writing more data than expected". how can i sovle this?
Here is the terminal msg:
...ANSWER
Answered 2017-Oct-30 at 21:42Likely the issue is the the Ubuntu mirrors were being updated. You might want to try again (if you have not already resolved this)
QUESTION
My erlang cowboy server requires gmake
to run. I can use gmake run
on my OSX machine and run the server. Running make run
works fine too but warns me that I should install gmake
.
When I installed my repo https://github.com/QuantumProductions/tunnel.git on my ubuntu host, I tried to make run
and get an error. There are no packages available for gmake
. How do I install gmake
?
ANSWER
Answered 2017-Sep-18 at 01:41make
is gmake
on Ubuntu. You don't actually need it to be called gmake
.
Your version of gmake is almost certainly 3.81 if your host is Ubuntu 14.04 LTS, which seems likely. To get gmake 4 you're going to have to build it yourself or switch your host distro version.
Simple solution
Host your service on Ubuntu 16.04 instead of 14.04
Slightly more complex (but still easy) solution
Here we are going to build gmake 4.2.1 and install it to an alternative location on your host.
Try the following two commands and compare the output on your host:
QUESTION
I'm on Ubuntu 16.04. I installed Elixir like so
...ANSWER
Answered 2017-Jul-15 at 06:44I was able to work around my problem by using asdf. I installed asdf and ran the following commands
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install runtime-tools
Support
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page