Hello,
I have two b3 servers.
One is my main server and the other one is used as extra storage.
When on my work I can connect perfectly to the Main b3 but I cannot see the 2nd b3.
Is it possible to mount the storage folder share to the b3 main server /external/b3nd folder so that I can acces the 2nd b3 from that folder location?
Should I use install smbfs or sshfs to get it working?
Does someone has experiance connecting 2 bubba servers?
Thanks in advance.
Puma
Please note the new address for this forum : forum.excito.org. The old address redirects here but I don't know for how long. Thanks !
New user's registration have been closed due to high spamming and low trafic on this forum. Please contact forum admins directly if you need an account. Thanks !
Connection 2 B3 servers
Connection 2 B3 servers
Linux is like a wigwam - no windows, no gates, apache inside!
Re: Connection 2 B3 servers
I think you can export the folder from the secondary B3 via NFS and mount it in the primary B3's filesystem. Then use Samba to share the contents of the location.
Re: Connection 2 B3 servers
Not 100% sure of this, but I think you can add a "remote account" (admin -> settings -> remote account), and it will automatically show up under /home/storage/extern
/Johannes (Excito co-founder a long time ago, but now I'm just Johannes)
Re: Connection 2 B3 servers
Dear all,
Via the webinterface did not work.
Working solution:
Install nfs on both servers:
check server:
check if portmapper is running
export folder on host in file etc/export (what to share from host side) add following:
after each change of etc/export:
Connect client to host: mount:
now we have the /home/storage/ mounted to the external storage link
now should connect to folder on client.
Puma
Via the webinterface did not work.
Working solution:
Install nfs on both servers:
Code: Select all
apt-get install portmap nfs-common
apt-get install nfs-kernel-server
apt-get install nfs-common
Code: Select all
/etc/init.d/portmap restart
/etc/init.d/portmap status
Code: Select all
rpcinfo -p
Code: Select all
/home/storage 192.168.101.1(rw,sync)
Code: Select all
/etc/init.d/nfs-kernel-server restart
Connect client to host: mount:
Code: Select all
mount -vvv -t nfs [ip 2nd b3]:/home/storage /home/storage/extern/2ndb3
now should connect to folder on client.
Puma
Linux is like a wigwam - no windows, no gates, apache inside!