mongodb replication setup step by step on linux

In this article, we are going to setup MongoDB replication step by step on Ubuntu Linux.

What is Replication?
Replication is the process of synchronizing data across multiple MongoDB servers. Replication provides redundancy and increases data availability with multiple copies of data on different MongoDB servers.

mongodb replication setup step by step on linux

Continue reading mongodb replication setup step by step on linux

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

How to start stop PostgreSQL on Ubuntu

This article covers how to start, stop and restart PostgreSQL on Ubuntu. This is PostgreSQL DBA routine task.
We are going to cover stop, start and restart using service and systemctl commands. But, not covering to kill the PostgreSQL process from Linux shell.

Stop Start and Restart PostgreSQL using service:

sudo service postgresql stop sudo service postgresql start sudo service postgresql restart

Examples for How to start stop PostgreSQL on Ubuntu:
Continue reading How to start stop PostgreSQL on Ubuntu

PuTTY Fatal Error Network error: Connection timed out

I have faced the issue when connecting to CentOS Server or Ubuntu Server using putty thrown error “PuTTY Fatal Error:Network error: Connection timed out” on Ubuntu and CentOS which are virtual machines installed on VMWare.

PuTTY Fatal Error Network error: Connection timed out

Solution PuTTY Fatal Error Network error: Connection timed out on Ubuntu:
Continue reading PuTTY Fatal Error Network error: Connection timed out

How to install MySQL on Ubuntu

In this article, we have explained how to install MySQL on Ubuntu Server. This article contains 4 steps.

Install MySQL on Ubuntu:

Prerequisites:
1. Must have internet conneciton.
2. Make sure you are logged in as a user with sudo privileges

1. Update Index Package:

sudo apt-get update

Continue reading How to install MySQL on Ubuntu