Tag: tech

  • Setting up Swap Memory in linux server

    Clickbait version: Increase your server’s system memory for free! 😀

    Swap space in Linux is used when the amount of physical memory (RAM) is full. If the system needs more memory resources and the RAM is full, inactive pages in memory are moved to the swap space.[src]

    Note: Not recommended to be used in production environment. Swap space is very slow compared to physical memory and can seriously affect your application performance.

    It’s fairly common to run into “System.OutOfMemoryException” if you are running a memory heavy application or multiple applications on a remote server.  To mitigate this issue you can simply create a Swap space for your server and use your disk space as system memory, this will be a little slower but you wouldn’t have to upgrade your server to higher memory one if you just need some MBs of extra ram or maybe need to perform a single task which needs some extra memory.

    To enable 2GB of swap space use the following commands

    SWAPFILE=/var/swapfile
    SWAP_MEGABYTES=2048
    
    sudo /bin/dd if=/dev/zero of=$SWAPFILE bs=1M count=$SWAP_MEGABYTES
    sudo /bin/chmod 600 $SWAPFILE
    sudo /sbin/mkswap $SWAPFILE
    sudo /sbin/swapon $SWAPFILE
    

    (more…)

  • Let’s Encrypt (free SSL) on WordPress running on Debian 8

    Let’s Encrypt is an amazing service which allows you to add SSL certificates for free on your website. But the process isn’t straightforward if you are running Debian 8. No worries, you can always use the Let’s Encrypt git repo to install the certificates.

    Sidenote: You can use this method to install Let’s Encrypt SSL on any OS and for any application.
    (more…)

  • S3 as outbound mail content storage for Ruby On Rails

    “Information is the oil of the 21st century, and analytics is the combustion engine.”

    Since Amazon SES and some other email service providers don’t store show you the email content and history, you are left hanging if you want to some historical email performance and analytics. Keep track of outbound emails for Logging, Analytics and Audit purposes by following this simple setup.

    (more…)