• Free Checkup
  • Emergency Support
  • Login
  • Sign Up
Server Management Tips
  • Cloud Support
    • Cloud Management
    • AWS support
    • Google Cloud support
    • Azure Support
    • DevOps Support
  • Server Administration
    • Node Management
    • Dedicated Server Support
  • OutSourced Tech Support
    • Dedicated Support
    • Dedicated Tech Support
    • Semi-Dedicated Tech Support
    • Dedicated Team Support
  • Client Support
    • Helpdesk Support
    • Live Chat Support
  • Emergency Support
    • Hourly Administration
    • Server Migration
    • Server Abuse Handling
  • Development
    • Hire a Developer
    • Hire a Development Team
Server Management Tips
Server Management Tips
  • Cloud Support
    • Cloud Management
    • AWS support
    • Google Cloud support
    • Azure Support
    • DevOps Support
  • Server Administration
    • Node Management
    • Dedicated Server Support
  • OutSourced Tech Support
    • Dedicated Support
    • Dedicated Tech Support
    • Semi-Dedicated Tech Support
    • Dedicated Team Support
  • Client Support
    • Helpdesk Support
    • Live Chat Support
  • Emergency Support
    • Hourly Administration
    • Server Migration
    • Server Abuse Handling
  • Development
    • Hire a Developer
    • Hire a Development Team
Copyright 2021 - All Right Reserved
Server Tweaking

How to enable IP rotation in exim

by SupportPRO Admin April 25, 2011
written by SupportPRO Admin

If your server are having multiple IP address and you want to send each emails in different IP, then please follow the steps. This is used to maintain the ip reputation. Also, please make sure that this is not used for spamming. 1. vi /etc/exim.conf 2. Search for the line : interface = 3. Replace this line with interface = xxx.xxx.x.1${eval:${substr{-2}{1}{$tod_zulu}}%9+1} 4. If your server is having ip’s from xxx.xxx.x.11 to xxx.xxx.x.20 , you can use above line. +1 is is the starting ip ie xxx.xxx.x.1’1′ and %9 is the increment value ie 11(xxx.xxx.x.11) to how much. Here it is 20 (xxx.xxx.x.20) If you require help, contact SupportPRO Server Admin

Continue Reading
April 25, 2011 0 comments
0 FacebookTwitterPinterestEmail
Server Security

Server Level PCI Compliance & Procedures

by SupportPRO Admin April 5, 2011
written by SupportPRO Admin

PCI DSS (Payment Card Industry Data Security Standards) are the official security standards created by the PCI Security Standard Council to reduce payment card frauds. It provides elaborate and comprehensive standards to enhance payment card data security. The core purpose of PCI DSS this is to create as secure of an environment as possible for users to process their credit cards. To adhere by PCI DSS, service providers and merchants who sell products over the web are required to have a periodic PCI Security Scans that are usually defined by the credit card companies. PCI Security Scans are initiated over the Internet by an Approved Scanning Vendor (ASV). These scans pinpoint the vulnerabilities and misconfiguration of websites, servers, applications and …

Continue Reading
April 5, 2011 0 comments
0 FacebookTwitterPinterestEmail
Linux Basics

To find ports opened on the server

by SupportPRO Admin March 29, 2011
written by SupportPRO Admin

Login to the server: telnet localhost “portnumber” netstat command to find open ports ———————————- netstat –listen To display open ports and established TCP connections, enter —————————————————————- netstat -vatn To display only open UDP ports try the following command: ———————————————————— netstat -vaun To display the list of open ports, enter: ——————————————— lsof -i If you require help, contact SupportPRO Server Admin

Continue Reading
March 29, 2011 0 comments
0 FacebookTwitterPinterestEmail
Technical Articles

Command to check the performance of the hard disk

by SupportPRO Admin March 29, 2011
written by SupportPRO Admin

You can use the command given below to check the hard disk performance. hdparm /dev/sda /dev/sda: IO_support = 0 (default 16-bit) readonly = 0 (off) readahead = 256 (on) geometry = 30401/255/63, sectors = 488397168, start = 0 If you require help, contact SupportPRO Server Admin

Continue Reading
March 29, 2011 0 comments
0 FacebookTwitterPinterestEmail
Disable Root Login on a cPanel Server
Server Security

How to Disable Root Login on a cPanel Server (Secure SSH Access ) ?

by SupportPRO Admin March 29, 2011
written by SupportPRO Admin

Disabling direct root login over SSH is an important security practice for any cPanel server. Allowing remote root access increases the risk of brute-force attacks and unauthorized logins. By disabling root login, administrators must first log in using a normal user account and then switch to root privileges securely. This approach also allows administrators to access WHM/cPanel without the root password, improving security while maintaining full administrative control over the server. This guide explains how to disable root SSH login on a cPanel server safely without locking yourself out. Why Disable Root SSH Login? The root user has complete control over the server. If attackers gain root access, the entire system can be compromised. Security benefits include: Important Step Before …

Continue Reading
March 29, 2011 0 comments
0 FacebookTwitterPinterestEmail
General Topics

Using Social Medias to bring in more Hosting Business

by SupportPRO Admin March 22, 2011
written by SupportPRO Admin

Marketing and brand promotion have always been critical focus areas for growing businesses. Many companies have grown and flourished on the foundation of effective marketing strategies. Over time, the concept of marketing has evolved significantly, driven largely by advancements in technology. To remain relevant and competitive, businesses must adapt to these changing marketing strategies. One of the most impactful changes in recent years is social media marketing. Businesses of all sizes have embraced it as a low-cost yet highly effective promotional tool capable of driving large volumes of targeted traffic. Social media platforms help spread awareness about products, services, brands, features, updates, and even limitations covering almost every aspect of a business. Why Social Media Matters for Web Hosting Companies …

Continue Reading
March 22, 2011 0 comments
0 FacebookTwitterPinterestEmail
Server Tweaking

Issue with Rvsitebuilder

by SupportPRO Admin March 18, 2011
written by SupportPRO Admin

If you are getting error while accessing the Rvsitebuilder from cpanel ==================== Fatal error: The encoded file /var/cpanel/rvglobalsoft/rvsitebuilder/www/ionctestlicense.php requires a license file. The license file /var/cpanel/rvglobalsoft/rvsitebuilder/rvsitebuilder.lic has expired. in Unknown on line 0 ===================== Then Please login to the server through root and execute. ======== root@server[#]rm -f /var/cpanel/rvglobalsoft/rvsitebuilder/rvsitebuilder.lic root@server[#] rm -f /var/cpanel/rvglobalsoft/rvsitebuilder/rvsitebuilder-pro.lic root@server[#] perl /usr/local/cpanel/whostmgr/docroot/cgi/rvsitebuilderinstaller/autoinstaller.cgi ======== This will fix the issue If you require help, contact SupportPRO Server Admin

Continue Reading
March 18, 2011 0 comments
0 FacebookTwitterPinterestEmail
restrict number of connections per vhost/dir and limit the bandwidth for files
Server SecurityServer TweakingTechnical Articles

How to restrict number of connections per vhost/dir and limit the bandwidth for files

by SupportPRO Admin March 11, 2011
written by SupportPRO Admin

Managing server resources efficiently is essential for maintaining performance and stability. If a particular domain or directory is consuming excessive bandwidth, you can control its usage using the mod_bw module in Apache. The mod_bw (bandwidth module) allows administrators to restrict bandwidth usage and limit the number of simultaneous connections for specific virtual hosts (vhosts) or directories. This is especially useful in shared hosting environments where resource control is critical. When to Use mod_bw You can use mod_bw when: Steps to Install and Configure mod_bw 1. Check Apache Version Run the following command to verify your Apache version: 2. Download the mod_bw Module 3. Extract the Package 4. Review Configuration Instructions 5. Install the Module 6. Create Configuration File 7. Verify …

Continue Reading
March 11, 2011 0 comments
0 FacebookTwitterPinterestEmail
Miscellaneous

How to change ssh private Key

by SupportPRO Admin March 11, 2011
written by SupportPRO Admin

1.Copy the key and save it as .ppk extension [for eg: rsa.ppk] 2.Open puttygen.exe ( This can be downloaded from http://www.putty.org/) 3.Select Load and browse the path to the .ppk file where you have stored. 4.Then Click “Save private key”. It will ask for save and save the file in a locaion in .ppk format. [For eg: C:\MyKeys\key.ppk ] 5.Right-Click Putty and selet Edit and specify the path such asstart c:\putty -ssh root@xxx.xxx.x.x-i C:\MyKeys\key.ppk” If you require help, contact SupportPRO Server Admin

Continue Reading
March 11, 2011 0 comments
0 FacebookTwitterPinterestEmail
Miscellaneous

How To Test The Hard Drive for Problems

by SupportPRO Admin March 11, 2011
written by SupportPRO Admin

It is not often that we need to test the hard drive for problems, but you never know when you may have to. One of the major reasons to perform a test would be if you are seeing read-only errors often (which can normally be fixed by a reboot), the system crashing out too often, or you are seeing very slow read/write times for small amounts of data. This can often be a sign of a failing drive, something a test can point out.

Continue Reading
March 11, 2011 0 comments
0 FacebookTwitterPinterestEmail
Newer Posts
Older Posts

Services

  • Outsourced hosting support
  • Server administration
  • Web Programming
  • How Unchecked Log Growth Brings Production Servers to Their Knees
    When Logs Attack: How Unchecked Log Growth Brings Production Servers to Their Knees
    A Slowdown With No Obvious Cause A server doesn’t need a CPU spike or a memory leak to grind to a halt. Sometimes, the real problem is something much simpler:…
  • How to Reduce Website Response Time
    How to Reduce Website Response Time
    Nobody sticks around for a slow website. If your pages take too long to load, visitors leave, and in many cases, they’re gone before the content even finishes rendering. We…
  • Virtual Machine
    Step-by-step Guide to Expanding a Xen Virtual Machine.
    XenServer is a virtualization platform that provides performance for virtualized server and client operating systems, delivering near-bare metal server performance. On a single host computer, the Xen hypervisor safely runs…

Categories

  • ansible
  • Artificial Intelligence
  • AWS
  • AWS managed service provider
  • AWS Support
  • aws support services
  • Build Automation
  • Business
  • Case Study
  • Cloud
  • Cloud Managed Service
  • Cloud Support Services
  • Cloudflare
  • Compiling tools
  • cPanel
  • Database
  • dedicated server support
  • Dedicated servers
  • Dedicated tech support
  • DevOps
  • Disaster Recovery
  • Docker
  • GCP
  • General Topics
  • JetBackup
  • Linux
  • Linux Basics
  • live chat
  • live chat support
  • Miscellaneous
  • MySQL
  • Open source
  • OpenClaw
  • Outsourced tech support
  • Recovery & Backup
  • Remote infrastructure Management
  • RunCloud
  • Security
  • Server
  • server checkup
  • server management
  • server Migration
  • Server Monitoring
  • Server Security
  • server support
  • Server Tweaking
  • Technical Articles
  • Troubleshooting
  • VPS
  • web hosting
  • web hosting support
  • Windows Server
  • WordPress

CONTACT US

Sales and Support

Phone: 1-(847) 607-6123
Fax: 1-(847)-620-0626
Sales: sales@supportpro.com
Support: clients@supportpro.com
Skype ID: sales_supportpro

Postal Address

1020 Milwaukee Ave, #245,
Deerfield, IL-60015
USA

  • Industry Solutions
    • Web Hosting Services
    • Service Providers
    • E-Commerce Companies
    • Software Vendors
    • Web Developers
    • ISPs
    • Services
  • About Us
    • Company
    • Technical Blog
    • Careers
    • FAQ
    • Partners
    • Site Map
    • Affiliates
  • Popular Plans
    • Dedicated Team Support
    • Helpdesk Support
    • Hourly Administration
    • Legal
    • Privacy Statement
    • Terms of Use
    • How we work

©2022  SupportPRO.com. All Rights Reserved

X-twitter Facebook Linkedin Rss
Server Management Tips
  • Home