Telnet is a network protocol used on the Internet or local area networks to provide a bidirectional interactive text-oriented communication facility using a virtual terminal connection. Using telnet server we can make a connection to a remote host using telnet client and get terminal. Telnet server is not secured for remote access, that’s why we do not recommend to use Telnet server for login to remote server. To access Linux system remotely use ssh servers. Install Telnet Server Telnet server is available under default yum repositories. Execute following command to install it # yum install telnet-server Enable Telnet Service Telnet…
Author: Rahul
Internet Information Services (IIS) by Microsoft serves as a platform for hosting websites and web applications. It is natively included in Windows operating systems, offering an intuitive interface for overseeing websites and web applications. Additionally, IIS caters to advanced users and administrators by offering management capabilities via the Command Prompt. This guide will walk you through the steps of establishing a website and an application pool within IIS through the Command Prompt. Step 1: Open Windows Command Prompt The first step in creating a website and application pool in IIS using the Command Prompt is to open the Command Prompt…
FTP (File Transfer Protocol) is TCP based service. FTP is widely used for transferring files over a network. There are various FTP servers are available to use like vsftpd, proftpd, pureftpd etc. FTP uses two different ports – 1. Port 20 is used for the data port, But the data port is not always on the 20 port. It may change in passive mode. 2. Port 21 is used as command port. FTP works in two different modes Active FTP and Passive FTP as per server and client configuration. In this article, I am trying to define Active FTP vs…
The command line can be a daunting place for beginners. It requires a fair bit of memorization and typing to navigate. However, it can also be incredibly powerful. If you’re unfamiliar with the command line interface, you might find it difficult to grep content from files. That’s where Cut commands come in. These tools let you quickly cut text out of a file. They’re especially useful when you want to grep columns in a file. What’s more, they’re easy to learn and master. In this article, we’ll show you how to use the Cut command in Linux. We’ll also show…
A .PFX (Personal Information Exchange) file is used to store a certificate and its private and public keys. For example, if we need to transfer an SSL certificate from one windows server to another, You can simply export it as a .pfx file using IIS SSL export wizard or MMC console. Sometimes we need to extract private keys and certificates from the .pfx file, but we can’t directly do it. This article can be helpful for you to do the same. This article will also be helpful for you to migrate an SSL certificate to AWS ELB because ELB required…
NRPE is the most popular method to monitor remote Linux systems using Nagios server. But in some cases, we don’t want to install NRPE on the remote system or we can’t install it. In that situation, there are few alternate ways to monitor a remote system. In this tutorial we are describing to check_by_ssh method. Step 1 – Setup Key Based SSH Firstly it’s required to make sure that the Nagios server is able to connect the client using ssh without prompting password. To do it create an ssh key pair on Nagios server su – nagios ssh-keygen Copy public…
Amazon is the leading cloud hosting providers, You can get any type of server from AWS with very small in size to very large in size. If you have created a windows server instance in AWS EC2 hosting account, This article will help you to How to Find Windows Server Administrator Password in AWS Instance. Follow the below steps to Get Default Windows Password in AWS Instance using key file. Requirements First make sure you have AWS console access for your server along with private key created/used during creation of AWS Windows server instance. 1. AWS Console Access 2. Private…
MySQL is a popular open-source database management system that is widely used to store, organize, and retrieve data. It is commonly used in web development, as it is easy to set up, has a simple syntax, and is widely supported by hosting providers. In this article, we will cover the basics of creating and dropping databases in MySQL. Creating a Database in MySQL To create a new database in MySQL, you can use the `CREATE DATABASE` statement. The syntax for this statement is as follows: # Syntax: CREATE DATABASE employee_data; Replace “database_name” with the desired name for your database. For…
phpMyAdmin is the most popular web interface for managing MySQL databases. But there are many other tools available which we can use in place of phpMyAdmin. Using this article, I am trying to provide you a list of alternatives of phpMyAdmin. 1. Adminer Adminer is the my first choice to use rather than phpMyAdmin. Adminer is available in single php script, which can be easily uploaded in document root and easily access without any installation or configuration. Adminer also can be used to manage SQL Server, Oracle, PostgreSQL etc. Download Adminer 2. MyWebSQL MyWebSQL is an ultimate desktop replacement for…
Amazon SQL Server RDS Instance doesn’t support to restore data from .bak files. So using this article I am writing to how to migrate your SQL server database to Amazon RDS instanace with easy steps. If you looks on AWS migration steps its too complicated, But windows Azure migration wizard tools provide an easier way to migrate data between local SQL Server to AWS RDS instance. Step 1. Download SQLAzureMW Tool 1.1. At the very first we need to download SQLAzureMW using below url and extract on your system at any location. Download SQLAzureMW tool 1.2. Use SQL Server Management…