Difference between revisions of "How to add multiple clients"

From Archivematica
Jump to navigation Jump to search
(Created page with 'Main Page > Software > Install 0.7-alpha > How to add multiple clients')
 
 
(21 intermediate revisions by 3 users not shown)
Line 1: Line 1:
[[Main Page]] > [[Software]] > [[Install 0.7-alpha]] > How to add multiple clients
+
[[Main Page]] > [[Software]] > [[Install-0.7.1-alpha]] > How to add multiple clients
 +
 
 +
===Checklist===
 +
*[[Set a static IP]] on your server machine
 +
*[https://help.ubuntu.com/community/SettingUpNFSHowTo#NFSv4%20server NFS is installed/running] on your server machine
 +
 
 +
===Set mysql to listen on public interface (transcoder)===
 +
on MCPServer host, edit /etc/mysql/my.cnf
 +
<pre>sudo nano /etc/mysql/my.cnf</pre>
 +
then comment out
 +
<pre>#bind-address = 127.0.0.1</pre>
 +
restart mysql
 +
<pre>sudo /etc/init.d/mysql restart</pre>
 +
 
 +
===Install===
 +
Install the client package
 +
<pre>sudo aptitude install archivematica-mcp-client</pre>
 +
 
 +
===Configure fstab to automatically mount the remote NFS share directory on client machines===
 +
edit /etc/fstab
 +
<pre>
 +
sudo nano /etc/fstab
 +
</pre>
 +
 
 +
assuming the IP of your NFS server is the same as your MCP-Server (ie 192.168.0.100) add the following
 +
<pre>
 +
192.168.0.100:/var/archivematica/sharedDirectory /var/archivematica/sharedDirectory nfs defaults 0 0
 +
</pre>
 +
 
 +
===Sync Time with OpenNTPd===
 +
Un-comment the listen line in /etc/openntpd/ntpd.conf on your master machine
 +
<pre>
 +
sudo mousepad /etc/openntpd/ntpd.conf
 +
</pre>
 +
<pre>
 +
listen on *
 +
</pre>
 +
<pre>
 +
sudo /etc/init.d/openntpd restart
 +
</pre>
 +
 
 +
on client machines edit /etc/openntpd/ntpd.conf and add your newly created time server and comment out other servers
 +
<pre>
 +
sudo mousepad /etc/openntpd/ntpd.conf
 +
</pre>
 +
<pre>
 +
server myMasterServerIP
 +
#server otherServerAdress
 +
#server otherServerAdress
 +
#server otherServerAdress
 +
</pre>
 +
 
 +
 
 +
===Supported Modules===
 +
Comment out the upload and storeAIP tasks, from the supported tasks on the client machine, by prepending the line with a '#'.
 +
<pre>
 +
sudo mousepad /etc/archivematica/MCPClient/archivematicaClientModules
 +
</pre>
 +
<pre>
 +
#upload-qubit_v0.0="upload-qubit "
 +
#storeAIP_v0.0="%clientScriptsDirectory%storeAIP.sh "
 +
...
 +
</pre>
 +
 
 +
===Change the IP/Hostname===
 +
Change the IP/Hostname the client machine is connecting to.
 +
<pre>
 +
sudo mousepad /etc/archivematica/MCPClient/clientConfig.conf
 +
</pre>
 +
<pre>
 +
MCPArchivematicaServer="server.local"
 +
MCPArchivematicaServerPort="8002"
 +
</pre>
 +
In the same file, /etc/archivematica/MCPClient/clientConfig.conf, you can set the max number of threads this client will run.
 +
<pre>
 +
maxThreads="2"
 +
</pre>
 +
 
 +
===Disable the MCP Server===
 +
Each client node needs to have the MCP server disabled from starting at startup.
 +
 
 +
 
 +
login to each node, remove /etc/init/archivematica-mcp-server.conf and reboot.
 +
<pre>
 +
sudo stop archivematica-mcp-server
 +
sudo rm /etc/init/archivematica-mcp-server.conf
 +
</pre>
 +
 
 +
===Reboot===
 +
<pre>
 +
sudo stop openoffice-service; sudo start openoffice-service
 +
sudo stop archivematica-mcp-client; sudo start archivematica-mcp-client</pre>
 +
The client should connect on startup.
 +
 
 +
Note: to see the dashboard, or ica-atom, you'll need to visit the server's ip address, not localhost.

Latest revision as of 17:51, 27 August 2011

Main Page > Software > Install-0.7.1-alpha > How to add multiple clients

Checklist[edit]

Set mysql to listen on public interface (transcoder)[edit]

on MCPServer host, edit /etc/mysql/my.cnf

sudo nano /etc/mysql/my.cnf

then comment out

#bind-address = 127.0.0.1

restart mysql

sudo /etc/init.d/mysql restart

Install[edit]

Install the client package

sudo aptitude install archivematica-mcp-client

Configure fstab to automatically mount the remote NFS share directory on client machines[edit]

edit /etc/fstab

sudo nano /etc/fstab

assuming the IP of your NFS server is the same as your MCP-Server (ie 192.168.0.100) add the following

192.168.0.100:/var/archivematica/sharedDirectory /var/archivematica/sharedDirectory nfs defaults 0 0

Sync Time with OpenNTPd[edit]

Un-comment the listen line in /etc/openntpd/ntpd.conf on your master machine

sudo mousepad /etc/openntpd/ntpd.conf
listen on *
sudo /etc/init.d/openntpd restart

on client machines edit /etc/openntpd/ntpd.conf and add your newly created time server and comment out other servers

sudo mousepad /etc/openntpd/ntpd.conf
server myMasterServerIP
#server otherServerAdress
#server otherServerAdress
#server otherServerAdress


Supported Modules[edit]

Comment out the upload and storeAIP tasks, from the supported tasks on the client machine, by prepending the line with a '#'.

sudo mousepad /etc/archivematica/MCPClient/archivematicaClientModules
#upload-qubit_v0.0="upload-qubit "
#storeAIP_v0.0="%clientScriptsDirectory%storeAIP.sh "
...

Change the IP/Hostname[edit]

Change the IP/Hostname the client machine is connecting to.

sudo mousepad /etc/archivematica/MCPClient/clientConfig.conf
MCPArchivematicaServer="server.local"
MCPArchivematicaServerPort="8002"

In the same file, /etc/archivematica/MCPClient/clientConfig.conf, you can set the max number of threads this client will run.

maxThreads="2"

Disable the MCP Server[edit]

Each client node needs to have the MCP server disabled from starting at startup.


login to each node, remove /etc/init/archivematica-mcp-server.conf and reboot.

sudo stop archivematica-mcp-server
sudo rm /etc/init/archivematica-mcp-server.conf

Reboot[edit]

sudo stop openoffice-service; sudo start openoffice-service
sudo stop archivematica-mcp-client; sudo start archivematica-mcp-client

The client should connect on startup.

Note: to see the dashboard, or ica-atom, you'll need to visit the server's ip address, not localhost.