Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/LibrePlan/libreplan
LibrePlan - Open Web Planning
https://github.com/LibrePlan/libreplan
Last synced: 5 days ago
JSON representation
LibrePlan - Open Web Planning
- Host: GitHub
- URL: https://github.com/LibrePlan/libreplan
- Owner: LibrePlan
- License: agpl-3.0
- Created: 2012-11-26T10:36:58.000Z (almost 12 years ago)
- Default Branch: main
- Last Pushed: 2024-10-18T08:11:55.000Z (22 days ago)
- Last Synced: 2024-10-30T00:49:40.990Z (10 days ago)
- Language: Java
- Homepage: https://www.libreplan.dev
- Size: 47.4 MB
- Stars: 289
- Watchers: 62
- Forks: 170
- Open Issues: 139
-
Metadata Files:
- Readme: README.Fedora.rst
- Changelog: NEWS.rst
- License: COPYING
- Authors: AUTHORS.rst
Awesome Lists containing this project
- awesome-starred - LibrePlan/libreplan - LibrePlan - Open Web Planning (others)
README
Configuring LibrePlan in Fedora for first time
==============================================This section explains how to set up LibrePlan in Fedora after installing the
package.It assumes that PostgreSQL is already running and configured to use ``md5`` as
the authentication method.If this is not the case, go to section "Configuring PostgreSQL to use ``md5``
authentication method", at the end of this document.1) Create libreplan database
----------------------------# psql -h localhost -U postgres < /usr/share/libreplan/pgsql/create_db.sql
2) Create libreplan user
------------------------# psql -h localhost -U postgres < /usr/share/libreplan/pgsql/create_user_postgresql.sql
3) Install LibrePlan database
-----------------------------# psql -h localhost -U libreplan -W libreplan < /usr/share/libreplan/pgsql/install.sql
4) Link LibrePlan configuration file in Tomcat6 configuration directory
-----------------------------------------------------------------------# ln -s /usr/share/libreplan/conf/libreplan.xml /etc/tomcat6/Catalina/localhost/
5) Link Java JDBC driver for PostgreSQL in Tomcat6 libraries directory
----------------------------------------------------------------------# ln -s /usr/share/java/postgresql-jdbc3.jar /usr/share/tomcat6/lib/
6) Link LibrePlan WAR file in Tomcat6 we applications directory
---------------------------------------------------------------# ln -s /usr/share/libreplan/webapps/libreplan.war /var/lib/tomcat6/webapps/
7) Restart Tomcat6
------------------# service tomcat6 restart
LibrePlan should be running at http://localhost:8080/libreplan
Review INSTALL file for more information.
Upgrading LibrePlan a.b.c to LibrePlan x.y.z
============================================This section explains how to upgrade LibrePlan from version a.b.c to version x.y.z.
1) Run upgrade scripts
----------------------# psql -h localhost -U libreplan -W libreplan < /usr/share/libreplan/pgsql/upgrade_x.y.z.sql
*VERY IMPORTANT*: If there are other versions between a.b.c and x.y.z, we need to execute those scripts in order, so the upgrade is done correctly.
*WARNING*: If you are using PostgreSQL version 8 you will have to execute the next command over LibrePlan database in order to use the upgrade script for version 1.3.0:
# su postgres -c "createlang -d libreplan plpgsql"
2) Stop Tomcat6
---------------# service tomcat6 stop
3) Remove current deployed aplication
-------------------------------------# rm -rf /var/lib/tomcat6/webapps/libreplan/
4) Start Tomcat6
----------------# service tomcat6 start
LibrePlan should be running at http://localhost:8080/libreplan
Configuring PostgreSQL to use ``md5`` authentication method
===========================================================We assume that PostgreSQL is using ``md5`` as the authentication method, instead of default ``ident``.
These are the steps to change it.
1) Add a password to 'postgres' user (for instance, let's use 'postgres' as password')
--------------------------------------------------------------------------------------# su postgres -c psql
postgres=# ALTER USER postgres WITH PASSWORD 'postgres';
postgres=# \q2) Edit '/var/lib/pgsql/data/pg_hba.conf' and replace ``ident`` by ``md5``
--------------------------------------------------------------------------# sed -i "/^host/s/ident/md5/g" /var/lib/pgsql/data/pg_hba.conf
3) Restart PostgreSQL
---------------------# service postgresql restart