ImpressumKontakt

Bloerker-Installation

Aus Depon.Net - Wiki

Wechseln zu: Navigation, Suche

Here you find installation instructions for the micro-messaging-application Bloerker.

Inhaltsverzeichnis

Windows

Preinstallations

You'll need to have the following installations before you can start to install Blörker:

  • Microsoft Windows XP Service Pack 2, Windows Vista, Windows 7, Windows Server 2003 or Windows Server 2008
  • .Net Framework 3.5
  • Running MySQL Server (example, also SQL Server can be used) [1]

Installation

1. Download and Extract Blörker [2] in a folder of your choice

2. Connect to MySql Server and create database and user for Blörker

mysql -u root -p{password}
CREATE DATABASE bloerker;
GRANT SELECT,UPDATE,INSERT,DELETE ON bloerker.* TO '{user}'@'%' IDENTIFIED BY '{pwd}';

3. Select database and execute installation script:

USE DATABASE bloerker;
{Paste 'install/install_mysql.sql'}

Or

mysql -u root -p{password} --database={bloerker} < install/install_mysql.sql

4. Modify configuration file 'bin/configurations/general.xml' and include database credentials. You will find more configuration options within this file.

5. Execute bin/Bloerker.exe

6. Open Browser @ http://127.0.0.1:8081

Linux

The writing for installation within Linux is in progress. It is expected that Blörker runs without modifications of source code or binaries also under Mono.

Follow the instructions for Windows and adopt appropriate commands.