• 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 check the major information of a server without logging in?

by SupportPRO Admin August 13, 2010
written by SupportPRO Admin

Sometimes administrators need to identify server details such as the web server type, PHP version, or server configuration without having direct login access. This information can often be retrieved using simple command-line tools. One effective method is using the wget command to fetch HTTP response headers from a website. Using wget to Retrieve Server Details You can collect server information by running the following command: This command checks the website without downloading its content and displays HTTP header information returned by the server. Example Command Example output: Understanding the Output The response headers reveal important server details: This method helps administrators quickly gather major server information without SSH or control panel access. When Is This Useful? Conclusion Using the wget …

Continue Reading
August 13, 2010 0 comments
0 FacebookTwitterPinterestEmail
Miscellaneous

How to add a swap file in Linux

by SupportPRO Admin August 9, 2010
written by SupportPRO Admin

Swap space is defined as a temporary storage  that can be used when machine’s memory requirements exceeds the size of the RAM available. Usually size of the swap partition is double of RAM memory. You can add a swap partition or add a swap file. I would recommend you to add a swap partition, but sometimes isn’t  easy if you do not have enough free space. This article explains how to add a swap file to a Linux system. Determine the size of the new swap file and multiple by 1024 to find the block size. For example, the block size of a 128 MB swap file is 131072. Open the shell prompt as root and type the below command. …

Continue Reading
August 9, 2010 0 comments
0 FacebookTwitterPinterestEmail
One Way Replication of MySQL Database
Miscellaneous

One Way Replication of MySQL Database

by SupportPRO Admin July 20, 2010
written by SupportPRO Admin

One way replication of MySQL database is a commonly used method for copying data from a master database server to one or more replica servers. MySQL replication helps maintain synchronized database copies across multiple systems using binary logs, improving availability, scalability, and backup reliability. In one-way replication, data flows only from the master server to the replica servers. The replicas receive updates from the master but do not send data back. This setup is widely used for backup servers, read-only database servers, disaster recovery, and load balancing. Although MySQL replication offers many advantages, it is important to understand that corrupted or accidentally deleted data on the master server can also be replicated to the replicas. Because of this, regular database …

Continue Reading
July 20, 2010 0 comments
0 FacebookTwitterPinterestEmail
Miscellaneous

What is an SPF record, and what is it used for?

by SupportPRO Admin July 13, 2010
written by SupportPRO Admin

Sender Policy Framework (SPF) is actually an e-mail validation system designed to prevent e-mail spam by addressing a common susceptibility to get attacked. The main design intent of the SPF record is to allow a receiving MTA (Message Transfer Agent) to ask the nameserver of the domain which appears in the email (sender) and check if the originating IP of the mail (source) is authorized to send mail for the sender’s domain. The mail sender is required to publish an SPF but the sending MTA is unchanged.

Continue Reading
July 13, 2010 0 comments
0 FacebookTwitterPinterestEmail
On-screen partition manager showing /dev/sda with multiple partitions and an option to create a new partition.
Linux

Partition Creation in Linux: Complete Step-by-Step Guide

by SupportPRO Admin July 8, 2010
written by SupportPRO Admin

Managing disk partitions is an essential task for Linux system administrators. Proper disk partitioning helps organize storage, improve performance, and simplify server management. Whether you are setting up a new server or adding additional storage, understanding Partition creation in Linux is extremely important. In this guide, we will explain how to create partitions, format them, mount them, and make the configuration permanent using Linux commands. What is Partition Creation? Partition creation is the process of dividing a physical hard disk into separate logical sections called partitions. Each partition can: Linux systems commonly use partitions to organize storage efficiently. Why Partitioning is Important Disk partitioning provides several advantages: For servers, partitioning also helps isolate workloads and reduce storage-related issues. Step 1: …

Continue Reading
July 8, 2010 0 comments
0 FacebookTwitterPinterestEmail
a black monitor showing a Linux server terminal open with the Apache startup file
Miscellaneous

How to Disable Apache Core Dumps and Stop Core Files from Filling Disk Space

by SupportPRO Admin July 8, 2010
written by SupportPRO Admin

A core file (core dump) is a memory snapshot of a running process at the time it crashes or is forcefully terminated. When a PHP process is killed (due to memory limits, segmentation faults, or fatal errors), Apache HTTP Server may generate core dump files under the user’s account. These files: In most shared or VPS hosting environments, it is safe to disable core dumps unless you are actively debugging crashes. Why Core Files Are Created Core dumps are typically generated when: On servers running PHP with Apache, these dumps may appear in: or sometimes in: Are Core Files Safe to Delete? Yes. If you are not debugging crashes, core files: How to Disable Core Dumps in Apache To prevent …

Continue Reading
July 8, 2010 0 comments
0 FacebookTwitterPinterestEmail
n image showing a black computer monitor featuring Linux server terminal window open on screen displaying Exim configuration
General TopicsMiscellaneous

How to Change the Outgoing SMTP IP Address in Exim | Step-by-Step Guide

by SupportPRO Admin July 8, 2010
written by SupportPRO Admin

When a server’s primary IP address becomes blacklisted, outgoing emails may: If your server uses Exim as its mail transfer agent (MTA), you can temporarily restore email delivery by configuring Exim to send mail from an alternate IP address. This guide explains how to safely change the outgoing SMTP IP in Exim, verify the configuration, and avoid common deliverability mistakes. Why an IP Gets Blacklisted Before switching IPs, understand the root cause. Common reasons include: Changing the outgoing IP is a temporary workaround.The underlying issue must still be investigated and fixed. Step 1: Confirm the IP Is Actually Blacklisted Before modifying configuration: Check mail logs: Look for reputation or blacklist errors. Check blacklist status using: If the IP appears listed, …

Continue Reading
July 8, 2010 0 comments
0 FacebookTwitterPinterestEmail
Miscellaneous

How to Change the Exim Sending IP Address in Linux Servers

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 /etc/exim.conf 5. service exim restart or /etc/init.d/exim restart If you require help, contact SupportPRO Server Admin

Continue Reading
July 7, 2010 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 wish to use. If it doesn’t work, or if you don’t like this option, you’ll need to do the installations manually. In which case you’ll need to install the prerequisites …

Continue Reading
July 7, 2010 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
July 7, 2010 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