You can export email addresses from mailman mailing list to txt file using the following command. cd /usr/local/cpanel/3rdparty/mailman/bin/ ls to see the mailing list /usr/local/cpanel/3rdparty/mailman/bin/list_members_domain.com > address.txt Copy this address.txt file into public_html folder of user account. If you require help, contact SupportPRO Server Admin
Miscellaneous
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
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.
Greylisting Greylisting is a simple way of blocking emails. in Grey listing, what it checks is that if the mail is legitimate or not. If there is a prior relationship between the sender and the receiver, the message get delivered without any issue. If the sender is suspicious and unknown the message gets temporarily rejected with 451 error message.
In today’s web hosting environment, databases play a critical role in powering websites and applications. Many modern platforms depend heavily on databases such as MySQL to store and retrieve large amounts of data. However, when websites receive heavy traffic, database queries can increase significantly, which may slow down performance. To handle high traffic and reduce downtime, many large websites use database clustering and caching solutions. One of the most popular tools used for this purpose is Memcached, a distributed memory caching system designed to improve the speed and scalability of …
If you manage multiple Linux servers, logging in with a password every time can be slow and insecure. A better method is to configure SSH key-based authentication. This allows secure login without entering a password each time. In this guide, we will configure SSH access between two servers: Step 1: Login to Server1 as Root First, log in to Server1 using SSH. Step 2: Generate an SSH Key Pair on Server1 Instead of using DSA (which is outdated), it is recommended to use RSA or ED25519 for better security. Run …
You can update your WP easily by the following steps : 1. Backup your database. 2. Backup ALL your WordPress files in your WordPress directory. Don’t forget your .htaccess file. 3. Verify the backups you created are there and usable. 4. Deactivate ALL your Plugins. 5. Ensure first four steps are completed. 6. Download and extract the WordPress package fromhttp://wordpress.org/download/. 7. Delete the old WordPress files on your site, but DO NOT DELETE the following files * wp-config.php file; * wp-content folder; Special Exception: the wp-content/cache and the wp-content/plugins/widgets folders …
Plesk root directory : /usr/local/psa Plesk version : /usr/local/psa/version Plesk Admin pass : /etc/psa/.psa.shadow Plesk conf file : /etc/psa/psa.conf Apache conf : /etc/httpd/conf/httpd.conf Plesk apache startup script : /usr/local/psa/admin/bin/httpsdctl start Apachelog files : /var/log/http/ Php conf : /etc/php.ini Named conf : /var/named/run-root/etc/named.conf Named db : /var/named/run-root/var/domainname Log : /var/log/messages Names restart : /etc/init.d/named restart Mysql Db location : /var/lib/mysql Mysql conf : /etc/my.cnf Mysql log : /var/log/mysql.log Plesk qmail : /var/qmail Mail Dir for domain: /var/qmail/mailnames/domainname Maillog : /var/log/maillog Plesk home dir : /var/www/vhosts/domain.com Plesk Doc root : /var/www/vhost/domainname/httpdocs Subdomain …
Accidentally deleting a file in Linux does not always mean the data is permanently lost. Thanks to how the Linux filesystem works, it is often possible to recover a deleted file — provided a running process still has it open. This guide explains how Linux handles file deletion and how you can recover deleted files using the /proc filesystem and the lsof command. Understanding How Linux Deletes Files In Linux, a file is essentially a link to an inode. An inode stores important metadata such as: When you delete a …
In today’s digital world, online security is more important than ever. Whenever you log in to a website, make a payment, or submit personal information, your data travels across the internet. Without protection, hackers could intercept this information. This is where SSL comes in. SSL, or Secure Sockets Layer, is a security protocol that encrypts communication between a user’s browser and a website server. It ensures that sensitive information such as passwords, credit card details, and personal data remains secure during transmission. In this blog, we will explain how SSL …