benchmark free tier OCI vs AWS geekbench 5

Oracle Cloud instance OCI vs Amazon AWS EC2 Free TierGeekbench 5 ID Name Platform Architecture Single-core Score Multi-core Score 11150690 FREE TIER – AMAZON EC2 t2.micro vcpu 1 RAM 1 GBIntel Xeon E5-2676 v3 2400 MHz (1 cores) Linux 64 x86_64 696 698 11150467 FREE TIER – ORACLE CLOUD VM.Standard.E2.1.Micro AMD OCPU 1 RAM 1GBAMD… Leer más »

Benchmark litespeed

Summary HTTP/2 Test Results h2load -n 10000 -c 10 -t 1 -T 5 -m 10 -H ‘Accept-Encoding: gzip,deflate’ https://domain.com/joomla/ Server Requests / Sec MB / Sec Failures Header Compression LiteSpeed 55647 233.26 0 96.6% Nginx 130.6 0.61 0 23.59% Apache 109.1 0.48 0 78.54% Please note: We usually run the h2load test with -c 100,… Leer más »

RHEL 8 / CENTOS 8 – Ansible – Failed to validate GPG signature for …

fatal: [localhost]: FAILED! => {«changed»: false, «msg»: «Failed to validate GPG signature for remi-release-8.4-1.el8.remi.noarch»} remi site says RPM-GPG-KEY-remi is for Fedora <= 25 and EL <= 7 This works for me (on RHEL8): – hosts: localhost tasks: – rpm_key: state: present key: https://rpms.remirepo.net/RPM-GPG-KEY-remi2018 – rpm_key: state: present key: https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-8 – name: Install epel repo. yum: name: «https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm» state:… Leer más »

How to Install Ansible on RHEL8 /Centos8

Enable epel repository dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm First, update the DNF package repository cache with the following command: Now, install Ansible with the following command: Install git Playbook LEMP example:

How To Install Linux, Nginx, Mariadb 10.x, PHP (LEMP) stack On RHEL/CentOS 8

dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm on RHEL 8 it is required to also enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it: subscription-manager repos –enable «codeready-builder-for-rhel-8-$(arch)-rpms» Installing MariaDB Server 10.4 o deploy MariaDB Community Server 10.4 on RHEL 8 or CentOS 8, first download and use the mariadb_repo_setup script to configure the MariaDB repositories for… Leer más »

How To Install Linux, Nginx, Mariadb 10.x, PHP (LEMP) stack On CentOS 7

Add the CentOS 7 EPEL repository, run the following command: Installing MariaDB Server 10.4 o deploy MariaDB Community Server 10.4 on RHEL 7 or CentOS 7, first download and use the mariadb_repo_setup script to configure the MariaDB repositories for YUM: $ sudo yum install wget $ wget https://downloads.mariadb.com/MariaDB/mariadb_repo_setup $ chmod +x mariadb_repo_setup $ sudo ./mariadb_repo_setup To install… Leer más »

Install PHP 7.4, 7.3, 7.2 on Amazon Linux 2

Confirm that the amazon-linux-extras package is installed: If the command doesn’t return any output, then install the package that will configure the repository: Install PHP 7.4, 7.3, 7.2 on Amazon Linux 2 Let’s confirm that PHP 7.x topic is available in our Amazon Linux 2 machine:https://ba81e333c7babb426e39b458bb330c84.safeframe.googlesyndication.com/safeframe/1-0-38/html/container.html As we can see all PHP 7 topics, in this example… Leer más »