IPB

Bienvenue invité ( Connexion | Inscription )

2 Pages V  < 1 2  
Reply to this topicStart new topic
> localhost - 127.0.0.1 non trouvés
Options
radioman
posté 15 Feb 2021, 19:24
Message #31


Macbidouilleur d'Or !
*****

Groupe : Membres
Messages : 5 984
Inscrit : 30 Sep 2002
Lieu : Limoges
Membre no 3 870



j'ai "survolé" la doc mais pas de "en cas de panne"


--------------------

 MacBook Pro 16" core I9 (2020) type 16.1 / 2,3 Ghz / 32 Go / 1To / Big Sur 11.6.1 (depuis la sortie de Monterey)
 Imac Alu 24" core 2 duo (mid 2007) type 7,1 / 2,4 Ghz / 4 Go / SSD Crucial C300 256 Go Samsung 840 EVO 512 Go / El Capitan 10.11.6
 Imac G4 800 15" (2002) type 4,2 60 Go 80Go 7200tr / 768 Mo / Pioneer DVR 104 111D / Tiger 10.4.11
 SSD externe M2 FireCuda 520 2To test Monterey / Time Machine MBP 16
 DD externe 4 To Time Machine MBP 16
 DD externe 2 To Big Sur Beta bidouilles
 DD externe AluICE 500 Go Time Machine iMac 24
 Dock "Freecom" + DD Bidouilles 10.4 / 10.5 / 10.6 / 10.7 / 10.8 / 10.9 / 10.10 / 10.11 / 10.12 / 10.13 / 10.14
 Dock double "Advance Dual Easy Docking" pour cloner les disques …
 imprimante-scanner A3 Epson Workforce 7620 / iPad 2 32 Go / iPhone 8+ Red 256 Go
Go to the top of the page
 
+Quote Post
Alladin-e
posté 16 Feb 2021, 03:14
Message #32


Nouveau Membre


Groupe : Membres
Messages : 7
Inscrit : 13 Jan 2013
Membre no 181 938



Citation (trouspinette @ 21 Dec 2016, 22:44) *
Citation (Antoine07 @ 20 Dec 2016, 19:15) *
Bonsoir,

Merci pour votre réponse.
Effectivement, cette ligne de commande ne me renvoie rien. Il n'est donc pas en "écoute" ?
Le problème, provient peut-etre de là.

Si tu n'es pas timide, tu peux poster le résultat de la commande suivante :

Code
$sudo lsof -i -N -P


ATTENTION, c'est "verbeux" comme résultat : on va voir des adresses IP et tout et tout, tu peux me le passer par message privé si tu le préféres.

bonjour, qu'elle a été l'aboutissement de cette manoeuvre j'ai actuellement le meme problème et je ne trouve rien sur google 😭
Go to the top of the page
 
+Quote Post
Alladin-e
posté 16 Feb 2021, 05:50
Message #33


Nouveau Membre


Groupe : Membres
Messages : 7
Inscrit : 13 Jan 2013
Membre no 181 938



merci d'avoir pris le temps de regarder
Citation (radioman @ 15 Feb 2021, 19:24) *
j'ai "survolé" la doc mais pas de "en cas de panne"

Go to the top of the page
 
+Quote Post
jeanjd63
posté 16 Feb 2021, 06:37
Message #34


Macbidouilleur d'Or !
*****

Groupe : Membres
Messages : 11 698
Inscrit : 15 Nov 2007
Lieu : Auvergne-Rhône-Alpe.
Membre no 99 922



Salut.

Ce serait peut être pas mal d'expliquer à quoi sert ce serveur RLM, c'est la première fois que j'en entends parler, et est-ce un produit libre, payant etc et comment l'as-tu installé?
As-tu un lien vers le développeur ou un site donnant des billes sur ceci?
Go to the top of the page
 
+Quote Post
Polo35230
posté 16 Feb 2021, 08:59
Message #35


Macbidouilleur de bronze !
**

Groupe : Membres
Messages : 531
Inscrit : 2 Feb 2011
Membre no 164 276



À tout hasard, regarde le lien ci-dessous.
https://arnoldsupport.com/2012/12/07/port-5...in-use-waiting/
Go to the top of the page
 
+Quote Post
radioman
posté 16 Feb 2021, 14:04
Message #36


Macbidouilleur d'Or !
*****

Groupe : Membres
Messages : 5 984
Inscrit : 30 Sep 2002
Lieu : Limoges
Membre no 3 870



dans la doc il y a un mini mode d'emploi:
CODE
Starting the rlm server at system boot time on Unix systems


On most Unix systems, system services are started at boot time, usually via startup scripts located in /etc/rc.<something>.
For example, on Solaris, the startup script might be placed in /etc/rc2.d/S98rlm.
On Linux systems, the script could be located in /etc/init.d/rlm, with a link to /etc/rc5.d/S98rlm.
Note that you must install this startup script as root.

The startup script should su to a different user so that the rlm servers are not running as root.

For an example of a Unix startup script for the rlm server, Click Here
The following is an example of a script which would start rlm at boot time on Unix systems.
Modify the first 5 variables for the target system.

#! /bin/sh
#
# rlm Start/Stop rlm
#

#----------------------------------------------------------------
#----------------------------------------------------------------
#----------------------------------------------------------------
# NOTE:
# NOTE: Configure these 5 variables for your system
# NOTE:

# Set rlmuser to the user under which rlm will run
rlmuser=bobm

# Set rlmdir to the directory where the rlm binary is found
rlmdir=/home/bobm/rlm/dev/rlm

# Set rlmdir to the directory where the rlmdown binary is found
rlmdowndir=$rlmdir

# Set licfile to the path to the license file
licfile=$rlmdir/x.lic

# Set debuglog to the path to the debug log
debuglog=+$rlmdir/rlm.dl
#----------------------------------------------------------------
#----------------------------------------------------------------
#----------------------------------------------------------------

start() {
echo $debuglog
su - $rlmuser -c "$rlmdir/rlm -c $licfile -dlog $debuglog &"
}

stop() {
su - $rlmuser -c "$rlmdowndir/rlmdown RLM -q"
}

case "$1" in
start)
start
;;
stop)
stop
;;
restart)
stop
sleep 2
start
;;
*)
echo $"Usage: $0 {start|stop|restart}"
exit 1
esac

exit 0


mais c'est beaucoup trop pointu pour moi: je sais pas si ça te parle …


--------------------

 MacBook Pro 16" core I9 (2020) type 16.1 / 2,3 Ghz / 32 Go / 1To / Big Sur 11.6.1 (depuis la sortie de Monterey)
 Imac Alu 24" core 2 duo (mid 2007) type 7,1 / 2,4 Ghz / 4 Go / SSD Crucial C300 256 Go Samsung 840 EVO 512 Go / El Capitan 10.11.6
 Imac G4 800 15" (2002) type 4,2 60 Go 80Go 7200tr / 768 Mo / Pioneer DVR 104 111D / Tiger 10.4.11
 SSD externe M2 FireCuda 520 2To test Monterey / Time Machine MBP 16
 DD externe 4 To Time Machine MBP 16
 DD externe 2 To Big Sur Beta bidouilles
 DD externe AluICE 500 Go Time Machine iMac 24
 Dock "Freecom" + DD Bidouilles 10.4 / 10.5 / 10.6 / 10.7 / 10.8 / 10.9 / 10.10 / 10.11 / 10.12 / 10.13 / 10.14
 Dock double "Advance Dual Easy Docking" pour cloner les disques …
 imprimante-scanner A3 Epson Workforce 7620 / iPad 2 32 Go / iPhone 8+ Red 256 Go
Go to the top of the page
 
+Quote Post
Alladin-e
posté 16 Feb 2021, 22:06
Message #37


Nouveau Membre


Groupe : Membres
Messages : 7
Inscrit : 13 Jan 2013
Membre no 181 938



cela concerne l'install il me semble mon prinicipal problem et qui je n'arrive pas à acceder a mon port 5054 comme le sujet de base et ce malgrer toute mes tentative
Citation (radioman @ 16 Feb 2021, 14:04) *
dans la doc il y a un mini mode d'emploi:
CODE
Starting the rlm server at system boot time on Unix systems


On most Unix systems, system services are started at boot time, usually via startup scripts located in /etc/rc.<something>.
For example, on Solaris, the startup script might be placed in /etc/rc2.d/S98rlm.
On Linux systems, the script could be located in /etc/init.d/rlm, with a link to /etc/rc5.d/S98rlm.
Note that you must install this startup script as root.

The startup script should su to a different user so that the rlm servers are not running as root.

For an example of a Unix startup script for the rlm server, Click Here
The following is an example of a script which would start rlm at boot time on Unix systems.
Modify the first 5 variables for the target system.

#! /bin/sh
#
# rlm Start/Stop rlm
#

#----------------------------------------------------------------
#----------------------------------------------------------------
#----------------------------------------------------------------
# NOTE:
# NOTE: Configure these 5 variables for your system
# NOTE:

# Set rlmuser to the user under which rlm will run
rlmuser=bobm

# Set rlmdir to the directory where the rlm binary is found
rlmdir=/home/bobm/rlm/dev/rlm

# Set rlmdir to the directory where the rlmdown binary is found
rlmdowndir=$rlmdir

# Set licfile to the path to the license file
licfile=$rlmdir/x.lic

# Set debuglog to the path to the debug log
debuglog=+$rlmdir/rlm.dl
#----------------------------------------------------------------
#----------------------------------------------------------------
#----------------------------------------------------------------

start() {
echo $debuglog
su - $rlmuser -c "$rlmdir/rlm -c $licfile -dlog $debuglog &"
}

stop() {
su - $rlmuser -c "$rlmdowndir/rlmdown RLM -q"
}

case "$1" in
start)
start
;;
stop)
stop
;;
restart)
stop
sleep 2
start
;;
*)
echo $"Usage: $0 {start|stop|restart}"
exit 1
esac

exit 0


mais c'est beaucoup trop pointu pour moi: je sais pas si ça te parle …

Go to the top of the page
 
+Quote Post

2 Pages V  < 1 2
Reply to this topicStart new topic
1 utilisateur(s) sur ce sujet (1 invité(s) et 0 utilisateur(s) anonyme(s))
0 membre(s) :

 



Nous sommes le : 19th April 2024 - 04:31