Hello Harry
thanks for you kind answer.
The problem was really silly.
It was caused by a wrong port assignment on the client for the helperd service.
Having two completely separated environment:
The client had to maintain a single helperd-service instance so it is necessary to set properly the ports it in the client.conf files:
beegfs-mounts.conf
---------------------------
/mnt/beegfs/fast /etc/beegfs/beegfs-client-fast.conf
/mnt/beegfs/big /etc/beegfs/beegfs-client-big.conf
/etc/beegfs/beegfs-client-fast.conf
--------------------------------------------
sysMgmtHost = 192.168.1.100
connClientPortUDP = 8004
connHelperdPortTCP = 8006
connMgmtdPortTCP = 8008
connMgmtdPortUDP = 8008
connPortShift = 0
/etc/beegfs/beegfs-client-big.conf
--------------------------------------------
sysMgmtHost = 192.168.1.115
connClientPortUDP = 8014
connHelperdPortTCP = 8006 <==
connMgmtdPortTCP = 8018
connMgmtdPortUDP = 8018
connPortShift = 0
reading your doc I got the hint from the connPortShift and everything came clear.
Thanks again for your help.
Maurizio