• 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
Miscellaneous

How to change the exim sending IP ?

by SupportPRO Admin July 7, 2010
written by SupportPRO Admin

1.Shutdown the exim service. >>service exim stop or /etc/init.d/exim stop 2. Edit your exim configuration file. >>nano /etc/exim.conf 3. Go to “remote_smtp” section under “TRANSPORTS CONFIGURATION”. By default it would look like below: remote_smtp: driver = smtp interface = ${if exists {/etc/mailips}{${lookup{$sender_address_domain}lsearch{/etc/mailips}{$value}{}}}{}} helo_data = ${if exists {/etc/mailhelo}{${lookup{$sender_address_domain}lsearch{/etc/mailhelo}{$value}{$primary_hostname}}}{$primary_ho stname}} 4. Comment line containing “interface” and “helo_data” and add new “interface” to match with that of the new IP address. It should look like this: remote_smtp: driver = smtp interface = 208.99.113.240 # An available IP on this system. Code: chattr +aui …

Continue Reading
0 comments
0 FacebookTwitterPinterestEmail
Miscellaneous

Install Net::SSH::Perl module using CPAN

by SupportPRO Admin July 7, 2010
written by SupportPRO Admin

Net::SSH::Perl installation is relatively straightforward. If  CPAN shell is set up, you should just be able to do # perl -MCPAN -e ‘install Net::SSH::Perl’ If you don’t like that, you can download the distribution; the latest version on CPAN can be found at http://search.cpan.org/dist/Net-SSH-Perl/ Download it, unpack it, then build it as per the usual: % perl Makefile.PL % make && make test Then install it: % make install The only slightly complicated bit in the installation is that you’ll need to install Crypt:: modules depending on which ciphers you …

Continue Reading
0 comments
0 FacebookTwitterPinterestEmail
Miscellaneous

Access Control List

by SupportPRO Admin July 7, 2010
written by SupportPRO Admin

An access control list (ACL) is a list of permissions attached to a file/folder. ACL specifies which users or system processes are granted access to files/folders. Setfacl It is a command that allows you to set the ACL information for a file or directory. They are used to allow permissions to be set for individual groups and users and not just the owning user, owning group, and all other users $ setfacl -m u:<username>:r <filename> u- user r- read  

Continue Reading
0 comments
0 FacebookTwitterPinterestEmail
Miscellaneous

Error “Sorry, your domain must not begin with a digit”

by SupportPRO Admin July 7, 2010
written by SupportPRO Admin

This is a CPanel bug that prevents users from adding domains that begin with a digit, the users will get this javascript alert: Sorry, your domain must not begin with a digit. This can be fixed via ssh, and do this carefully: vi  /usr/local/cpanel/base/frontend/x/addon/index.html The text you need should be around line 68 : var pattern = /(^[.]|[.]$)/; if (domainname.match(pattern) != null) { alert(Sorry, your domain name must not begin with a digit.); return false; } You should then comment that line out ! From now, CPanel should now work …

Continue Reading
0 comments
0 FacebookTwitterPinterestEmail
Miscellaneous

cPanel logs

by SupportPRO Admin July 7, 2010
written by SupportPRO Admin

The Web / FTP Statistics area or the Logs area under the cPanel presents you with a wide variety of information about your web site, from the latest visitors to a detailed monthly summary of hits, as well as providing an error log. Using the Statistics tools we can keep track of what pages are being visited most often, and where they are being referred from. The various tools used for these purposes are:

Continue Reading
0 comments
0 FacebookTwitterPinterestEmail
Miscellaneous

ack – betterthan grep

by SupportPRO Admin July 7, 2010
written by SupportPRO Admin

ACK is a tool like grep, designed for programmers with large trees of heterogeneous source code. ACK is written purely in Perl, and takes advantage of the power of Perl’s regular expressions. How to install ACK It can be installed any number of ways: * Install the CPAN module App::Ack. If you are a Perl user already, this is the way to go. * Download the standalone version of ack that requires no modules beyond what’s in core Perl, and putting it in your path. If you don’t want to …

Continue Reading
0 comments
0 FacebookTwitterPinterestEmail
Miscellaneous

Mysql Database showing 0MB disk usage in Cpanel

by SupportPRO Admin July 7, 2010
written by SupportPRO Admin

Sometimes administrators may notice that MySQL databases display 0MB disk usage in cPanel even though the databases contain data. This usually happens due to incorrect disk usage calculation settings in the cPanel configuration. This issue can be easily resolved by updating the cPanel configuration and rebuilding the database cache. Why Does MySQL Show 0MB Disk Usage? cPanel calculates account disk usage based on specific configuration parameters.If MySQL database disk usage tracking is disabled, cPanel will not include database size in the disk usage report, resulting in databases appearing as 0MB. …

Continue Reading
0 comments
0 FacebookTwitterPinterestEmail
Miscellaneous

How to Install DA on centos/redhat

by SupportPRO Admin July 3, 2010
written by SupportPRO Admin

Follow the below steps to install Directadmin yum update yum install gcc* yum install flex cd /usr/local/src wget http://www.directadmin.com/setup.sh chmod 755 setup.sh ./setup.sh ClientID: enter client id License ID: enter license id Is eth0 ? enter NO if you are installing DA on VPS and YES on dedicated servers. service directadmin restart Directadmin admin password will be shown on the screen after completing the installation. You can get the MySQL password in DirectAdmin in /usr/local/directadmin/scripts/setup.txt. DirectAdmin will be accessible at http://ip.address:2222 If you require help, contact SupportPRO Server Admin

Continue Reading
0 comments
0 FacebookTwitterPinterestEmail
How to Reset DirectAdmin Password via SSH Shell
Miscellaneous

How to Reset DirectAdmin Password Through Shell ?

by SupportPRO Admin July 3, 2010
written by SupportPRO Admin

DirectAdmin is a popular web hosting control panel used to manage servers, websites, emails, and other hosting services. Sometimes, users may forget the admin password or need to reset it due to security reasons. In such cases, resetting the DirectAdmin password through the shell is a quick and effective solution. In this guide, we will explain simple methods to reset the DirectAdmin admin password using SSH access. Method 1: Reset Using DirectAdmin Setup Script One of the easiest ways to reset the admin password is by using the DirectAdmin setup …

Continue Reading
0 comments
0 FacebookTwitterPinterestEmail
How to check the server is Suexec enabled
Miscellaneous

How to check the server is Suexec enabled ?

by SupportPRO Admin July 3, 2010
written by SupportPRO Admin

SuExec is an essential security feature used on web hosting servers to improve account isolation and protect websites from unauthorized access. Instead of running all scripts under the default web server user, SuExec allows scripts to execute under individual user accounts. This guide explains how to check if SuExec is enabled using SSH, WHM, or cPanel access. What Is SuExec? SuExec is a security mechanism commonly used on shared hosting environments. It ensures that each website runs with its own user permissions rather than sharing the same server identity. Why …

Continue Reading
0 comments
0 FacebookTwitterPinterestEmail
Newer Posts
Older Posts

Services

  • Outsourced hosting support
  • Server administration
  • Web Programming
  • Backup Strategies for Linux Servers in GCP
    Backup Strategies for Linux Servers in GCP
    Managing Linux servers on Google Cloud Platform (GCP) goes beyond performance tuning and uptime monitoring. A well-defined backup plan is essential because even a minor misconfiguration, accidental deletion, ransomware attack,…
  • Build a Web Hosting Business Using LLMs
    How to Build a Web Hosting Business Using Large Language Models (LLMs)?
    Over the last ten years, the web hosting industry has seen a significant change in its dynamics. The industry that started out as being mostly about servers and uptime is…
  • Linux server monitoring dashboard showing I/O wait and disk bottlenecks
    How to Troubleshoot High I/O Wait in Linux
    Linux servers can handle thousands of operations every second. However, they can still slow down when storage devices become overloaded. One of the clearest signs of a storage problem is…

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
  • 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
  • Open source
  • Outsourced tech support
  • Recovery & Backup
  • Remote infrastructure Management
  • RunCloud
  • Security
  • server checkup
  • server management
  • server Migration
  • Server Monitoring
  • Server Security
  • server support
  • Server Tweaking
  • Technical Articles
  • Troubleshooting
  • 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
  • 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