What is WebIssues?
WebIssues is an open source, multi-platform system for issue tracking and team collaboration. It can be used to store, share and track issues with various attributes, description, comments and file attachments. It is easy to install and use but has many capabilities and is highly customizable. -https://webissues.mimec.org/
Installation
- Log into the Debian device
- Run the following commands in a terminal:
# update software repositories
sudo apt update
# install available updates
sudo apt upgrade -y
# install Apache HTTPD and MySQL
sudo apt install apache2 mariadb-server mariadb-client curl -y
# install PHP components
sudo apt install php php-common php-mysqli php-mbstring php-imap -y
# configure the MySQL database
sudo su
mysql_secure_installation - Press Enter to login as root
- Type N and press Enter to not switch to socket authentication
- Type Y and press Enter to set a root password, type the password twice to confirm
- Type Y and press Enter to remove anonymous users
- Type Y and press Enter to disallow root login remotely
- Type Y and press Enter to remove the test database
- Type Y and press Enter to reload privilege tables
- Run the following command to login into MySQL:
mysql -u root -p
- Authenticate with the root password set earlier
- Run the following commands to create the database and database user
CREATE DATABASE webissues;
GRANT ALL ON webissues.* TO 'webissues_rw'@'localhost' IDENTIFIED BY 'W3b1ssu3s!';
FLUSH PRIVILEGES;
EXIT;
exit - Continue with the following commands to download and extract WebIssues in the Apache webroot
# download latest WebIssues version
sudo wget -O webissues.tar.gz https://github.com/mimecorg/webissues/releases/download/v2.0.3/webissues-server-2.0.3.tar.gz
# extract webissues.tar.gz
sudo tar xzvf webissues.tar.gz --directory /var/www/html
# rename webissues folder
sudo mv /var/www/html/webissues* /var/www/html/webissues
# set the owner of the new webissues directory to www-data
sudo chown -R www-data:www-data /var/www/html/webissues
# restart apache2 service
sudo systemctl restart apache2 - Open a web browser and navigate to http://DNSorIP/webissues
- Click the Configure Database link
- Select a Language > Click Next
- Select Create new database tables and MySQL > Complete the form as follows
Host name: localhost
Database name: webissues
User name: webissues_rw
Password: W3b1ssu3s! - Click Next at the bottom right of the page
- Give the server a name and enter and confirm a password for the admin user > Click Next
- Review the installation summary > Click Install
- After the installation completes click the Web Client link
- Welcome to WebIssues
Source: https://doc.mimec.org/webissues-guide/installation.html