Page 1 of 1

Remote computer connection

Posted: Sat Sep 10, 2022 6:33 pm
by Evilerfiend8902
Hello,

I have installed folding @ home on a ubuntu server (home server) and I have installed the viewer, but I'm not sure on how to connect to the viewer. For example my servers ip is 192.168.100.110 and I have services like cockpit and apache running (for different reasons). How do I connect to the viewer. My home server does not have a gui due to being headless.

Thanks

Re: Remote computer connection

Posted: Sat Sep 10, 2022 8:04 pm
by bikeaddict
First, stop the FAHClient service on the server at a root prompt or with sudo:

Code: Select all

service FAHClient stop
or
/etc/init.d/FAHClient stop
If the service is still running as it likes to ignore stop signals if it's not paused:

Code: Select all

ps -ef | grep FAHClient
then you can:

Code: Select all

killall FAHClient
Edit /etc/fahclient/config.xml (if it's there on Ubuntu) so it has a line similar to this with the IP address of your desktop viewer:

Code: Select all

<allow v='127.0.0.1 192.168.100.109'/>
Add a password for security:

Code: Select all

<password v='MyFAHPassword1'/>
Save config.xml and then restart FAHClient:

Code: Select all

service FAHClient start
or
/etc/init.d/FAHClient start
You may have to open port 36330 if you're running a firewall on the server.

Then on your desktop viewer, run FAHControl and add a new client with IP address 192.168.100.110 and the password. Once the client is saved, you can configure the server with all the tabs using the Configure button.