How to secure MongoDB databases Date: 22-12-2020 You must edit mongod.conf, MongoDB’s configuration file to enable authentication. Once you enabled it and restart the Mongo service, users will still be able to connect to the database without authenticating. However, they won’t be able to read or modify any data until… Continue Reading How to secure MongoDB databases

We got this Error when we upgraded Bugzilla. This is a normal database error as well. When we ran ./checksetup.pl, we got this error. After following the below steps we upgraded Bugzilla successfully. 1) First we need to check the database version.mysql –version2) If it is below 5.5 then we… Continue Reading The used table type doesn’t support FULLTEXT indexes

How to delete databases in Amazon RDS Date: 13-05-2020 Introduction: Amazon Relational Database Service (Amazon RDS) makes it easy to set up, operate, and scale a relational database in the cloud. Amazon RDS Free Tier. It helps new AWS customers get started with a managed database service in the cloud for free. Step 1: Open Amazon RDS… Continue Reading How to delete databases in Amazon RDS

How to enable the mongo Database authentication method Date: 09/01/2020 Introduction Having an authentication for a database can not be a choice. Some may find it not necessary when it confined only use the database locally. It’s incredibly important to set up authentication if you are only using it locally.… Continue Reading How to enable the mongo Database authentication method

Solution to Fix the Character Encoding Mismatch Problem in WordPress Date posted: 29/10/2019 Introduction After switching my hosting account, therefore we might notice special / wired characters on our wordpress blog. This error is due to we have some issue with Database Character Sets in wordpress. If you are facing similar… Continue Reading Solution to Fix the Character Encoding Mismatch Problem in WordPress

MONGODB BASIC OPERATIONS Date posted :11/05/2019 INTRODUCTION: In this tutorial we are going to see about mongodb basic operations. 1)Start mongodb in port The following command used to start the mongodb with the port(27017). 2)Stop mongodb To stop the mongo services the following command used to stop the mongo services.… Continue Reading MONGODB BASIC OPERATIONS

How to use Rx-java with Room in android Date : 08/04/2019 Prerequisite If you need to use Rx-java in android, then add the following dependency in your gradle file as depend on the version of Rx-java you use. // RxJava support for Roomimplementation “android.arch.persistence.room:rxjava2:1.0.0-alpha5” Need of Rx-java Rx-java eliminates the… Continue Reading How to use Rx-java with Room in android

Joining Tables with JOIN Clauses in Database Date posted: 02/05/2019 Join clause: The SQL Join clause is used to combine records from two or more tables in a database. A JOIN means for combining fields from two tables by using common values to each. Different types of joins INNER JOIN – selects… Continue Reading Joining Tables with JOIN Clauses in Database

How to create a project in FireBase Date posted: 22/04/2019 Prerequisite Make sure that you have API higher than 26 through by Click Tools > SDK Manager. Click the SDK Tools tab. Check the Google Repository checkbox, and click OK. Click OK to install. Step 1 : Find the fire base assistant in your android studio application… Continue Reading How to create a project in FireBase

Date :28/03/2019 What is codeigniter? Codeigniter is a php framework to develop the application. Therefore, it provides the many libraries for connecting to the database. Codeigniter simple Add, Edit, Delete, View However, we create database and table. Firstly, database name is considered to be as ‘form’. similarly, creating a table… Continue Reading CODEIGNITER: SIMPLE ADD, EDIT, DELETE, VIEW