How to Install and Setup Proxy-Chains in Linux
Proxy chains is an open source tool/software that is used to redirect connections either TCP or UDP(SOCKS5) through the open proxies like SOCKS5, TOR, SOCKS4 and many others. With proxy chains anonymity can greatly be achieved. To setup proxy chains you need to check if TOR service, proxy chains are installed. which tor which proxychains …
Step by Step Guide To Install MySQL 8.0 on RHEL 8/7 and CentOS 8/7
MySQL is an open-source free relational database management system (RDBMS). We will install MySQL step by step. Step 1 – Download and add below Yum repository as per the Linux distribution system’s repository list. [For RHEL/Centos 8] # wget https://repo.mysql.com/mysql80-community-release-el8-1.noarch.rpm [For RHEL/Centos 7] # wget https://repo.mysql.com/mysql80-community-release-el7-1.noarch.rpm Step 2 – Once the package …
Read more “Step by Step Guide To Install MySQL 8.0 on RHEL 8/7 and CentOS 8/7”
How to Install CouchDB on Ubuntu 20.04
Apache CouchDB is a free and open-source document-oriented database program. It belongs to NoSQL database. We can store data in JSON format and it supports many protocols to store & transfer the data. We can create multiple fields including text, numbers, lists & booleans. Install CouchDB on Ubuntu Update the System. apt-get update Add Repository & Key. curl …
How to Install & Configure Vagrant on ubuntu 20.04
Vagrant is a command-line tool.It helps to create different operating system environments with virtual box. It is used for creating and managing virtual machines. Install & Configure Vagrant on ubuntu Update the system apt-get update Install VirtualBox. apt install virtualbox Download Vagrant packages file. curl -O https://releases.hashicorp.com/vagrant/2.2.9/vagrant_2.2.9_x86_64.deb Install the downloaded file. apt-get install ./vagrant_2.2.9_x86_64.deb Check …
Read more “How to Install & Configure Vagrant on ubuntu 20.04”
How to Install & configure MongoDB on Ubuntu 20.04.
MongoDB is a free & open-source document-oriented database program. MongoDB belongs to NoSQL database. It stores data in JSON format. We can easily add or change fields. Install MongoDB on Ubuntu Update the system. apt-get update Install the required packages. apt-get install dirmngr gnupg apt-transport-https ca-certificates apt-get install software-properties-common Import & Add the Repo & key. wget …
Read more “How to Install & configure MongoDB on Ubuntu 20.04.”