GitScrum is a project management tool that will help you manage your complex projects with ease. When your business deals with large data with diverse teams, a robust project management tool with cool features should help you keep your work going while keeping your team’s operation mode. With GitScrum, businesses can triage and distribute work across teams in different departments based on emails, calls, orders, projects, tasks, reminders, calendar events, and more. Whether you’re a small or large enterprise, GitScrum can help your team communicate and collaborate. and these conversations will be available on the desktop, mobile devices, and everywhere you have GitScrum installed. For more about GitScrum, please check their Homepage To get started with installing GitScrum, follow the steps below:

Install Apache2 HTTP Server

GitScrum works as a web server and the Apache2 HTTP server is the most popular open-source web server available today. To install and use Apache2 with GitScrum, run the commands below: After installing Apache2, the commands below can be used to stop, start and enable the Apache2 service to always start up with the server boots. To test whether Apache2 is installed and working, simply open your browser and browse to the hostname or IP address of the server. After browsing the server hostname and you see a page similar to above, then Apache2 is working as expected.

Install MariaDB Database Server

GitScrum also requires a database server to store its content. If you’re looking for a truly open-source database server, then MariaDB is a great place to start. To install MariaDB run the commands below: After installing MariaDB, the commands below can be used to stop, start and enable the MariaDB service always to start up when the server boots. Run these on Ubuntu 16.04 LTS Run these on Ubuntu 18.04 LTS To secure the MariaDB database server, run the command below. This will allow you to set a root password, remove anonymous users, disable remote root login, and more. When prompted, answer the questions below by following the guide.

Enter current password for root (enter for none): Just press the Enter Set root password? [Y/n]: Y New password: Enter password Re-enter new password: Repeat password Remove anonymous users? [Y/n]: Y Disallow root login remotely? [Y/n]: Y Remove test database and access to it? [Y/n]:  Y Reload privilege tables now? [Y/n]:  Y

Now that MariaDB is installed, to test whether the database server was successfully installed, run the commands below. type the root password when prompted. If you see a similar screen as shown above, then the server was successfully installed.

GitScrum is a PHP-based app and PHP is required. However, PHP 7.2 may not be available in Ubuntu’s default repositories. To run PHP 7.2 on Ubuntu 16.04 and previous, you may need to run the commands below: Then update and upgrade to PHP 7.2 Next, run the commands below to install PHP 7.2 and related modules. After installing PHP 7.2, run the commands below to open the PHP default configuration file for Apache2. The lines below are a good setting for most PHP-based CMS. Update the configuration file with these and save. Every time you make changes to the PHP configuration file, you should also restart the Apache2 web server. To do so, run the commands below: Now that PHP is installed, to test whether it’s functioning, create a test file called phpinfo.php in the Apache2 default root directory. ( /var/www/html/) Then type the content below and save the file. Next, open your browser and browse to the server’s hostname or IP address followed by phpinfo.php You should see the PHP default test page.

Create GitScrum Database

Now that you’ve installed all the packages that are required for GitScrum to function, continue below to start configuring the servers. First, run the commands below to create a blank GitScrum database. To log on to the MariaDB database server, run the commands below. Then create a database called gitscrum Create a database user called gitscrumuser with a new password Then grant the user full access to the database. Finally, save your changes and exit.

Download GitScrum Latest Release

To get GitScrum’s latest release you may want to use Composer. Composer allows you to download and manage packages and their dependencies easily. To install Composer on Ubuntu, run the commands below: After installing Composer above, change the Apache2 home directory and download GitScrum packages into a new project folder called gitscrum. After running the commands above, you should see similar lines as below: Next, change into the new folder and update GitScrum packages with the following commands. To integrate GitScrum with Github, you’ll have to sign into GitHub and create an app. To do that, click the link below to create a new app in Github. https://github.com/settings/applications/new After registering the new app, it should give you a Click ID and Secret. Copy these two details and open GitScrum .env file in its home directory. Add the highlighted details and save. Exit and save After that, run the commands below; Since you just ran the web server as root, you should make sure any newly created files are owned by the www-data user and group. To do that run the commands below:

Configure Apache2 Virtual Host

Finally, configure the Apahce2 virtual host configuration file for GitScrum. This file will control how users access GitScrum content. Run the commands below to create a new configuration file called gitscrum.conf Then copy and paste the content below into the file and save it. Replace the highlighted line with your domain name and directory root location. Save the file and exit.

Enable the GitScrum

After configuring the VirtualHost above, enable it by running the commands below Next, open your browser and browse to the server domain name or server IP address of the host. Setup wizard. Login with your GitHub account and begin setting up your environment. Conclusion: This post shows you how to install GitScrum on Ubuntu 18.04 | 16.04. If you find any error above, please use the comment form below to report it. You may also like the post below:

How to Install GitScrum on Ubuntu Linux with Apache - 91How to Install GitScrum on Ubuntu Linux with Apache - 32How to Install GitScrum on Ubuntu Linux with Apache - 38How to Install GitScrum on Ubuntu Linux with Apache - 47