Anwar

Posts

AWS Resizing an EBS backed instance

Increased flexibility – sometimes referred to as ‘elasticity’ – is one of the major reasons organizations decide to leverage the AWS Platform. Elasticity is the...

Backup ubuntu server to USB

http://ubuntuforums.org/showthread.php?t=1106718   You could just use dd, like Code: dd if=/dev/sda of=/dev/sdb/backup_image.img /dev/sda being the servers drive and /dev/sdb being the usb drive. To restore...

Backup cPanel and Restore to Another Server

https://www.serverpronto.com/kb/page.php?id=Backup+cPanel+and+Restore+to+Another+Server Making a Backup in cPanel To create a full backup: Select Backup from the first page. 2. Select Full Backup from the second page....

Cloudflare configuration

Do you want to use Cloudflare CDN on your WordPress site? Cloudflare is one of the best WordPress CDN and firewall services available in the market. They offer a...

Cloudflare how to check cloudflare is working

  https://support.cloudflare.com/hc/en-us/articles/200172886-How-do-I-know-Cloudflare-is-working-on-my-site-   If you signed up directly for Cloudflare: Cloudflare’s IPs and nameservers will appear in lookups. If you do a ping or traceroute...

Copy one directory to another directory ubuntu

sudo rsync -avP ~/magento/. /var/www/html/ rm -rf ~/magento*     sudo adduser magento2 usermod -g www-data magento2 groups magento2 service apache2 restart su magento su...

Copy linux

http://www.linux.com/learn/answers/view/514-move-all-files-from-a-directory-to-another-one try the copy command ‘cp’ $ cp -r myfolder/* destinationfolder cp -r means copy recurrsive, so all folders and files will be copied. You...

Create the Magento file system owner

http://devdocs.magento.com/guides/v2.0/install-gde/prereq/apache-user.html#install-update-depend-user-over

Creating a .pem File for SSL Certificate Installations

https://www.digicert.com/kb/ssl-support/pem-ssl-creation.htm   https://cheapsslsecurity.com/p/convert-a-certificate-to-pem-crt-to-pem-cer-to-pem-der-to-pem/   https://medium.com/@sevcsik/authentication-using-https-client-certificates-3c9d270e8326 https://stackoverflow.com/questions/19014541/curl-to-pass-ssl-certifcate-and-password   So export the keys into .p12 keytool -importkeystore -srckeystore $jksfile -destkeystore $p12file \ -srcstoretype JKS -deststoretype PKCS12 \...