This document describes how to install an openPLM server.
Warning
OpenPLM 2.0 (current development version) will no longer be compatible with django 1.2 and the portage is in in progress. It is recommended to wait until the migration is done before installing this version. (2013/02/25)
This HowTo is based on:
- Debian Squeeze
- Apache Server version: Apache/2.2.16
- PostgreSQL 8.4.4
- Python 2.6.X
- Django 1.2.X
- Celery 2.3.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
First, you must install some dependencies:
- 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
- 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:
- apt-get install poppler-utils html2text odt2txt antiword catdoc
- pip install openxmllib
- apt-get install subversion
- mkdir /var/django
All files used for a new django site will be stored in this directory.
- cd /var/django
- svn co http://svn.openplm.org/svn/openPLM/
The directory ./openPLM is created and all codes are downloaded.
- cd /var/django/openPLM
mkdir /var/postgres
chown postgres:postgres /var/postgres/
find / -name initdb
/usr/lib/postgresql/8.4/bin/initdblocale-gen fr_FR.UTF-8 (replace fr_FR.UTF-8 with your locale)
su postgres
/usr/lib/postgresql/8.4/bin/initdb --encoding=UTF-8 --locale=fr_FR.UTF-8 --pgdata=/var/postgres/
/usr/lib/postgresql/8.4/bin/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; \qexit
- cd /var/django/openPLM/trunk/openPLM/
- python bin/change_secret_key.py
Edit the file /var/django/openPLM/trunk/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:
- cd /var/django/openPLM/trunk/openPLM/
- ./manage.py syncdb --all
- ./manage.py migrate --all --fake
- ./manage.py loaddata extra_lifecycles template_lifecycles to load optional 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.
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/
Run ./manage.py collectstatic. This will collect static files (javascript, images, css) in the static/ repertory.
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/
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/trunk/openPLM/etc/init.d/celeryd /etc/init.d/celeryd
- cp /var/django/openPLM/trunk/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.
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.
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/trunk/openPLM/apache/django.wsgi
# required to enable webdav access
WSGIPassAuthorization On
<Location ~ "/media/(?!public)">
WSGIAccessScript /var/django/openPLM/trunk/openPLM/apache/access_restricted.wsgi
</Location>
Alias /static /var/django/openPLM/trunk/openPLM/static
<Directory /var/django/openPLM/trunk/openPLM/static>
Order deny,allow
Allow from all
</Directory>
Alias /media /var/django/openPLM/trunk/openPLM/media
<Directory /var/django/openPLM/trunk/openPLM/media>
Order deny,allow
Allow from all
</Directory>
</VirtualHost>
- a2ensite openplm
- service apache2 restart
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.
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.
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
Then follow the steps described in Add a user (sponsor).
Create other users if needed, then logout and login as your new user account.
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:
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:
Do not forget to edit Home>Plmapp>User profiles in order to give correct rights for openPLM application :
Note
For more information about the Django Admin tool .
Then you must create a new Site (use the admin interface) and set the SITE_ID variable in the settings.py file.
You are now ready for your first login:
http://localhost/
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/trunk/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 "/static">
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/trunk/openPLM/apache/django.wsgi
<Location ~ "/media/(?!public)">
WSGIAccessScript /var/django/openPLM/trunk/openPLM/apache/access_restricted.wsgi
</Location>
Alias /static /var/django/openPLM/trunk/openPLM/static
<Directory /var/django/openPLM/trunk/openPLM/static>
Order deny,allow
Allow from all
</Directory>
Alias /media /var/django/openPLM/trunk/openPLM/media
<Directory /var/django/openPLM/trunk/openPLM/media>
Order deny,allow
Allow from all
</Directory>
</VirtualHost>
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.
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.
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.
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.
Maybe your apache installation is a little broken. Does http://server/home/ show a more acceptable result?