This tutorial goes through how to install openssl 1.1.1 on CentOS 9
Upgrade the system
sudo dnf -y update| /* | |
| DISCLAIMER: Use at your own risk! | |
| Discussion: https://github.com/directus/directus/discussions/18297#discussioncomment-5695833 | |
| Based on: https://gist.github.com/lukas-schaetzle/f93eff3d961ac595d0e1ab4be5f34536 | |
| Tested with Directus 10.11.2 and PostgreSQL | |
| This will delete all flow execution logs, revisions and acitivites which are older | |
| than the specified MinTimestamp and are not in the top <specified MinItems> latest |
| /* | |
| DISCLAIMER: Use at your own risk! | |
| Tested with Directus 9.23.4 and MySQL | |
| This will delete all flow execution logs, revisions and acitivites which are older | |
| than the specified MinTimestamp and are not in the top <specified MinItems> latest | |
| items. Activities related to saved revisions / flow logs are also saved even when | |
| they normally would have been deleted. | |
| Archived notifiactions are deleted when the creation of the notifaction is older |
| FROM golang:1.14-alpine | |
| COPY . /go/src/app | |
| WORKDIR /go/src/app | |
| RUN go get -v -d | |
| RUN go install | |
| CMD ["app"] |
You can use ssacli (smart storage administrator command line interface) tool to manage any of supported HP Smart Array Controllers in your Proxmox host without need to reboot your server to access Smart Storage Administrator in BIOS. That means no host downtime when managing your storage.
CLI is not as convenient as GUI interface provided by BIOS or desktop utilities, but still allows you to fully manage your controller, physical disks and logical drives on the fly with no Proxmox host downtime.
ssacli replaces older hpssacli, but shares the same syntax and adds support for newer servers and controllers.
| #!/usr/bin/env python3 | |
| # MIT License | |
| # (c) 2017 Kevin J. Walchko | |
| # | |
| # Updated 16 Mar 2020: Python 3.7.5 Ubuntu 19.10 | |
| # Desktop, wired interface is enp2s0 | |
| # Raspberry Pi: wlan0 | |
| # Ideally, this should be fixed, it is hard coded right now |
| # === Optimized my.cnf configuration for MySQL/MariaDB (on Ubuntu, CentOS, Almalinux etc. servers) === | |
| # | |
| # by Fotis Evangelou, developer of Engintron (engintron.com) | |
| # | |
| # ~ Updated September 2024 ~ | |
| # | |
| # | |
| # The settings provided below are a starting point for a 8-16 GB RAM server with 4-8 CPU cores. | |
| # If you have different resources available you should adjust accordingly to save CPU, RAM & disk I/O usage. | |
| # |
| #!/bin/bash | |
| # | |
| # This script configures WordPress file permissions based on recommendations | |
| # from http://codex.wordpress.org/Hardening_WordPress#File_permissions | |
| # | |
| # Author: Michael Conigliaro <mike [at] conigliaro [dot] org> | |
| # | |
| WP_OWNER=www-data # <-- wordpress owner | |
| WP_GROUP=www-data # <-- wordpress group | |
| WP_ROOT=$1 # <-- wordpress root directory |