Search results

  1. K

    Steps to install Telnet Client on Linux server

    If you will check Telnet client is not installed on server by default. So we have to follow below steps to install it on server: How to install Telnet Client on Windows server? First click on “Start” and you will find “Control Panel” option, so click on it. From the list of Control Panel you...
  2. K

    How can we Register ASP.NET 4.0 in Windows Application Pool IIS 7?

    If you have not install ASP.NET 4.0 on your server then you will get below error and to resolve this error and run your ASP.NET 4.0 application, you have to follow below steps: The page you are requesting cannot be served because of the extension configuration. If the page is a script, add a...
  3. K

    Steps to install Python on Windows VPS server

    You can easily install Python on server with just few simple steps: First click on https://www.python.org/downloads/ to download the Python. Now start the Python installer with “Install Now” option. So that your installation process will start. Whenever installation will complete you will get...
  4. K

    Steps to Import/Export Firewall Settings from on server to another

    While migrating one VPS server to another if you want to transfer firewall too then you can easily migrate then via Import/Export settings. You can follow below steps to Import/Export rules on Windows server 2016. Export Firewall Rules Navigate to Start >> Administrative Tools >> Windows...
  5. K

    Steps to fix Internal Server Error Handler SSINC-shtml (HTTP Error 500)

    To resolve this error first you have to install IIS feature which helps in execution of SSINC-shtm handler. Login to Windows VPS server. Navigate to Control Panel >> Programs >> Programs and Features >> Turn Windows features on or off. Now open IIS (Internet Information Services) >> World Wide...
  6. K

    Steps to enable URL Rewrite module in IIS server

    As you know URL Rewrite module is available in Mircosoft and Apache both, but in windows it is completely intergrated with web.config file. Let’s follow below steps to enable URL Rewrite module in IIS. Login to Windows VPS server via RDP. Open IIS Manager, for that click on “Start” and open...
  7. K

    Steps to detect the website CMS simply

    First thing we can check the website index file and .htaccess file to know about the website CMS. But if you are a new comer and don't have much knowledge about website files then there are few tools available from which we can directly check about the CMS. WhatCMS Wappalyzer BuiltWith
  8. K

    Steps to configure FTP user isolation in IIS 7

    You can follow below steps to configure FTP user isolation: Login to Windows VPS server. Here click on “IIS Manager” and click on “Sites” to expand all hosted sites. Click on particular website and click on “FTP User Isolation” icon. In the next screen you will find 5 different options, you can...
  9. K

    Steps to check Logs of Windows server Reboot

    We can easily check server logs in Windows Event viewer and for that you can check below steps: Login to Windows VPS server. Navigate to Start >> All programs >> Event viewer. Click on “Custom Views” to expand it and then click on “Administrative Events”.
  10. K

    How can we check Windows Server 2012 R2 user password?

    You can follow below steps to change WindowsServer user password: First login to your Windows VPS server. After that click on Start button. Now here click on “Administrative tools” and then you will find “Computer Management” option. Navigate to Local Users and Groups >> Users Choose...
  11. K

    Steps to know the Backup/Restore in IIS 7 Configuration

    You can run below command to backup IIS configuration: %windir%\system32\inetsrv\appcmd.exe add backup "Backup-Name" If you want to restore IIS configuration file backup then you can run below command: %windir%\system32\inetsrv\appcmd.exe restore backup "Backup-Name" You can check all the...
  12. K

    Steps to enable detailed IIS error messages

    If you are getting any error on website then it is must to know the exact reason in which detailed error can help alot. Let’s see following steps to enable detailed IIS error messages: Login to Windows VPS server. Now open IIS Manager. In the left side bar click on “Sites” option to expand...
  13. K

    Steps to check SMTP Logs in IIS server

    If you are not able to send mail through PHP or ASP.NET script then you can try to resolve the issue by checking the SMTP logs in IIS. You can check below steps to check logs. How to enable SMTP Logs? Login to your Windows VPS server. Navigate to Start >> Administrative tools. Now you have to...
  14. K

    Steps to modify RDP Screen Resolution on Windows VPS server

    You can follow below steps to change screen resolution in RDP: First click on “Start” button and then search for “Run”. You will see a command box where you have to type “mstsc” and then click on OK. You will be able to show new RDP connection where you have to click on “Show options” button...
  15. K

    Not able to login in Windows VPS server. Why?

    You can check the reason must be one of the following: First check you are using correct IP address and port number to login into RDP. Default port of windows RDP is 3389 so check this port is not blocked on your firewall or ISP. And if you are using any configured port then you have to check...
  16. K

    Steps to manage website redirection in IIS 7

    You can check below steps to redirect website in IIS. Login to Windows VPS server. Navigate to Start >> Administrative Tools >> Internet Information Services (IIS) Manager. Click on the server name in the left side of your screen and then click on “Sites” Now choose your particular domain and...
  17. K

    Steps to configure sudo command in Linux vps

    Its not a good idea to grant ALL permission to users like this: root ALL=(ALL:ALL) ALL admin ALL=(ALL:ALL) ALL So to resolve this we have to properly configure sudo user and for that you can use below command: User_name Machine_name=(Effective_user) command You can check the below...
  18. K

    Difference Between su and sudo command

    The main difference between su and sudo command is that su command needs the password of targeting account and in sudo command you need password of current user, that’s why it is safe to use sudo command as it does not share sensitive information.
  19. K

    Steps to manage periodic recycling in IIS 7

    You can follow below steps to manage periodic recycling: First login to Windows VPS server. Navigate to Start >> Administrative Tools >> IIS. Click on “Server name” in left hand side. After that click on Application Pools and you can view all the hosted websites in the list. Click on particular...
  20. K

    Steps to manage failure settings for Application Pool in IIS

    You can follow below steps to configure Fail Protection in IIS Application Pool: First login to Windows VPS server. Click on IIS to open it. On left hand side you will find “Connection pane” where you have to click on servername. From list you have to click on “Application Pool”. You will find...
Top