Installation von CloudLog

Veröffentlicht am 

Ich bin auf folgende Software Website: http://www.cloudlog.co.uk aufmerksam geworden, die man entweder als Cloud Lösung nutzen (Gebühr von 4 Pfund im Monat) oder auf einem Linux Computer/Raspi selbst installieren kann.

Ich habe eine Installationsanleitung geschrieben aus Basis der Informationen auf der wiki Page in GitHub und folgender Internetseite .

Die Software selbst habe ich bisher nur kurz verwendet und kann noch nichts über die Leistungsfähigkeit sagen.

Installation

sudo apt update && sudo apt upgrade -y

sudo apt install git
sudo apt-get install apache2 -y
sudo apt-get install php libapache2-mod-php -y
sudo apt-get install mariadb-server mariadb-client php-mysql -y
sudo mysql_secure_installation

I will now suggest answers to each question the script will ask you:

  1. Enter current password for root (enter for none): – ENTER
  2. Switch to unix_socket authentication [Y/n] – N
  3. Change the root password? [Y/n] – N
  4. Remove anonymous users? [Y/n] – Y
  5. Disallow root login remotely? [Y/n] – Y
  6. Remove test database and access to it? [Y/n] – Y
  7. Reload privilege tables now? [Y/n] – Y

Auswählen von Apache2 im Dialogfenster/Passwort vergeben
sudo rm -r /var/www/html/*
sudo git clone https://github.com/magicbug/Cloudlog.git /var/www/html
sudo chmod -R 777 /var/www/html/
sudo mysql -u root -p

CREATE DATABASE cloudlog;
CREATE USER 'user'@localhost IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON cloudlog.* TO 'user'@'localhost';
Im Browser die lokale Adresse des Linus Servers aufrufen
http://<localIP>/install
 
User/Passwort und DB Name gemäß vorherigen Script eintragen. Erstellung der DB dauert etwas (ca. 2 Minuten)

Wenn Ihr alles richtig gemacht habt, sollte nach der Erstellung der Datenbank folgender Screen erscheinen.

Um in den Produktion Modus zu schalten bitte die index.php anpassen

sudo nano /var/www/html/index.php

       define(‚ENVIRONMENT‘, ‚production‘);