-
Notifications
You must be signed in to change notification settings - Fork 0
/
INSTALL
57 lines (32 loc) · 1.25 KB
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
Anbei eine kleine Installationsanleitung für DEBIAN/UBUNTU
1. Pakete installieren:
apt-get install libapache2-mod-php5filter php5-curl php5-xmlrpc php5-cli php5-mysql mysql-server mysql-client git
Bei der Installation Password für MySQL bei Bedarf eingeben und sich dieses merken
2. Ins Web Verzeichnis wechseln
cd /var/www/
3 Aktuelle Daten von Github runterladen
git clone http://github.com/leonsio/HMS.git
4. isn HMS Verzeichnis wechseln
cd HMS/
5. MySQL vorbereiten
mysql -p -e "CREATE DATABASE HMS"
mysql -p -e "CREATE DATABASE HMS_DATA"
mysql -p HMS < share/mysql.hms.sql
mysql -p HMS_DATA < share/mysql.hms_data.sql
6. Apache Konfig bearbeiten und .htaccess und mod_rewrite aktivieren
a2enmod rewrite
vi /etc/apache2/sites-enabled/000-default
unter <Directory /var/www/> sollten die Einträge wiefolgt aussehen:
<Directory /var/www/>
RewriteEngine on
Options -Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
7. Konfiguration von HMS anpassen
vi config/config.xml
hier sollten die Parameter URL und die Datenbankverbindung, sowie ggf. Wetter-PLZ angepasst werden
Auch kann hier eigene IP (nicht die des Servers) eingetragen werden, für Autologin
8. Apache neustarten
/etc/init.d/apache2 restart