Pip Uninstall | Uninstall a pip package

pip uninstall
pip uninstall

pip remove
pip remove

We will show you how to uninstall a pip package that you installed with pip install. pip is a package management tool that can be used to install and manage software packages written in Python, which can be found in the Python Package Index (PyPI). pip is a recursive acronym that can stand for either “Pip Installs Packages” or “Pip Installs Python”. Alternatively, pip stands for “preferred installer program”. Let’s see how you can use pip to remove packages.

Read More

Linux crontab

Linux crontab

We’ll show you, how to use Linux crontab. In a few simple steps we will explain, how to automate your system tasks using crontab in Linux. The cron software utility is a time-based job scheduler in Unix-like operating systems. Cron is driven by a crontab (cron table) file, a configuration file that specifies shell commands to run periodically on a given schedule. The crontab files are stored where the lists of jobs and other instructions to the cron daemon are kept. Users can have their own individual crontab files and often there is a system-wide crontab file (usually in /etc or a subdirectory of /etc) that only system administrators can edit.

You can use cron to automatically run scripts within a specified period of time, create a backup of your databases or other important files, monitor the services running on your server and many other things. Let’s start

Read More

Find Large Files in Linux

find large files in linux

Find Large files LinuxToday we will show you how you can find large files in Linux. One of the most common things you will do as a Linux system administrator is finding useless large files that consume disk space and removing them to free up space for applications that actually need it. Let’s dive in and find out how we can find large files in Linux.

Read More

How To Install Redmine on CentOS 7

How To Install Redmine on CentOS 7

In this tutorial, we will show you how to install Redmine on CentOS 7. Redmine is a free and open source issue tracking and web-based project management application . Redmine is built on Ruby on Rails framework and it is cross-platform and cross-database. This guide should work on other Linux VPS systems as well but was tested and written for CentOS 7 VPS. Let’s get started with installing Redmine on your CentOS 7 server.

Read More

How to Install Maven on Ubuntu 16.04

How to Install Maven on Ubuntu 16.04

In this tutorial, we will show you how to install Apache Maven 3 on  Ubuntu 16.04. Apache Maven is a free and open-source, software project management and comprehension tool written in Java. Based on the concept of a project object model (POM), Maven can manage an entire project’s build.

how to install maven on ubuntu 16.04

With Maven, you can easily store documents, generate reports and documentation from a central piece of information. Installing Maven on Ubuntu 16.04 is a fairly easy task if you follow the steps below carefully and should not take more than 10 minutes.

Read More

How to Create a sudo user on CentOS 7

Add User to Sudoers CentOS
Add User to Sudoers in CentOS

We’ll guide you, how to create a sudo user on CentOS 7. Sudo is a Linux command line program that allows you to execute commands as superuser or another system user. The configuration file offers detailed access permissions, including enabling commands only from the invoking terminal; requiring a password per user or group; requiring re-entry of a password every time or never requiring a password at all for a particular command line. It can also be configured to permit passing arguments or multiple commands. In this tutorial, we will demonstrate, how to add a user to Sudoers in CentOS. Adding a sudo user to sudoers in CentOS 7 is a fairly easy task if you follow this 5 steps below.

Read More

How To Install Apache CouchDB on CentOS 7

How To Install Apache CouchDB on CentOS 7

Today we will show you, how to install Apache CouchDB on CentOS 7.  CouchDB is an open-source database, and was first released in 2005 and later became an Apache Software Foundation project in 2008.  It has a document-oriented NoSQL database architecture and is implemented in the concurrency-oriented language Erlang; it uses JSON to store data, JavaScript as its query language using MapReduce, and HTTP for an API.  The data can be accessed via web browser. Looks simple, right? Installing Apache CouchDB on CentOS 7 is pretty simply, in fact, you can install CouchDB in just a few minutes using the package manager on your Linux server. Let’s get started!

Read More

Error establishing a database connection

Error establishing a database connection

Error establishing a database connection, is a very common error when you try to access your WordPress site. The database stores all the important information for your website, including your posts, comments, site configuration, user accounts, theme and plugin settings and so on. If the connection to your database cannot be established, your WordPress website will not load, and more then likely will give you the error: “Error establishing a database connection” In this tutorial we will show you, how to fix Error establishing a database connection in WordPress.

Read More