For cPanel users to be able to use the traceroute command via terminal, traceroute has to be installed on the server and enabled in WHM settings. Step 1. Install traceroute Ubuntu: apt-get install traceroute CentOS: yum install traceroute Step 2...
In this guide, I will be installing Magento 2.4.5 on a cPanel server where ElasticSearch has been installed. Before proceeding to the next step make sure that you are using a supported PHP version and have all required extensions enabled. Step 1...
By default ProxmoxMG only scans the subject for bad words, but you can also enable body checks. Step 1. First edit the main conf file and include in it the new file with body_check rules that We will add later: nano /etc/postfix/main.cf and to the...
Login failed to Proxmox MailGateway and 595 status code is reported:
To fix simply reset the password:
passwd
and run:
pmgconfig apicert --force 1
systemctl restart pmgproxy pmgdaemon
Source: PMG Web login reset
After Migrating Magento 2.4.4 to another server the following errors are shown: Error: Class 'IntlDateFormatter' not found in /home/pcx3/magento.store/vendor/magento/framework/ObjectManager/Factory/Dynamic/Developer.php:50 Stack trace: #0...
When using FTP from a slow internet connection, files are not fully transferred, and the following error is recorded in the messages log: [INFO] Timeout – try typing a little faster next time To resolve this, edit pureftpd configuration file:...
Here is how to backup a VPS “from the inside” Create a directory for the container: mkdir /backup Create an archive vpsbackup.tar.gz of all files and place it in this folder: tar -zcvpf /backup/vpsbackup.tar.gz --directory=/ ...
To disable SELinux for this boot:
setenforce 0
To permanently disable SELinux edit the configuration file:
nano /etc/selinux/config
or
nano /etc/sysconfig/selinux
find SELINUX=enforcing and replace it with SELINUX=disabled
then reboot the system.
Here is how to check when an EC2 instance was created: Option 1. Check the Volume attachment time Option 2. Using a Python script import boto3 ec2 = boto3.resource('ec2', region_name='instance_region_name') volume = ec2.Volume('vol-id') print volume...
Here are 3 different ways to restart EC2 AWS Instance: 1. Reboot EC2 Instance using AWS Console Login into your AWS EC2 ConsoleNavigate to “Instances” and Select instance which you want to restart, right-click on it and then select...