|
|
|---|
| Zingoolarity Homepage | Installation | Downloading and Starting the App |
| Downloading and Starting the App |
|---|
Downloading and Starting the AppZingoolarity is available as so-called "release bundles". Release bundles are TAR files, which (when untarred) produce a directory called "zingoolarity" containing the source files, the compiled executable, the configuration file and a couple of supplementary directories (containing icons and other assets). Having a look at the README.txt file in the "zingoolarity" directory contains more information. Before you start the Zingoolarity executable, you need to setup a MariaDB or MySQL database, which will be used to store your data. This can be a local MariaDB or MySQL engine or a remote SaaS offering. Assuming you have a local engine installation, open your command line, become "root" (with e.g. "sudo bash") and start the "mysql" command line client. Then enter the following SQL engine commands: create database zingoolarity; use zingoolarity; create user 'melaniebush'@'localhost' identified by 'Test123!'; grant all privileges on zingoolarity.* to 'melaniebush'@'localhost'; flush privileges; The example user "melaniebush", the database name "zingoolarity" and (naturally) the password can be changed to something different for your own installation. They need to be matched by the entries in your "zingoolarity.ini" configuration file. Open "zingoolarity.ini" with your favorite text editor and make the necessary changes. Now start Zingoolarity interactively by entering: ./zingoolarity You will receive some startup messages and everything should be fine. A typical error at this point is that the default web server port 8080 is already in use on your computer. If this is the case, make the necessary changes in the "zingoolarity.ini" file. Now open your favorite web browser and enter the following URL: http://localhost:8080/ascabera This is the default database initialization URL configured in the "zingoolarity.ini" file (the default is named after a magic spell from a video game). Click on "yes" and Zingoolarity will automatically create the necessary tables and indexes in your newly created database. Be careful if you already have data in your Zingoolarity tables. Now check the command line. Very important final step: Another important note about security for production use: Now you can start using Zingoolarity from your web browser. |