Webapp Install Guide
First, make sure you have
the pre-requisites installed for the server.
Getting the database ready
You will need to create the schema and users on your database.
On the database server
shell> mysql -uroot -p --host=localhost
mysql> create database kontrollbase;
mysql> grant all on kontrollbase.* to 'kb_admin'@'localhost' identified by 'password';
mysql> grant all on kontrollbase.* to 'kb_app'@'localhost' identified by 'password';
mysql> grant select,super,process,replication client on *.* to 'kontrollbase'@'webapp_server' identified by 'password';
System Commands
Make sure all files are owned by the webserver user. The following command assumes you installed to /var/www/html/kontrollbase and that the webs-server is running under the 'apache' user and group. The last step is to import the schema file into the kontrollbase database you created at the start.
shell> cd /var/www/html/kontrollbase
shell> chown -R apache:apache *
shell> mysql --user=kb_admin -p --host=localhost kontrollbase < /var/www/html/kontrollbase/install/sql/kontrollbase-schema-2.0.1.sql
Completing installtion
After that is complete, go ahead and continue with the installation wizard.
example: http://localhost/kontrollbase/install.php
Post Install
Once the installation script completes you will be redirected to the login page. The default user and password is 'admin'/'password'. You will want to change your password in the System Management -> Users tab.