Listing Thumbnail

    LEMP Stack on Ubuntu 24 (Hardened) with Performance Agent

     Info
    Sold by: Gigabits 
    Deployed on AWS
    AWS Free Tier
    Hardened image with security baselines applied at first boot. This is a repackaged open source software product wherein additional charges apply for custom operational agents. Includes MySQL query monitoring, PHP profiling, NGINX traffic analytics, and resource alerts. Deploy a tuned, observable web stack in minutes.

    Overview

    GigaOps Performance Agent delivers a production-tuned LEMP stack on Ubuntu 24 with integrated performance monitoring built by Gigabits. It gives you observability across every layer of the stack from first boot.

    Key Features:

    • MySQL Query Monitor: Identifies slow queries, lock contention, and inefficient indexes.
    • PHP Profiler: Tracks script execution time, memory usage, and error rates.
    • NGINX Traffic Analytics: Real-time request rates, response codes, and upstream latency.
    • Resource Alerts: Notifies when CPU, memory, or disk cross thresholds.
    • Security Hardening: Firewall rules, NGINX security headers, and MySQL least-privilege defaults on first boot.
    • One-Command Diagnostics: Run gigaops lemp-report for full-stack health.

    Ideal For: Web developers and agencies deploying PHP applications who need a performant, observable LEMP stack without manual tuning.

    Highlights

    • Full-stack performance monitoring for LEMP (Linux, NGINX, MySQL, PHP) on Ubuntu 24. MySQL query monitor identifies slow queries, lock contention, and inefficient indexes.
    • PHP profiler tracks execution time and memory usage. NGINX traffic analytics show real-time request rates, response codes, and upstream latency for your LEMP stack.
    • Resource alerts notify when CPU, memory, or disk cross thresholds. LEMP stack on Ubuntu 24 deployed with security headers, MySQL hardening, and firewall configured on first boot.

    Details

    Sold by

    Delivery method

    Delivery option
    64-bit (x86) Amazon Machine Image (AMI)

    Latest version

    Operating system
    Ubuntu 24

    Deployed on AWS
    New

    Introducing multi-product solutions

    You can now purchase comprehensive solutions tailored to use cases and industries.

    Multi-product solutions

    Features and programs

    Financing for AWS Marketplace purchases

    AWS Marketplace now accepts line of credit payments through the PNC Vendor Finance program. This program is available to select AWS customers in the US, excluding NV, NC, ND, TN, & VT.
    Financing for AWS Marketplace purchases

    Pricing

    LEMP Stack on Ubuntu 24 (Hardened) with Performance Agent

     Info
    Pricing is based on actual usage, with charges varying according to how much you consume. Subscriptions have no end date and may be canceled any time.
    Additional AWS infrastructure costs may apply. Use the AWS Pricing Calculator  to estimate your infrastructure costs.
    If you are an AWS Free Tier customer with a free plan, you are eligible to subscribe to this offer. You can use free credits to cover the cost of eligible AWS infrastructure. See AWS Free Tier  for more details. If you created an AWS account before July 15th, 2025, and qualify for the Legacy AWS Free Tier, Amazon EC2 charges for Micro instances are free for up to 750 hours per month. See Legacy AWS Free Tier  for more details.

    Usage costs (993)

     Info
    • ...
    Dimension
    Cost/hour
    t2.xlarge
    Recommended
    $0.28
    t2.micro
    $0.21
    t3.micro
    $0.10
    t3.xlarge
    $0.27
    t2.2xlarge
    $0.55
    m5.xlarge
    $0.26
    m5.metal
    $3.35
    m5a.24xlarge
    $4.47
    m5ad.24xlarge
    $4.47
    m5d.24xlarge
    $4.47

    AI Insights

     Info

    Dimensions summary

    You pay by the hour for this software image, and the rate depends on the EC2 instance type you launch. Each dimension maps to one AWS instance type, so pricing scales with the compute size and family you pick. Smaller shared-CPU types like t2, t3, and t3a suit light workloads. General-purpose m-family, compute-optimized c-family, memory-optimized r- and x-family, storage, and accelerated GPU types cover heavier needs. Larger and specialized instances carry higher hourly rates. You are billed only for the hours each instance runs, with no upfront commitment.

    Top-of-mind questions for buyers

    You get a preconfigured LEMP stack on a hardened Ubuntu 24 image with a performance agent, running on the AWS EC2 instance type you select. The hourly rate covers the software image. Each dimension maps to one EC2 instance type, so your choice sets the compute size and hourly cost.
    The software rate meters only running instance-hours. A stopped or terminated instance stops accruing the software charge. Note that stopped instances may still incur separate AWS storage fees for attached volumes, but those are AWS charges, not the software license fee.
    Each instance type is billed at its own hourly rate. Moving to a larger or specialized family generally raises the hourly software charge. You are billed for the exact hours each instance runs, so switching types changes the rate applied going forward, not retroactively.
    cloudgigabits.com
    Helpful?

    Vendor refund policy

    No refunds, instance can be terminated at any time.

    How can we make this page better?

    Tell us how we can improve this page, or report an issue with this product.
    Tell us how we can improve this page, or report an issue with this product.

    Legal

    Vendor terms and conditions

    Upon subscribing to this product, you must acknowledge and agree to the terms and conditions outlined in the vendor's End User License Agreement (EULA) .

    Content disclaimer

    Vendors are responsible for their product descriptions and other product content. AWS does not warrant that vendors' product descriptions or other product content are accurate, complete, reliable, current, or error-free.

    Usage information

     Info

    Delivery details

    64-bit (x86) Amazon Machine Image (AMI)

    Amazon Machine Image (AMI)

    An AMI is a virtual image that provides the information required to launch an instance. Amazon EC2 (Elastic Compute Cloud) instances are virtual servers on which you can run your applications and workloads, offering varying combinations of CPU, memory, storage, and networking resources. You can launch as many instances from as many different AMIs as you need.

    Version release notes

    Updated with Gigabits Ops

    Additional details

    Usage instructions

    To SSH into your EC2 instance and log in as the 'ubuntu' user using the specified key, follow these steps:

    1. Get the Public IP or DNS of Your Instance

    You need to have the public IP or DNS name of your running EC2 instance. You can find this in the EC2 dashboard on AWS under the "Instances" section.

    2. SSH Command Structure

    The general format to SSH into the EC2 instance as the 'ubuntu' user is:

    ssh -i /path/to/your-key.pem ubuntu@your-ec2-public-ip
    • /path/to/your-key.pem: The full path to your private key file (the one you used to launch the instance).
    • ubuntu: The default username for Ubuntu-based EC2 instances.
    • your-ec2-public-ip: The public IP address or public DNS of your instance.

    For example, if your key is stored at ~/mykeys/my-key.pem and the instance's IP address is 192.168.1.10, the SSH command would be:

    ssh -i ~/mykeys/my-key.pem ubuntu@192.168.1.10

    3. Accessing the Instance and Using Sudo

    Once logged in, you'll be able to run commands. For commands requiring root access, use sudo:

    sudo some-command

    For example, if you want to update your instance:

    sudo apt update sudo apt upgrade

    4. Securing MySQL

    To secure MySQL, you can run the mysql_secure_installation command:

    1. Login to the Instance (if not already done):
    ssh -i /path/to/your-key.pem ubuntu@your-ec2-public-ip
    1. Run the mysql_secure_installation:
    sudo mysql_secure_installation

    This will guide you through securing your MySQL installation, including setting the root password, removing insecure default settings, and more.

    5. Web Root Location

    The default web root for your server is /var/www/html. If you're configuring a web server (like Apache or Nginx), this is where the website files should be placed.

    You can navigate to this directory:

    cd /var/www/html

    And upload or create your web files here.

    To use the Gigabits Ops Agent, follow instructions here: https://gigabits-logos.s3.us-east-1.amazonaws.com/gigabits-ops-agent-usage-instructions.pdf 

    Support

    Vendor support

    please contact support@gigabitscloud.com  for any inquiries

    AWS infrastructure support

    AWS Support is a one-on-one, fast-response support channel that is staffed 24x7x365 with experienced and technical support engineers. The service helps customers of all sizes and technical abilities to successfully utilize the products and features provided by Amazon Web Services.

    Similar products

    Customer reviews

    Ratings and reviews

     Info
    0 ratings
    5 star
    4 star
    3 star
    2 star
    1 star
    0%
    0%
    0%
    0%
    0%
    0 reviews
    No customer reviews yet
    Be the first to review this product . We've partnered with PeerSpot to gather customer feedback. You can share your experience by writing or recording a review, or scheduling a call with a PeerSpot analyst.