Difference between revisions of "AM FAQ"

From Archivematica
Jump to navigation Jump to search
Line 1: Line 1:
 
[[Main Page]] > [[Development]] > [[Administrator_manual]] > FAQ
 
[[Main Page]] > [[Development]] > [[Administrator_manual]] > FAQ
 +
 +
=How to restart the Archivematica services?=
 +
== Stopping ==
 +
* Stop the server
 +
<pre>sudo stop archivematica-mcp-server</pre>
 +
* Stop the client
 +
<pre>sudo stop archivematica-mcp-client</pre>
 +
* Stop the dashboard
 +
<pre>sudo apache2ctl stop</pre>
 +
* Stop the gearman service
 +
<pre>sudo /etc/init.d/gearman-job-server stop</pre>
 +
* Stop the mysqld service
 +
<pre>sudo stop mysql</pre>
 +
* Stop the elastic search service
 +
<pre>sudo /etc/init.d/elasticsearch stop</pre>
 +
 +
== Starting ==
 +
* Start the elastic search service
 +
<pre>sudo /etc/init.d/elasticsearch Start</pre>
 +
* Start the mysqld service
 +
<pre>sudo start mysql</pre>
 +
* Start the gearman service
 +
<pre>sudo /etc/init.d/gearman-job-server Start</pre>
 +
* Start the dashboard
 +
<pre>sudo apache2ctl Start</pre>
 +
* Start the server
 +
<pre>sudo Start archivematica-mcp-server</pre>
 +
* Start the client
 +
<pre>sudo Start archivematica-mcp-client</pre>

Revision as of 16:13, 17 August 2012

Main Page > Development > Administrator_manual > FAQ

How to restart the Archivematica services?

Stopping

  • Stop the server
sudo stop archivematica-mcp-server
  • Stop the client
sudo stop archivematica-mcp-client
  • Stop the dashboard
sudo apache2ctl stop
  • Stop the gearman service
sudo /etc/init.d/gearman-job-server stop
  • Stop the mysqld service
sudo stop mysql
  • Stop the elastic search service
sudo /etc/init.d/elasticsearch stop

Starting

  • Start the elastic search service
sudo /etc/init.d/elasticsearch Start
  • Start the mysqld service
sudo start mysql
  • Start the gearman service
sudo /etc/init.d/gearman-job-server Start
  • Start the dashboard
sudo apache2ctl Start
  • Start the server
sudo Start archivematica-mcp-server
  • Start the client
sudo Start archivematica-mcp-client