ssh

  1. K

    Here’s How You Can Copy Files over SSH Without Password

    Typically when you use SSH to copy files from one server to another, you’re required to provide the password. The process goes something like this: You use the secure copy command and name the original file and the destination file like this: scp [options] original_file destination_file You...
  2. K

    Steps to check inode limit with command line

    An inode count is an total number of files or directories in an account has. In inode count emails and files are also included; if you want to know the limit of inode count for your account then you can check further. Login to server via SSH. First male sure you are in home directory and for...
  3. K

    Freezing act of SSH connection – Do you want to maintain an active connection?

    It’s tough to maintain the connection active when the act of SSH connection freeze takes place. This process symbolically represents that the SSH connection is inactive now later it got frozen. You can even say it got stuck with the last ending process. So, first, you are losing up the...
  4. K

    How can we restart Apache via SSH?

    If you are server admin and need to restart Apache then you can check below steps: Login to your server via Putty. Now you will see the fields to enter Hostname and Port number. In hostname field you can either enter IP address or Hostname of server. Now you will see new windows where you have...
  5. K

    Steps to connect your account via sFTP

    As we know sFTP stands for SSH file transfer protocol, we can connect server securely. For this you just need two things: You can use putty software after downloading it. You can make sftp connection easily with this. After downloading this software you have to enter your server details, you...
  6. K

    How can we upload files through SSH?

    For that it is must to have access of SSH. You can login to SSH by entering hostname or IP address and port of server. After that change directory in which you want to upload your files. cd domains/domain.com/public_html/ You have to enter path of your folder where you have to upload your...
  7. K

    SSH Keys Generation

    SSH permits the webserver to access the (CLI) command-line interface. It provides you with a perfect remote connection and security for the webserver. SSH program has two setups such as SSH key pairs and SSH keys to get connected using a password. You can even say it is a challenge in...
  8. K

    Complete Guide to Fixing the SSH: Could Not Resolve Hostname: No Such Host Is Known

    As an admin, you will always find yourself working with SSH. In some cases, you’re going to inevitably come across errors. And one such error is the “So Such Host is Known” error. As and when you get such error, it implies that either the server is down or the hostname is incorrect and hence SSH...
  9. K

    VPS Ping/SSH Error

    Do you want to know the solution for the VPS Ping/SSH error? Before that, let us discuss the error of VPS Ping/SSH error in detail. This error will occur when your public IP address doesn’t have the address of MAC. If your data routes get interference or congestion, then it’s a result of the...
  10. K

    Steps to reset Plesk admin password with SSH Linux server

    Here are the steps to reset Plesk password with SSH server and for that you have to follow below steps: Login to SSH. After that you have to run below command. # plesk bin admin --set-admin-password -passwd 'NEW PASSWORD' Now check that you new password is working or not. NOTE: This tutorial...
  11. K

    Complete Guide to Blacklist or Whitelist an IP Address via SSH

    At times, you’ll feel the need to blacklist a particular IP address or multiple IP addresses. They may carry out spam attacks on you because of which they’re flagged as dangerous. You can blacklist an IP address via through your Web Host Manager. But that’s also possible through your SSH. After...
  12. bhawanisingh

    SSH and SSH2 - What’s the Difference ?

    Security of Data Communication over Networks can be enabled by using SSH (Secure Shell) Protocol. Founded by Tatu Ylonen in 1995, SSH Protocol offers an Infrastructure which helps to Secure Data Transportation, Secure Network Services and Remote Command Execution between Computers in a Network...
  13. bhawanisingh

    How to Enable SSH Login Notification on Linux CentOS server?

    Is your Linux server is used by multiple people on same time? If yes, then add an SSH login notification on your server so you come to know whenever and whom login. It will send you an email when someone login to your account. But for this its must that your server will be able to send an email...
  14. bhawanisingh

    Screen Command in Linux

    Screen command in Linux Server : The screen command is a utility provided by Linux to execute some process under or inside a screen. By using this you can simply detach from the screen and keep working on that server without keep waiting for the process to get completed. It is quite very...
  15. bhawanisingh

    Some Useful LSOF commands

    LSOF commands LSOF is the short form of "LiSt Open Files". It is a command line utility which is used to list the information about the files that are opened by various processes. In unix, everything is considered as a file, ( pipes, sockets, directories, devices, etc.). So by using lsof, you...
Top