- • Command: apt-get update -y
- • Command: apt-get install mongodb -y
- • Command: systemctl start mongodb
- • Command: systemctl enable mongodb
- • Command: Apt-get install curl gnupg2 unzi...
- Add 'skip-grant-tables' to my.cnf under the [mysqld] section
- restart mysql
- type mysql with no password and hit enter
- Run This:
Install and Configure Mean Stack on Ubuntu 20.04
Posted in Linux Servers on May 30, 2022
What is Mean Stack: It is a free, Open-source, popular Javascript software stack used for developing dynamic websites and web applications.
A Mean stack is based on Javascript language so it can handle all aspects of an application.
Step 1: First of all update the base system with the latest available packages.
Step 2: Install MongoDB
Step 3: Install Node.js
Install all required dependencies with this command:
How Managed Services can Boost your Business in 2022?
Posted in Amazon Cloud Services, Linux Servers, Microsoft Azure Cloud on Jan 05, 2022

Finally, new year is here.
The year 2021 presented many challenges and new opportunities for companies around the globe and we're hopeful that 2022 is the year to grow your team and bring your company to the next step.
In retrospect, one aspect that increased quickly during the year 2021 was the demand for IT specialists. Indeed, thanks to working remotely, the requirement for IT professionals is now more essential than ever before, and more complicated.
Based on the current circumstances given the current situation, it's not right to assume that the demand for IT experts will be active throu...
[Read more...]Benefits of Tally on Cloud
Posted in Linux Servers on May 05, 2021
Benefits of Tally on Cloud
Tally On Cloud- When anyone uses Tally ERP 9 on third-party cloud servers, this type of usage is called tally on cloud.
Today there is an increase in the demand for Tally on Cloud in India. We must say tally on cloud in India changes the whole working environment in businesses. When we check out the list of tally line products it is the most used and trending product. Maybe we can say this is because of the pandemic scenario in which most businesses choose to Work From Home. The Work From Home culture and the benefits of tally on cloud both make it the best choice ...
[Read more...]How to configure Nginx
Posted in Linux Servers on Nov 02, 2020
How to configure Nginx as a reverse proxy for Apache on CentOS
Nginx and Apache are powerful web servers. Apache’s power and Nginx’s speed are well known, However, both of them do have drawbacks. Apache is hard on server’s memory while Nginx can’t process PHP on its own and needs the help of the PHP-FPM or similar modules for dynamic content. In this tutorial, we are going to combine the two web servers to get the best result of each other, We are going to set Nginx as our static content processor and Apache to processing the back end and dynamic content.
Install and configure Nginx via below ...[Read more...]
How to Install MariaDB 10.5 on CentOS 8
Posted in Linux Servers on Oct 13, 2020
How to Install MariaDB 10.5 on CentOS 8 | CentOS 7
The stable version of MariaDB 10.5 was released on June 2020 and it will be supported until June 2025. You can see all the new features in MariaDB 10.5 from the changes page. The software can be used free of charge under the conditions of the GNU General Public License Version 2.
There are multiple steps to install MariaDB 10.5 and these are steps:
Step 1. Add MariaDB YUM repository
In Linux whenever you want to install any type of packages you need to install it’s yum repositories. So Run the following commands to add the repository provided ...
[Read more...]Installing and Configuring Pure-FTPD on RHEL / CentOS 7
Posted in Linux Servers on Apr 08, 2020
Step 1: When you are ready to begin, go ahead and install Pure-FTPD using yum on server.
yum install pure-ftpd
Step 2: after installation Edit the default configuration (/etc/pure-ftpd/pure-ftpd.conf) and uncommnet the following lines.
PAMAuthentication yes
PureDB /etc/pure-ftpd/pureftpd.pdb
Save and close the file.
Step 3: Configure Service pure-ftp service
systemctl enable pure-ftpd
systemctl start pure-ftpd
Step 4: Create a new ftp user account for website account using pure-pw.
pure-pw useradd $USERNAME -u $USER -g $GROUP -d /path/to/ftp/directory
For Exmaple : pure-pw useradd rajesh...
[Read more...]
Restoring deleted 'root' user and password for MySQL
Posted in Linux Servers on Nov 08, 2019
If you accidentally deleted the root user on my local setup MySQL running on OS linux. There are no other users created to get back into MySQL. I am sharing solution for the recover the root user. Get someone with SysAdmin rights and do the following:
DELETE FROM mysql.user
WHERE user = 'root'
AND host = 'localhost';
INSERT INTO mysql.user
SET user = 'root',
host = 'localhost',
password = Password('whatevernewpassword'),
Select_priv = 'y',...
[Read more...]
How to Reset MySQL or MariaDB Root Password in Linux
Posted in Linux Servers on Nov 08, 2019
One of these settings is the password for the database root account – which you must keep private and use only when strictly required.
If you forget the password or need to reset it (for example, when a database administrator changes roles – or is laid off!).
This article will come in handy. We will explain how to reset or recover forgottent MySQL or MariaDB root password in Linux.
Although we will use a MariaDB server in this article, the instructions should work for MySQL as well.
To begin, stop the database service and check the service status, we should see the environment variable we set...
[Read more...]how to install nodejs and npm on ubuntu
Posted in Linux Servers on Aug 22, 2019
Add Nodejs Package on Server
We are going to add the latest package on server so that we can install latest nodejs
sudo apt-get install curl
curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
Install Node.js on Ubuntu
sudo apt-get install nodejs
Check Node.js Version on server
node -v
v12.8.0
Check NPM Version on server
npm -v
6.10.2
Node and NPm is installed sucessfully !! Now we are going to create demo node js server
vim server.js
After creating a file, please add the following content :
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(20...
[Read more...]
How to monitor apache web server load and Page statistics
Posted in Linux Servers on Jul 13, 2019
Mod_status is an Apache module which helps to monitor web server load and current httpd connections with an HTML interface which can be accessible via a web browser.
Enable mod_status in Apache
vi /etc/httpd/conf/httpd.conf
Search for the word “mod_status” or keep scrolling down until you find below line and remove # in order to enable mod_status.
Configure mod_status
Search for the word "location" and put these lines in order to configure mod_status.
[Read more...]After this, define the same configuration for each virtual host file for any domain configured in apache. Like for example : www.exa...