Posted On April 1, 2019

Backup and Restore Prerequisites

kimconnect 0 comments
blog.KimConnect.com >> Linux >> Backup and Restore Prerequisites
1. Remote machine is Centos and Local machine is Windows, install Cygwin (including “Admin,” “Base,” “Devel,” and “Net”)
2.  Create SSH key
#local machine$  ssh-keygen -t dsa
#remote machine$ ssh-keygen -t dsa
#remote machine$ vim ~/.ssh/authorized_keys
run as root, and enter the copied key from C:\cygwin\home\[username]\.ssh\id_rsa.pub
Edit /etc/ssh/sshd_config and uncomment:
RSAAuthentication yes
PubkeyAuthentication yes3.

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

How to Enable XRDP Session Sharing

# Edit the xrdp init file sudo vim /etc/xrdp/xrdp.ini # Add this at the bottom…

Apache HTTPd

# Install Apacheyum install httpd# Configure Apachevim /etc/httpd/conf/httpd.conf##### Change portNameVirtualHost 127.0.0.1:8080Listen 127.0.0.1:8080######### Set DocumentRootDocumentRoot "/var/www/kimconnect"######…

Install MySQL on CentOS 5.2

To install MySQL, we do this:yum install mysql mysql-devel mysql-serverThen we create the system startup…