ekhaliyan Archive
Mongodb 5.0 is is getting started with sudo systemctl start mongod.service on Debian 10 . Issue Below error is being raised while starting the mongodb instance 5.0 on Linux/Debian – Root Cause This error is …
As per mongodb documentation, we can use the mongo command to access the database using below command – Connect to mongodb database locally $ mongo -u user1 -p password123 –authenticationDatabase admin mongo -u user 127.0.0.1/admin …
Please find the content of mongod.service file which needs to be created for starting mongod service. Description=MongoDB Database Server Documentation=https://docs.mongodb.org/manual After=network-online.target Wants=network-online.target User=mongod Group=mongod Environment=”OPTIONS=-f /etc/mongod.conf” EnvironmentFile=-/etc/sysconfig/mongod ExecStart=/usr/bin/mongod $OPTIONS ExecStartPre=/usr/bin/mkdir -p /var/run/mongodb ExecStartPre=/usr/bin/chown mongod:mongod …
Top 10 Python Basic Programs – Most Common Tutorials Here is the list of programs Leap Year Check Tags : top python program, basic python code, leap year python program.
Lets try to create Linked List in Python as part of out Data structure Tutorial. Problem Statement Create Linked List Basic Program in Python. Solution Lets understand the Very basic about Linked List – Linked …
Python program to reverse a number, reverse digits of a number, reverse integer, python programs, python programs to reverse a number, basic python programs. Reverse Digits of an integer – One of Most Common Interview …
In this post we will see how to merge two or more lists in python – various list examples. Method 1 -Concatenate Two or more Lists in Python Lets take example of two list as …
In this post we will learn about history of Python Language and introduction to Python , way for writing programs Introduction to Python – History, IDE, Syntax Guido Van Rossum invented the python programming language …
Objective : We are given a binary tree we need to print the data of tree diagonally , it is also know as Diagonal Tree Traversal. Sample Input : Let us consider the below tree 1 3 …