How To Install ReviewBoard on CentOS 7
Introduction
In this tutorial we learn how to install ReviewBoard on CentOS 7.
What is ReviewBoard
Review Board is a powerful web-based code review tool that offers developers an easy way to handle code reviews. It scales well from small projects to large companies and offers a variety of tools to take much of the stress and time out of the code review process.
We can use yum or dnf to install ReviewBoard on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install ReviewBoard.
Install ReviewBoard on CentOS 7 Using yum
Update yum database with yum using the following command.
sudo yum makecache
After updating yum database, We can install ReviewBoard using yum by running the following command:
sudo yum -y install ReviewBoard
Install ReviewBoard on CentOS 7 Using dnf
If you don’t have dnf installed you can install DNF on CentOS 7 first.
Update yum database with dnf using the following command.
sudo dnf makecache
After updating yum database, We can install ReviewBoard using dnf by running the following command:
sudo dnf -y install ReviewBoard
How To Uninstall ReviewBoard on CentOS 7
To uninstall only the ReviewBoard package we can use the following command:
sudo dnf remove ReviewBoard
References
Summary
In this tutorial we learn how to install ReviewBoard on CentOS 7 using yum and dnf.