CentOS,MySQL

Install MySQL Yum Repository

Example: Download “mysql80-community-release-el8-1.noarch.rpm“

wget

Install “mysql80-community-release-el8-1.noarch.rpm“

yum install mysql80-community-release-el8-1.noarch.rpm

Add “sudo”, if needed.

Check Repo list# yum ...

CentOS,Infrastructure

Create Swap File

Here, as an example, create a 400MB swap file “/swpfile”.

dd if=/dev/zero of=/swapfile bs=1M count=1048mkswap/swapfilechmod 600/swapfile

After the swap file “/swpfile” is created, enable the file.

swapon/swapfile

You can check the status with the ...