DocMoto
Server

Starting and stopping a DocMoto server

The DocMoto server runs as process "docmotoserver" which can be controlled from the systems preferences.

The process is started automatically whenever the base computer is started.

To start or stop the DocMoto server go to "System Preferences", "Other" and select "DocMoto Server".

Restarting, starting and stopping PostgreSQL

Occassionally it may be necessary to restart the PostgreSQL database. For OS X based DocMoto servers the following procedure can be adopted.

  1. Open terminal and ensure you are logged in as user postgres by typing the following

    sudo -s # Ensure you are a super user
    su postgres # Switch to postgres user
    
  2. Navigate to your PostgreSQL "bin" directory, which is usually as follows:

    cd /Library/PostgreSQL/9.1/bin/  # Change 9.1 to the appropriate postgres version number
    
  3. To restart using pg_ctl by issuing the following command:

    ./pg_ctl restart -D /Library/PostgreSQL/9.1/data/ -m fast # forces safe instant restart
    
  4. To start issue the following command:

    ./pg_ctl start -D /Library/PostgreSQL/9.1/data/
    
  5. To stop issue the following command:

    ./pg_ctl stop -D /Library/PostgreSQL/9.1/data/ -m fast
    

Still have a question?

If you still can't find the answer to your question or need more information, please contact the DocMoto team on +44 (0)1242 225230 or email us

We value your privacy

We use Cookies to make using our website easy and meaningful for you, and to better understand how it is used by our customers. By using our website, you are agreeing to our privacy policy.

I agree