Blog

WordOps

WordOps Installation with Ubuntu 20.04.2 LTS

WordOps is an essential toolset that eases WordPress site and server administration.   Key Features Easy to install One step automated installer with migration from EasyEngine v3 support   Fast deployment Fast and automated WordPress, Nginx, PHP, MySQL & Redis installation   Custom Nginx build Nginx 1.18.0 – TLS v1.3 Cloudflare HTTP/2 HPACK & Brotli …

How to recover MySQL root password?

How to recover MySQL root password? Let’s learn how to recover MySQL root password in case you have lost it. Know how to recover MySQL root password. Log in to account using SSH. You must login to your account using SSH as the root user to recover MySQL root password. Stop the MySQL service Use …

Stanley Samuel

Stanley Samuel, Who Love The Saxophone

Music is not just a passion or hobby, it is the essence of life! An extension and expression of self. Here we are on this amazing musical journey – together with you! Still a “Work In Progress”. Will remain one. The focus is on MUSIC, its quality, feel, experience and YOU. We are not commercial …

ताईंना सांगा… पदर… नीट घ्या…!

रात्र बरीच झाली होती… बाईकवरून मी आपल्या घरी जायला निघालो… काही दिवसांपूर्वीच मला ही नवी नोकरी लागली होती… कधी दिवसपाळी तर कधी रात्रपाळी करून मी खूपच थकून जात असे. ऑफिसमधून बाहेर पडलो त्यावेळी रात्रीचा एक वाजला होता. नाईट शिफ्ट संपलेले बरेच लोक मला आता मुख्य रस्त्याच्या दिशेने जाताना दिसत होते. मीही त्यांच्या सोबत मुख्य रस्त्यापर्यंत …

बुडव्या (Budavya)

मे महिन्याचा शेवटचा आठवडा. मी बरोबर लक्षात ठेवलंय. तीन वर्ष सलग… तीन जणं बुडालीयेत. आख्खी सोसायटी तीन वेळा आक्रोशी रडलीये. तीनही पोरंच… आठ दहा वर्षाची असतील. चांगली पोहणारी. त्यांच्या आईबापाकडे बघवत नव्हतं. असं कसं झालं ? कशाला विचारताय ? ऊत्तर नसलेला प्रश्न. पूल असणार्या मोजक्या सोसायट्या, त्यापैकी आमची एक. टीचभर नाही, चांगला लांबलचक पूल आहे …

Importing and Exporting of MYSQL Database with Command Line SSH

Importing MYSQL Database Syntax $ mysql -u username -p database_name < path_to_mysql_file_here Importing existing MYSQL database with filename "wordpress.sql" stored at directory "/home/nishant/", Username is "root", terminal will prompt for asking password. $ mysql -u root -p wordpress < /home/nishant/wordpress.sql Exporting MYSQL Database Syntax $ mysqldump -p -u username database_name > path_to_mysql_file_here Exporting MYSQL database …