OpenProject installieren: Unterschied zwischen den Versionen

Aus Hostsharing Wiki
Zur Navigation springen Zur Suche springen
(Vorbereitung)
 
Keine Bearbeitungszusammenfassung
Zeile 59: Zeile 59:
== Download, Entpacken, Konfiguration ==
== Download, Entpacken, Konfiguration ==


Anmeldung per ssh als User  ''xyz00-project":
=== Installation of OpenProject ===


    ssh xyz00-project@xyz00.hostsharing.net
Wir installieren die OpenProject Community Edition. siehe https://github.com/opf/openproject-ce.





Version vom 25. November 2019, 15:12 Uhr

OpenProject ist eine umfangreiche Projektmanagement-Software. Die Software ist multiprojektfähig; für jedes Projekt stehen folgende Werkzeuge zur Verfügung:

  • Wiki
  • Vorgangsverfolgung (Ticketsystem, Issue Tracker)
  • Zeiterfassung
  • Dokument- und Dateiverwaltung


Diese Anleitung beschreibt, wie man OpenProject auf der Managed Hosting Plattform von Hostsharing installieren kann. OpenProject lässt sich in jedem Managed Webspace betreiben.

Vorbereitungen

Mit Hilfe von HSAdmin wird angelegt:

  1. Ein User als Service-User mit /bin/bash als Shell, zum Beispiel Beispiel: xyz00-project"
  2. Eine Domain mit xyz00-project als Domain-Administrator, zum Beispiel "prj.example.com"
  3. Einen Postgresql-User xyz00_dbuser mit Passwort meinPasswort
  4. Eine Postgresql-Datenbank xyz00_prjdb mit Datenbank-Owner xyz00_dbuser

Weiterhin benötigt OpenProject eine geeignete Version der Programmiersprache Ruby:

Installation of Ruby

Die Installation-Anleitung für OpenProject schlägt für die Installation rbenv vor.


   xyz00@h20 $ sudo -u xyz00-project -i
   xyz00-project@h20:~$ cd doms/projekt.example.com/
   xyz00-project@h20:~/doms/projekt.example.com$ rm -rf subs/www/ subs-ssl/www/ htdocs- ssl/.htaccess 
   xyz00-project@h20:~/doms/projekt.example.com$ cd
   xyz00-project@h20:~$ git clone https://github.com/sstephenson/rbenv.git ~/.rbenv
   xyz00-project@h20:~$ touch .profile
   xyz00-project@h20:~$ echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.profile
   xyz00-project@h20:~$ echo 'eval "$(rbenv init -)"' >> ~/.profile
   xyz00-project@h20:~$ source ~/.profile
   xyz00-project@h20:~$ git clone https://github.com/sstephenson/ruby-build.git ~/.rbenv/plugins/ruby-build
   xyz00-project@h20:~$ rbenv install 2.6.1
   xyz00-project@h20:~$ rbenv rehash
   xyz00-project@h20:~$ rbenv global 2.6.1

Als Test bitte aufrufen: ruby -version

Die Anzeige sollte etwa das Folgende enthalten: ruby 2.6.1pXYZ (....) [x86_64-linux]

Installation of Node

Die Installation-Anleitung für OpenProject schlägt für die Installation nodeenv vor.

   xyz00-project@h20:~$ git clone https://github.com/OiNutter/nodenv.git ~/.nodenv
   xyz00-project@h20:~$ echo 'export PATH="$HOME/.nodenv/bin:$PATH"' >> ~/.profile
   xyz00-project@h20:~$ echo 'eval "$(nodenv init -)"' >> ~/.profile
   xyz00-project@h20:~$ source ~/.profile
   xyz00-project@h20:~$ git clone git://github.com/OiNutter/node-build.git ~/.nodenv/plugins/node-build
   xyz00-project@h20:~$ nodenv install 8.16.2
   xyz00-project@h20:~$ nodenv rehash
   xyz00-project@h20:~$ nodenv global 8.16.2

Ein Test mit node --version solte anzeigen: v8.16.2

Download, Entpacken, Konfiguration

Installation of OpenProject

Wir installieren die OpenProject Community Edition. siehe https://github.com/opf/openproject-ce.