This article describes how to back up metadata for an individual Virtual Machines on Citrix Xen Servers. In this article, you will get step by step instructions for backing up metadata. Also at end of this article, there is a small shell script which can be used for backup metadata for all VMs running on the Xen server. 1. Backup VMs Metadata in Citrix Xenserver 1.1. Find VMs UUID Use the following command to get list of UUIDs of all vms along with other details. this UUID will be used in next steps. xe vm-list is-control-domain=false is-a-snapshot=false uuid ( RO)…
Author: Rahul
Git has released 1.9.5 version on Dec 18, 2014. Git is a free and open source distributed version control system. It is designed to handle a small to very large projects with speed and efficiency. To know more about Git 1.9.5 read Git release notes. This article will guide you to install Git 1.9.5 on CentOS/RHEL 7/6, Fedora 27,26 Systems using the source code. To learn about Git, access Git console on your browser and know about its uses. Use this tutorial for installing latest Git on your Redhat based systems. Step 1 – Install Required Packages Before compiling Git…
DKIM (DomainKeys Identified Mail) is a method of signing electronic emails using public-private key. DKIM is used by receiving mail server for identifying email, that they are sent by authorized mail servers. It also minimizes the possibility of getting emails SPAM. This tutorial will provide you a quick and easy way to set up DomainKeys with your POSTFIX running on CentOS and RHEL systems. How DKIM Works ? When we configured DKIM on sending servers. First, we generated a public/private key pair for signing outgoing messages. The public key is configured as TXT record on a domains name server, and…
Malware is known as malicious software. It can be any script, app or anything which is harmful for our system and data in any kinds. Linux Malware detect (LMD) is a malware scanner for linux released under the gnu GPLv2 license, that is intended around the threats faced in hosted environments. It uses threat data from network edge intrusion detection systems to extract malware that’s actively getting used in attacks and generates signatures for detection. The threat landscape in shared hosted environments is unique from that of the standard AV products detection suite in that they are detecting primarily OS…
This article will help you to connect Node.js application with MongoDB. Also, configure MongoDB drive for nodejs using Mongoose node application on CentOS and Redhat systems. Step 1 – Prerequsities We assume you already have Node.js and MongoDB installed on your system. If not installed follow our below tutorial first to complete the required installation. Install MongoDB on CentOS & Fedora Install Node.js on CentOS & Fedora Step 2 – Install mongoose Module Mongoose provides a straightforward schema-based solution to modeling your application data and includes built-in typecasting, validation and many more. npm install mongoose Step 3 – Connect Nodejs…
Configuring a Dynamic Host Configuration Protocol (DHCP) server on CentOS or Red Hat Enterprise Linux (RHEL) systems is a fundamental task for network administrators aiming to automate the assignment of IP addresses and other network settings to client devices. This not only simplifies network management but also enhances the efficiency and reliability of network services. This article delves into essential tips, tricks, and best practices for configuring a DHCP server on CentOS/RHEL, ensuring a robust and efficient network setup. Understanding DHCP Before diving into the configuration nuances, it’s crucial to grasp the essence of DHCP. This network management protocol automates…
JavaMail API supports the JavaMail (javax.mail) interface for sending email messages. It provides classes for sending email from remote smtp server with authentication like Gmail, sendgrid etc. In this article we are using JavaMail API for sending emails using Java programming language through remote smtp server. This articles example are using Gmail smtp server as a remote smtp server for sending emails. Step 1: Setup JavaMail Environment First we need to download jar file containing all classes in javax.mail. Download jar (mail.jar) file from oracle official website. Now set the classpath in system environment. Windows users make sure you have…
JavaMail API is a powerful and flexible tool that enables Java developers to incorporate email sending capabilities into their applications. As part of Java’s extensive library, it can manage complex email systems using Simple Mail Transfer Protocol (SMTP) and other messaging protocols. This article offers a comprehensive guide to using JavaMail API with a local SMTP server for sending emails. Understanding JavaMail API The JavaMail API provides a platform-independent and protocol-independent framework that allows users to build mail and messaging applications. The API provides classes that model a mail system. JavaMail does not implement an email server, instead, it allows…
Email sending functionality is a crucial part of many web applications. From account verification emails to forgotten password reminders, email helps build communication bridges between your application and its users. One of the most popular libraries for sending emails from PHP applications is PHPMailer. It has a host of features that make it a robust and flexible solution for managing your application’s email functionality. This article will provide a practical approach to implementing PHPMailer in your applications. What is PHPMailer? PHPMailer is an open-source library in PHP that provides a simple and flexible way to send emails from within PHP…
This article will help you to Install MongoDB with NodeJs and configure their connectivity using Mongoose node app on Ubuntu and Debian systems. For PHP users use our previous article to configure MongoDB with PHP and Apache2 on Ubuntu servers. Prerequsities We assume you already have Node.js and MongoDB installed on your system. If not installed follow our below tutorial first to complete the required installation. MongoDB Installation: Install MongoDB on Ubuntu Install MongoDB on Debian Node.js Installation: Install Node.js on Ubuntu Install Node.js on Debian Install “mongoose” Module Mongoose provides a straight-forward, schema-based solution to modeling your application data…