SHA256
1
0
forked from erlang/erlang
Simon Lees da6d076938 - Changes for 27.2.4:
* ssh: SFTP packets exceeding max packet size are not processed
    and dropped.
  * snmp: SNMP Agent transports type (intAgentTransports) was
    incorrectly not documented as a list of transports. Also add a
    couple of config file generation examples.
- Changes for 27.2.3:
  * inets: Improved robustness of httpd startup procedure.
  * ssl: Setting protocol version to a lower value then supported
    by default in server API function called after ssl:listen/2
    could result in wrong default values being used and connections
    failing with insufficient security.
  * ssl: Improve error handling of server name indication fun. This
    implies that if the sni_fun returns undefined we will attempt
    connection with original option values, if it returns
    unrecognized we end the connection with UNRECOGNIZED_NAME alert
    and if provided options fail option verification we will end
    the connection with a HANDSHAKE_FAILURE and an error log.
- Changes for 27.2.2:
  * compiler: Eliminated a bug in the alias analysis pass that
    could potentially cause unsafe optimizations of binary
    construction or record updates.
  * erts: Disabled an unsafe runtime optimization in binary
    construction that caused silent memory corruption.
  * public_key: Consider keyCertSign to compatible with extended
    key usage for TLS client/server auth in CAs, adhere to wide
    spread implementations
  * kernel: Fixed a couple of bugs that could make global's
    internal state inconsistent when a connection was reconnected.
  * ssl: An initiated handshake should always be closed with an

OBS-URL: https://build.opensuse.org/package/show/devel:languages:erlang:Factory/erlang?expand=0&rev=144
2025-03-06 06:03:24 +00:00
2025-03-06 06:03:24 +00:00
2025-03-06 06:03:24 +00:00
2025-03-06 06:03:24 +00:00
2025-03-06 06:03:24 +00:00
2025-03-06 06:03:24 +00:00
2025-03-06 06:03:24 +00:00
2025-03-06 06:03:24 +00:00
2025-03-06 06:03:24 +00:00
2025-03-06 06:03:24 +00:00
2025-03-06 06:03:24 +00:00
2025-03-06 06:03:24 +00:00
2025-03-06 06:03:24 +00:00
2025-03-06 06:03:24 +00:00
2025-03-06 06:03:24 +00:00
2025-03-06 06:03:24 +00:00
2025-03-06 06:03:24 +00:00
2025-03-06 06:03:24 +00:00
2025-03-06 06:03:24 +00:00
2025-03-06 06:03:24 +00:00

# Erlang in openSUSE
## Erlang Port-mapper Daemon and systemd

Erlang Port-mapper Daemon in openSUSE uses systemd socket-activation. In order to fulfill security considerations, EPMd listens on loop-back interface by default. This is enough to run rabbitmq-server, ejabberd and user-started beam processes.

For clustering, please, use ```/etc/systemd/system/epmd.socket.d/``` to configure interfaces to listen on. See man systemd.unit(5) for details.

### Upgrading from sysvinit
```/etc/sysconfig/erlang``` has no effect now, to configure EPMd use systemd capabilities instead.

### Example 1: change port
Create ```/etc/systemd/system/epmd.socket.d/port.conf``` with following content:
```
[Socket]
ListenStream=
ListenStream=127.0.0.1:4444
```
The first line is to discard vendor configuration. The second line will change the port number to listen on to 4444.

### Example 2: enable external interface
To enable accepting external connections to EPMd, create ```/etc/systemd/system/epmd.socket.d/port.conf``` with following content:
```
[Socket]
ListenStream=
ListenStream=0.0.0.0:4369
```
Description
No description provided
Readme 603 MiB
Languages
desktop 100%