GNU/Linux >> Linux Esercitazione >  >> Cent OS

Come installare Erlang su Rocky Linux/Alma Linux/CentOS 8

In questa guida installeremo Erlang/OTP in un Rocky Linux/Alma Linux/CentOS 8.

Contenuti correlati

  • Come installare Rabbitmq in Rocky Linux/Alma Linux/Centos 8
  • Come installare RabbitMQ in Fedora 35
  • Come installare Erlang su Fedora 35

Prerequisiti

Hai bisogno di quanto segue per seguire

  • Server Rocky Linux/Alma Linux 8 aggiornato
  • Accesso root o utente con accesso root
  • Accesso a Internet dal server

Indice dei contenuti

  1. Aggiornamento del sistema
  2. Installazione di Erlang
  3. Creazione del programma Hello world

1. Aggiornamento del sistema

Assicuriamoci che i nostri pacchetti server siano aggiornati usando questo comando:

sudo dnf -y update

Installiamo anche alcuni pacchetti comuni

sudo dnf install vim -y

2. Installazione di Erlang

Il pacchetto Erlang è distribuito tramite i repository Yum su PackageCloud. Installa il repository PackageCloud Yum usando questo comando:

curl -s https://packagecloud.io/install/repositories/rabbitmq/erlang/script.rpm.sh | sudo bash

Questo è l'output sul mio server

$ curl -s https://packagecloud.io/install/repositories/rabbitmq/erlang/script.rpm.sh | sudo bash

Detected operating system as rocky/8.
Checking for curl...
Detected curl...
Downloading repository file: https://packagecloud.io/install/repositories/rabbitmq/erlang/config_file.repo?os=rocky&dist=8&source=script
done.
Installing yum-utils...

Rocky Linux 8 - AppStream                                                                                                       15 kB/s | 4.8 kB     00:00
Rocky Linux 8 - BaseOS                                                                                                         6.5 kB/s | 4.3 kB     00:00
Rocky Linux 8 - Extras                                                                                                          27 kB/s | 3.5 kB     00:00
rabbitmq_erlang-source                                                                                                         1.3 kB/s | 819  B     00:00
rabbitmq_erlang-source                                                                                                          21 kB/s | 3.8 kB     00:00
Importing GPG key 0xDF309A0B:
 Userid     : "https://packagecloud.io/rabbitmq/erlang (https://packagecloud.io/docs#gpg_signing) <[email protected]>"
 Fingerprint: 2EBD E413 D3CE 5D35 BCD1 5B7C 71C6 3471 DF30 9A0B
 From       : https://packagecloud.io/rabbitmq/erlang/gpgkey
rabbitmq_erlang-source                                                                                                         357  B/s | 296  B     00:00
Package yum-utils-4.0.18-4.el8.noarch is already installed.
Dependencies resolved.
Nothing to do.
Complete!
Generating yum cache for rabbitmq_erlang...
Importing GPG key 0xDF309A0B:
 Userid     : "https://packagecloud.io/rabbitmq/erlang (https://packagecloud.io/docs#gpg_signing) <[email protected]>"
 Fingerprint: 2EBD E413 D3CE 5D35 BCD1 5B7C 71C6 3471 DF30 9A0B
 From       : https://packagecloud.io/rabbitmq/erlang/gpgkey
Generating yum cache for rabbitmq_erlang-source...

The repository is setup! You can now install packages.

Ora possiamo installare erlang dai repository aggiunti:

$ sudo dnf install erlang
Last metadata expiration check: 0:00:27 ago on Fri 12 Nov 2021 07:30:53 AM EAT.
Dependencies resolved.
===============================================================================================================================================================
 Package                           Architecture                      Version                                  Repository                                  Size
===============================================================================================================================================================
Installing:
 erlang                            x86_64                            24.1-1.el8                               rabbitmq_erlang                             20 M

Transaction Summary
===============================================================================================================================================================
Install  1 Package

Total download size: 20 M
Installed size: 36 M
Is this ok [y/N]: y
Downloading Packages:
erlang-24.1-1.el8.x86_64.rpm                                                                                                    42 MB/s |  20 MB     00:00
---------------------------------------------------------------------------------------------------------------------------------------------------------------
Total                                                                                                                           41 MB/s |  20 MB     00:00
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                                                                                                       1/1
  Installing       : erlang-24.1-1.el8.x86_64                                                                                                              1/1
  Running scriptlet: erlang-24.1-1.el8.x86_64                                                                                                              1/1
  Verifying        : erlang-24.1-1.el8.x86_64                                                                                                              1/1

Installed:
  erlang-24.1-1.el8.x86_64

Complete!

3. Creazione del programma Hello world

Crea hello.erl file

vim hello.erl

Aggiungilo al file

% This is a test Hello World Erlang Code
-module(hello).
-import(io,[fwrite/1]).
-export([helloworld/0]).

helloworld() ->
   fwrite("Hello from Citizix, Erlang World!\n").

Compilalo dalla shell Erlang. Non dimenticare il punto ("punto") alla fine di ogni comando:

$ erl
Erlang/OTP 24 [erts-12.1] [source] [64-bit] [smp:2:2] [ds:2:2:10] [async-threads:1] [jit]

Eshell V12.1  (abort with ^G)
1> c(hello).
{ok,hello}
2> hello:helloworld().
Hello from Citizix, Erlang World!
ok
3>

Hai installato correttamente Erlang nel tuo sistema.

Conclusione

Grazie per aver utilizzato questo tutorial per installare il linguaggio di programmazione Erlang sul tuo sistema Rocky Linux/Alma Linux 8. Per ulteriore assistenza o informazioni utili, ti consigliamo di controllare il sito Web ufficiale di Erlang.


Cent OS
  1. Come eseguire il debootstrap su CentOS Linux

  2. Come installare PostgreSQL su CentOS 8 / Rocky Linux 8 / RHEL 8

  3. Come installare Mysql 8 su Rocky Linux/Centos 8

  4. Come installare e configurare Redis 6 su Rocky Linux/Centos 8

  5. Come installare Java 17 su Rocky Linux 8/Centos 8

Come installare Apache Maven su Rocky Linux / CentOS 8

Come installare Spotify su CentOS 8 / Rocky Linux

Come installare Webmin su CentOS Linux

Come installare JIRA su CentOS 8 Linux

Come installare Rabbitmq in Rocky Linux/Alma Linux/Centos 8

Come configurare la replica FreeIPA su Rocky Linux/Alma Linux/Centos 8