Table Of Contents

Previous topic

1. How to install OpenPLM

Next topic

1.2. How to install openPLM server (development version)

This Page

Languages

Previous versions

1.2
1.1

1.1. How to install openPLM server 2.0

This document describes how to install an openPLM server using the 2.0 version tarball.

Previous versions:

1.1.1. Requirements

This HowTo is based on:

  • Debian Wheezy
  • Apache Server version: Apache/2.2.22 (from Debian)
  • PostgreSQL 9.1
  • Python 2.6.X or 2.7.X
  • Django 1.5.X
  • Celery 3.0.X
  • Haystack 1.2.X
  • Xapian 1.2.X
  • Lepl 5.0
  • South 0.7.6
  • Markdown 2.2

It is also valid on Debian Squeeze (Apache 2.2.16, PostgreSQL 8.4).

Note

Django framework can run with SQLite 3 and MySQL databases and with other web servers. We welcome all feedbacks about these combinations. For more information, you can visit : Django website

1.1.2. Install necessary packages

First, you must install some dependencies:

  1. apt-get install swig build-essential pkg-config gettext apache2 libapache2-mod-wsgi python-pip python-dev python-imaging python-kjbuckets python-pypdf ipython graphviz graphviz-dev python-pygraphviz  python-xapian rabbitmq-server postgresql libpq-dev python-tz python-pisa libgsf-bin imagemagick python-pisa python-lxml
  2. pip install odfpy docutils celery django-celery 'django==1.5.4' 'south==0.7.6' psycopg2  'django-haystack<2' librabbitmq markdown lepl

To enable plain text search on files, you need to install the following dependencies:

  1. apt-get install poppler-utils html2text odt2txt antiword catdoc
  2. pip install openxmllib

1.1.3. Get the tarball containing the code

Extract the code in /var and rename the directory to django

  • tar xzf openplm-2.0.1.tar.gz -C /var/
  • mv /var/openplm /var/django

All files used for a new django site will be stored in this directory.

  • cd /var/django/openPLM

1.1.4. Configure a valid PATH

The files are set to work after a svn checkout, so you need to change a few PATH (basically, you need to delete the trunk/openPLM/ part). You have two way of doing so, you can either use the following sed command (assuming you are in /var/django/openPLM): sed -in 's#\(/var/django/\)openPLM/trunk/#\1#' settings.py apache/*.wsgi etc/default/celeryd

Or you can grab your favorite editor and change the followings files yourself:

  • settings.py change MEDIA_ROOT and TEMPLATE_DIRS:

    MEDIA_ROOT = '/var/django/openPLM/media/'
    ...
    TEMPLATE_DIRS = (
        # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
        # Always use forward slashes, even on Windows.
        # Don't forget to use absolute paths, not relative paths.
        "/var/django/openPLM/templates",
    )
    
  • apache/*.wsgi change the three sys.path.append

    sys.path.append('/var/django/')
    sys.path.append('/var/django/openPLM')
    ...
    sys.path.append('/var/django/%s' % app.replace("openplm.", "openPLM/"))
    
  • etc/default/celeryd change CELERYD_CHDIR

    CELERYD_CHDIR="/var/django/openPLM"
    

1.1.5. Configure PostgreSQL

  • mkdir /var/postgres

  • chown postgres:postgres /var/postgres/

  • locale-gen fr_FR.UTF-8 (replace fr_FR.UTF-8 with your locale)

  • su postgres

  • export PATH=/usr/lib/postgresql/9.1/bin:$PATH

    Note

    You’ll have to change the path according to your postgresql version number

  • initdb --encoding=UTF-8 --locale=fr_FR.UTF-8 --pgdata=/var/postgres/

  • postgres -D /var/postgres & (it is not a problem if postgres is already running, you do not have to restart it)

  • psql:

    postgres=#create database openplm;
    postgres=#create role django with password 'MyPassword' login;
    \q
    
  • exit

1.1.6. Change the secret key

  • python bin/change_secret_key.py

    Note

    Most commands supposed that you are in /var/django/openPLM and you should be if you are following this How To. If a command doesn’t work, check your working directory and change back to /var/django/openPLM if needed

1.1.7. Create the database

Edit the file /var/django/openPLM/settings.py and set the database password (‘MyPassword’) It must be the one set with the command create role django with password 'MyPassword' login; Here the DATABASE_USER is django, not the Django admin created by ./manage.py syncdb --all.

For example:

# settings.py
DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.postgresql_psycopg2', # or 'postgresql', 'mysql', 'sqlite3', 'oracle'.
        'NAME': 'openplm',               # Or path to database file if using sqlite3.
        'USER': 'django',                # Not used with sqlite3.
        'PASSWORD': 'MyPassword',        # Not used with sqlite3.
        'HOST': 'localhost',             # Set to empty string for localhost. Not used with sqlite3.
        'PORT': '',                      # Set to empty string for default. Not used with sqlite3.
    }
}

Then execute the following commands:

  • ./manage.py syncdb --all
  • ./manage.py migrate --all --fake
  • ./manage.py loaddata extra_lifecycles

Note

You have to create the superadmin user for Django and a special user named ‘company’. The company can access all contents from openPLM and should sponsor other users. The admin is here to administrate openPLM via its admin interface.

1.1.8. Configure where the files are saved

Create directory where the uploaded files will be stored:

  • mkdir /var/openPLM

Change rights:

  • chown www-data:www-data /var/openPLM

Change rights for the directory where thumbnails will be stored:

  • chown -R www-data:www-data /var/django/openPLM/trunk/openPLM/media/

1.1.9. Configure the search engine

Although haystack supports several search engines, openPLM needs xapian. You may change the setting HAYSTACK_XAPIAN_PATH if you want to put the indexes in another directory.

Once haystack is configured, you must rebuild the index:

  • ./manage.py rebuild_index
  • chown www-data:www-data -R /var/openPLM/xapian_index/

1.1.10. Configure Celery

openPLM uses Celery to manage asynchronous tasks. Celery needs a broker, you can choose any broker supported by celery but rabbitmq is recommanded.

To configure rabbitmq, you must create an user and a vhost (as root):

  • service rabbitmq-server start
  • rabbitmqctl add_user openplm 'secret' (change this password, use single quotes to put special characters or spaces)
  • rabbitmqctl add_vhost openplm
  • rabbitmqctl set_permissions -p openplm openplm ".*" ".*" ".*"

Then you must modify the BROKER_* settings in the settings.py, if you follow this tutorial, you only have to change BROKER_PASSWORD.

For example:

# settings.py
BROKER_HOST = "localhost"
BROKER_PORT = 5672
BROKER_USER = "openplm"
BROKER_PASSWORD = "secret"
BROKER_VHOST = "openplm"

celeryd, celery’s daemon must be run. openPLM ships with an init script:

  • cp /var/django/openPLM/etc/init.d/celeryd /etc/init.d/celeryd
  • cp /var/django/openPLM/etc/default/celeryd /etc/default/celeryd
  • chmod +x /etc/init.d/celeryd
  • update-rc.d celeryd defaults

To launch celeryd, run /etc/init.d/celeryd start.

1.1.11. Configure allowed hosts

Django 1.5 checks the host before serving a request. You must edit the ALLOWED_HOSTS setting so that django accepts to serve your requests.

1.1.12. Configure Apache server

Create a new apache’s site (/etc/apache2/sites-available/openplm) and add the following lines (replace the server name):

<VirtualHost *:80>
    ServerName openplm.example.com
    DocumentRoot /var/www

    WSGIScriptAlias / /var/django/openPLM/apache/django.wsgi
    # required to enable webdav access 
    WSGIPassAuthorization On 

    <Location ~ "/media/(?!public)">
        WSGIAccessScript /var/django/openPLM/apache/access_restricted.wsgi
    </Location>

    Alias /static /var/django/openPLM/static
    <Directory /var/django/openPLM/static>
        Order deny,allow
        Allow from all
    </Directory>

    Alias /media /var/django/openPLM/media
    <Directory /var/django/openPLM/media>
        Order deny,allow
        Allow from all
    </Directory>

</VirtualHost>

1.1.13. Restart Apache server

  • a2ensite openplm
  • service apache2 restart

1.1.14. First steps in openPLM

1.1.14.1. Editing the site adress

Edit the default Site (http://server/admin/sites/site/1/) and set the domain name. This should be the same domain set in the apache file and in the ALLOWED_HOST setting. You must login with the admin account. You can use localhost on a local installation.

1.1.14.2. Adding users

To add users in OpenPLM, you have two methods. The first one uses the delegation tab directly in OpenPLM and the second one uses the administration interface.

1.1.14.2.1. Recommanded method

The first method is the recommanded way to add users to an OpenPLM instance. The only constraint is that you need to have a working email configuration.

You need to log into OpenPLM. If you have just completed the installation, you can log in using the company user created during installation.

Open your web browser and go to:

http://your_site_address/

Note

Here your_site_adress is given as example but you have to use your own site adress

../_images/company_login.png

Then follow the steps described in Add a user (sponsor).

Create other users if needed, then logout and login as your new user account.

1.1.14.2.2. Second method

The second method to add users is not recomanded. Things can go wrong : permissions problems can occurs, and users might not be indexed. The only reason to use it is because you don’t need a working email configuration to use it. But even in that case, it is recommanded to take a few minutes to configure emails and use the sponsoring method.

Open your web browser and go to:

http://your_site_address/admin/

Note

Here your_site_adress is given as example but you have to use your own site adress

Enter superadmin login and password:

../_images/admin_login.png

If you see an IOError (socket closed), checks your settings, in particular the stuff related to Celery and RabbitMQ.

You can add new user and edit them going to Home>Auth>User:

../_images/admin_user.png

Do not forget to edit Home>Plmapp>User profiles in order to give correct rights for openPLM application :

../_images/admin_userprofile.png

Note

For more information about the Django Admin tool .

You are now ready for your first login:

http://localhost/
../_images/openplm_connexion.png

1.1.15. Requiring HTTPS connections

If your (apache) server support HTTPS, you can force HTTPS connections by setting the FORCE_HTTPS and SESSION_COOKIE_SECURE to True in the settings.py file.

Each HTTP connection will be redirected to an HTTPS connection.

A possible apache configuration would be (the rewrite and ssl modules must be enabled)

NameVirtualHost *:80
<VirtualHost *:80>

    WSGIScriptAlias / /var/django/openPLM/apache/django.wsgi
    # required to enable webdav access 
    WSGIPassAuthorization On 

    <Location "/admin">
        RewriteEngine On
        RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
    </Location>
    <Location "/media">
        RewriteEngine On
        RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
    </Location>

</VirtualHost>

NameVirtualHost *:443
<VirtualHost *:443>

    SSLEngine on
    SSLCertificateFile    /etc/ssl/mycert.crt
    SSLCertificateKeyFile /etc/ssl/mykey.key
    SSLVerifyClient none

    WSGIScriptAlias / /var/django/openPLM/apache/django.wsgi
    <Location ~ "/media/(?!public)">
        WSGIAccessScript /var/django/openPLM/apache/access_restricted.wsgi
    </Location>
    Alias /media /var/django/openPLM/media
    <Directory /var/django/openPLM/media>
        Order deny,allow
        Allow from all
    </Directory>

</VirtualHost>

1.1.16. Configuring E-mails

There are several variables that can be set in the settings.py to configure how mails are sent. See the Django documentation for more details.

OpenPLM adds another variable EMAIL_OPENPLM which is the e-mail address set in the from field of each e-mail. Usually, this is a no-reply@ address.

1.1.17. Turning off the debugging mode

Once your server is configured and runs fine, you should turn off the debug mode. Set the DEBUG setting to False and restart celery and apache.

1.1.18. Troubleshootings

1.1.18.1. Connection refused

This error is thrown if Celery is mis-configured and can not connect to RabbitMQ.

See Configure Celery for more details, make sure that RabbitMQ is running and do not forget to edit the BROKER_* variables in the settings.py file.

1.1.18.3. I cannot find any objects

You can rebuild the search index (Configure the search engine) and see if openPLM finds your parts.

It is possible that celery can not update the search index. You can check celery’s log (/var/log/celery/*.log) and see if it contains lines like [.. INFO/MainProcess] Got task from broker: openPLM.plmapp.tasks.update_index[...]. It may be a permission problem and chown www-data:www-data -R /var/openPLM/xapian_index/ may fix it.

1.1.18.4. I try to connect to http://server/ but I always get an “It works” page

Maybe your apache installation is a little broken. Does http://server/home/ show a more acceptable result?