Friday, March 17, 2023

Useful tools for server administration

 what are the useful tools for server administration.


1.Putty -- useful tool for prompt servers, We can get the server terminal with hostname and IP address via TCP port 22.

-- useful tool for administration in prompt servers.

2.Winscp - Useful tool for prompt servers,We can get the server terminal with hostname and IP address via TCP/SSH port 22.

  -- useful tool for Files/Folders uploading/downloading

3.Fiddler - Useful tool for performs HTTP debugging by recording the traffic between the web and your machine 

4.RDP/MSTSC - useful tool for GUI server,We can get the windows server terminal with hostname and IP address.

5.SSH (Secure Shell) - SSH is short for "Secure Shell". SSH can be defined as a protocol that is used for securely connecting to a remote system or server. It is secure because it can transfer the information in encrypted format among the client and the host.

It also transfers inputs through the client to a host. This command executes at the 22th port of the TCP/IP.

ssh user_name@hist(IP/Domain_name)  

6. FTP- Useful tool for FTP command is still useful when you work remotely on a server over an SSH session

a)Establishing an FTP connection

ftp domain.com

ftp 192.168.0.1

ftp user@ftpdomain.com

b)Working with Directories

ftp> ls

ftp> cd directory

c)Downloading files with FTP

get file

mget *.xls

d)Uploading Files with FTP

put file

put /path/file

mput *.xls

e)Closing the FTP connection

bye

exit

quit


No comments: