|
|
Line 1: |
Line 1: |
− | {{Cool Solutions Disclaimer}}
| |
− | {{Review-Status}}
| |
− | {{Version|UCS=3.0}}
| |
− | = Nitrobit in UCS =
| |
− | This article describes the set up and configuration of the nitrobit-update-server. Nitrobit is at the moment only available as a Debian package it can be downloaded from http://www.nitrobit.de/download_nus.html also a MySQL server is needed.
| |
| | | |
− | == Installation ==
| |
− | At first, the ''unmaintained'' repository have to be activated.
| |
− | <syntaxhighlight lang=bash>
| |
− | ucr set repository/online/unmaintained=yes
| |
− | </syntaxhighlight>
| |
− | After this, the package can be installed
| |
− | <syntaxhighlight lang=bash>
| |
− | dpkg -i nitrobit-update-server_x.x.x_x.deb
| |
− | </syntaxhighlight>
| |
− | Maybe there are some missing dependences that have to be installed
| |
− | <syntaxhighlight lang=bash>
| |
− | apt-get install -f
| |
− | </syntaxhighlight>
| |
− | Now ''mod_rewrite'' and the nitrobit update server website has to be enabled
| |
− | <syntaxhighlight lang=bash>
| |
− | /usr/sbin/a2enmod rewrite
| |
− | /usr/sbin/a2enmod nitrobit-update-server
| |
− | </syntaxhighlight>
| |
− | Before the web based installation dialog installs Nitrobit correctly, a MySQL user have to be created. Type in your shell
| |
− | <syntaxhighlight lang=bash>
| |
− | mysql
| |
− | </syntaxhighlight>
| |
− | now the mysql prompt should be showed on your shell
| |
− | <syntaxhighlight lang=sql>
| |
− | mysql>
| |
− | </syntaxhighlight>
| |
− | The following step have to typed in the mysql interface
| |
− | <syntaxhighlight lang=sql>
| |
− | GRANT ALL PRIVILEGES ON *.* TO 'User'@'localhost' IDENTIFIED BY 'Password' WITH GRANT OPTION;
| |
− | </syntaxhighlight>
| |
− | The values of ''User'' and ''Password'' have to be replaced.
| |
− |
| |
− | Exit the mysql interface via
| |
− | <syntaxhighlight lang=sql>
| |
− | quit;
| |
− | </syntaxhighlight>
| |
− | Now that the pre-installation steps are done, the server can be started.
| |
− | <syntaxhighlight lang=bash>
| |
− | /etc/init.d/nitrobit-update-server start
| |
− | </syntaxhighlight>
| |
− | To finish the setup of Nitrobit, you must enter the web-based interface on
| |
− | <pre>
| |
− | https://server-name/nitrobit-update-server
| |
− | </pre>
| |
− | over this interface the server is also configurable.
| |