How to download and install Go language on Ubuntu

In this article, we will see how to download and install Go language on Ubuntu Linux.

Go is an open source programming language that makes it easy to build simple, reliable, and efficient software.

1. Download Go(golang) language for Linux using below command.

wget https://golang.org/dl/go1.15.5.linux-amd64.tar.gz

We can get the lastest go language download from Download link
Continue reading How to download and install Go language on Ubuntu

docker: Got permission denied while trying to connect to the Docker daemon socket at unix

We have received below error when tried to run image in docker.

docker: Got permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Post http://%2Fvar%2Frun%2Fdocker.sock/v1.40/containers/create: dial unix /var/run/docker.sock: connect: permission denied. See 'docker run --help'.

docker Got permission denied while trying to connect to the Docker daemon socket at unix

Reason:

We have tried to run docker image with non-root privileges.
Continue reading docker: Got permission denied while trying to connect to the Docker daemon socket at unix

how to install Docker on CentOS 8

In this article, we will see how to install Docker on CentOS 8. Docker is available in two versions,

Docker CE (Community Edition)
Enterprise Edition (EE)
In this guide we will learn how to install Docker CE (Community Edition) on CentOS 8 or RHEL 8 Server.

System Requirements for Docker CE:

To install Docker Engine, you need a maintained version of CentOS 7. Archived versions aren’t supported or tested.

Updated Minimal CentOS 8 / RHEL 8
Sudo or root privileges
Internet Connection

SET UP THE REPOSITORY:
Continue reading how to install Docker on CentOS 8

How to install Docker on Ubuntu

In this article, we will see how to install Docker on Ubuntu.

1. Update the apt package index.

sudo apt-get update

2. Install packages to allow apt to use a repository over HTTPS.

sudo apt-get install \ apt-transport-https \ ca-certificates \ curl \ gnupg-agent \ software-properties-common

How to install Docker on Ubuntu

Continue reading How to install Docker on Ubuntu

How to install Apache Cassandra on CentOS or Redhat

In this article, we will see how to install Apache Cassandra on CentOS or Redhat.

1. Java should be there on Linux machine to install Apache Cassandra. Lets verify java installed or not.

java -version

How to install Apache Cassandra on Redhat or CentOS
Continue reading How to install Apache Cassandra on CentOS or Redhat

How to connect to MySQL using Python on Windows

In this article, we will see how to connect to MySQL using Python on Windows. In this article, we will connect to MySQL Server from python using mysql-connector. Connect to Python contains below steps.

1. Install mysql connector.
2. Create connection variable in python script file.
3. Execute command on MySQL Server using python script file.

Connection to MySQL using Python Steps:

Step1: Install mysql connector.
Continue reading How to connect to MySQL using Python on Windows

How to download and install Visual Studio Code on Mac OS

In this article, we will see how to download and install Visual Studio Code on Mac OS.

Download and install Visual Studio Code on Mac OS:

1. Open browser and go to http://www.code.visualstudio.com

2. Then, click Download for Mac.

Install Visual Studio Code on Mac OS

Continue reading How to download and install Visual Studio Code on Mac OS

How to uninstall sybase in linux

In this article, we will see how to uninstall Sybase or ASE in Linux with console mode. Uninstall can be all features or selected features. Before uninstall, please take backup of data. Following command is used to uninstall Sybase from Linux servers.

./uninstall -console

Steps to uninstall:

1. Goto sap/sybuninstall/ASESuite directory and run the following command:
Continue reading How to uninstall sybase in linux