AWS CloudWatch provides custom metric monitoring. It is very useful when require to monitor performance of the custom application or server. Here we are going to guide how monitor Apache HTTP server performance using AWS CloudWatch custom metrics. All the installation and configuration performed on CentOS, most of the commands work on any LINUX / …
Category Archive: Amazon Web Services
Dec 01
Solved – AWS RDS MySQL ERROR 1227 (42000) at line : Access denied
When your are trying to import your data into RDS MySQL, it may prompt with following error message. “ERROR 1227 (42000) at line xxx: Access denied; you need (at least one of) the SUPER privilege(s) for this operation” This can be fixed by removing the DEFINER from MySQL dump. You can use following simple …
Sep 03
Redirect non-www requests to www using AWS Route 53
Many web masters prefer to redirect non-www request to www. There are lots of different approaches for that and most famous one is using 301 redirection on the web server to handle this redirect part. Then what happen is, server must need to put extra processing for this redirection request. If the server have to …