• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
sharadchhetri

sharadchhetri

AI, Linux, Cloud and DevOps

  • Home
  • Resources
    • Learn Linux
    • Articles
  • My Projects & Work
    • My Nagios Plugin
    • My Dockerhub Repo
    • My WordPress plugins
    • My Github Repos
  • Facebook Page
  • Contact
  • Privacy Policy
  • About Me

Articles

How to install Magento 1.7.0.2 in linux, bug issue is also solved

June 10, 2013 by Sharad Chhetri Leave a Comment

How to install magento-1.7.0.2 in linux, bug issue is also solved In this tutorial we will learn How to install Magento 1.7.0.2 in linux While installing Magento 1.7.0.2 I found a bug ,the bug is also resolved. Details of Practical : Operating System : Ubuntu 12.10 Arch : i386 Web Server : Apache Database Server: […]

Filed Under: Articles Tagged With: magento

PHP Extensions “0” must be loaded Magento

June 10, 2013 by Sharad Chhetri Leave a Comment

PHP Extensions “0” must be loaded Magento While installing the Magentos 1.7.0.2 I got this error even I installed the php5-mysql and all dependency. To solve the issue follow the given below steps. Step 1 : Edit line no. 72 in app/code/core/Mage/Install/etc/config.xml and search keyword pdo_mysql Note: It should be in extension tag And write […]

Filed Under: Articles

blockquote in style.css applicable to wordpress and blogger sites

June 9, 2013 by Sharad Chhetri Leave a Comment

blockquote for style.css applicable to wordpress and blogger sites Blockquotes are useful in blogging or any website because with the help of blockquote you can highlight the text in box with border or borderless as per your choice. Many readers of my blog have asked the question about how to have a common blockquote which […]

Filed Under: Articles Tagged With: wordpress

Linux Tac Command : Reverse Of cat Command Output

June 9, 2013 by Sharad Chhetri Leave a Comment

tac command

The tac command shows the output of cat command in reverse manner hence the name of this command is also in reverse form that is tac . As we know cat command is used to see the content of file,creating the new file and concatenating the two file also (If you do not know soon […]

Filed Under: Articles, Linux Commands Tagged With: cat, linux command, tac

How to put slider shortcode only in home page in WordPress

June 8, 2013 by Sharad Chhetri 2 Comments

How to put slider shortcode only in home page in WordPress My personal blog is running in wordpress CMS. Today I want to put header on home page only. For this first I installed the WP slider plugin and set the all slides which I need. I got the slide shortcode which can be easily […]

Filed Under: Articles, Tips And Tricks Tagged With: wordpress

WordPress host IP changed not able to open wp-admin and site page looks scattered

June 6, 2013 by Sharad Chhetri 4 Comments

WordPress host IP changed not able to open wp-admin and site page looks scattered Today I was working on my Virtual Machine in my laptop and was trying to check some theme options.In Virtual Machine I have set ip address to be taken dynamically from DHCP server.Today my wifi change the ip address of Virtual […]

Filed Under: Articles, Tips And Tricks Tagged With: wordpress

Error: Could not stat() command file ‘/var/lib/nagios3/rw/nagios.cmd’!

June 5, 2013 by Sharad Chhetri Leave a Comment

Error: Could not stat() command file ‘/var/lib/nagios3/rw/nagios.cmd’! While working on Nagios Server in Ubuntu 12.04 LTS,I was setting external command and stuck with this error message. To solve the problem follow these commands sudo /etc/init.d/nagios3 stop sudo dpkg-statoverride –update –add nagios www-data 2710 /var/lib/nagios3/rw sudo dpkg-statoverride –update –add nagios nagios 751 /var/lib/nagios3 sudo /etc/init.d/nagios3 start […]

Filed Under: Articles, Monitoring Server, Tips And Tricks Tagged With: Nagios

Sorry, but Nagios is currently not checking for external commands, so your command will not be committed!

June 5, 2013 by Sharad Chhetri Leave a Comment

Sorry, but Nagios is currently not checking for external commands, so your command will not be committed! This message comes on nagios dashboard when externals commands are disable. To enable external commands.Edit the nagios.cfg file and enable the value of check_external_commands parameter. Change the value from 0 to 1 In Debian or Ubuntu: vi /etc/nagios3/nagios.cfg […]

Filed Under: Articles, Monitoring Server Tagged With: Nagios

How to install nagios server in Ubuntu 12.04 LTS

June 5, 2013 by Sharad Chhetri 1 Comment

How to install nagios server in Ubuntu 12.04 LTS In this tutorial we will learn how to install server in Ubuntu 12.04 LTS. Nagios is one the robust and very good monitoring server which is highly used in corporate network either it is Small business Unit or big corporate. It also comes with Open source […]

Filed Under: Articles, Monitoring Server Tagged With: Nagios

SSH WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED

June 3, 2013 by Sharad Chhetri Leave a Comment

REMOTE HOST IDENTIFICATION HAS CHANGED

When you try to ssh the another remote Linux/Unix machine , you might have encountered with the WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! . This message we have often seen when we work in Linux machines. In this post we have provided the Reason and Solution on this Warning. root@tuxworld:/tmp# ssh 10.10.0.16 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ WARNING: […]

Filed Under: Articles, SSH, Tips And Tricks Tagged With: ssh, troubleshooting

How To Get SSH Public Key Fingerprint Information

June 3, 2013 by Sharad Chhetri Leave a Comment

ssh public key fingerprint

Long time ago one of my U.S system admin was very security conscious. He asked me to create id_rsa.pub key in server. I created the key with ssh-keygen -t rsa command. And send it him through encrypted email. Next day he wrote me ,what is the ssh key fingerprint ? First let’s have some introduction. […]

Filed Under: Articles, Linux Commands, SSH, Tips And Tricks Tagged With: linux command, ssh

Useful 3 Pastebin links which I mostly use

June 3, 2013 by Sharad Chhetri Leave a Comment

Useful 3 Pastebin links which I mostly use This time I would like to share some information about pastebin which I use.Just take a very good definition from wikipedia : “A pastebin is a type of web application where anyone can store text for a certain period of time. This type of website is mainly […]

Filed Under: Articles Tagged With: pastebin

How to set JAVA environment variables in Linux

June 3, 2013 by Sharad Chhetri 10 Comments

Introduction When you work on Java or any Java based project , you might need to set JAVA environment variables JAVA_HOME and PATH in Linux. After installing new java (jdk or jre) or latest Java you may have usually find that the version of java is not exactly the same which you have installed. It […]

Filed Under: Articles, Tips And Tricks Tagged With: java

How to install own git server with ssh and http access by using gitolite and gitweb in CentOS

June 1, 2013 by Sharad Chhetri 70 Comments

In this tutorial we will learn about,how to install own git server with ssh and http access by using gitolite and gitweb in CentOS.For user management in Git Server,we will use the Gitolite.For showing the repository list on web interface,we will use Gitweb. And Smart HTTP is configured in Apache, to access the Git server […]

Filed Under: Articles, Git Server, Server, Version Control System Tagged With: git, Git Server

How to create own Git Server with Gitolite and Gitweb in Ubuntu

May 31, 2013 by Sharad Chhetri 24 Comments

In this tutorial we will learn how to create own git server.This time I have selected Gitolite for git server and gitweb to display git repositories. Why Gitolite ? Answer: Easy to setup,have user management through command line,very less memory and cpu usage. Why Gitweb? Answer: To display repositories in web interface and view can […]

Filed Under: Articles, Git Server, Server, Version Control System Tagged With: git, Git Server

  • « Go to Previous Page
  • Page 1
  • Interim pages omitted …
  • Page 25
  • Page 26
  • Page 27
  • Page 28
  • Page 29
  • Interim pages omitted …
  • Page 33
  • Go to Next Page »

Primary Sidebar

Articles

  • Install n8n docker in Ubuntu for practicing
  • Bash Script: MySQL Database backup to AWS S3
  • Automate no touch Jenkins setup wizard on docker (jcac)
  • How to run and configure Jenkins in Docker container
  • Complete Guide: How to install Nagios Monitoring on AlmaLinux / Rocky Linux
  • Install KVM on Ubuntu 24.04 LTS ( Bash Script )
  • How to install GIMP 2.10 on Ubuntu / Debian
  • 5 ways to check Ubuntu version of system (commands and GUI)
  • How To Solve Forgot MySQL / MariaDB Root Password
  • Create Self Hosted Build Agent Docker Image for Azure DevOps

Copyright © 2026 ยท
The material in this site cannot be republished either online or offline, without our permission.
Proudly Blogging From India.

  • Contact
  • About Me
  • My WordPress plugins
  • Privacy Policy