https://github.com/marciea/VCCC-Scripts
Database dump script and LAMP stack creation script
https://github.com/marciea/VCCC-Scripts
bash mariadb python scripting wordpress wordpress-site
Last synced: 6 months ago
JSON representation
Database dump script and LAMP stack creation script
- Host: GitHub
- URL: https://github.com/marciea/VCCC-Scripts
- Owner: m4rci3
- Created: 2025-05-09T03:21:44.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-30T01:51:57.000Z (11 months ago)
- Last Synced: 2025-07-30T03:57:00.937Z (11 months ago)
- Topics: bash, mariadb, python, scripting, wordpress, wordpress-site
- Language: Shell
- Homepage:
- Size: 43 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Script Descriptions
These are scripts I made for NCyTE's VCCC.
wp_db contains a 4 part script used to build and configure a WordPress `LAMP` stack (Linux, Apache, MariaDB, and PHP), these scripts are made for RPM-based distros like RHEL, Rocky, Alma, and CentOS
```mermaid
flowchart LR;
subgraph
dnf-Updates/Upgrades
Firewalld-->HTTPS/443
Firewalld-->HTTP/80
Permissions-->Apache
Hostname-change
Hardening-->mysql_secure_installation
Hardening-->localhost-only-wp-admin
WP-Database+WPAdmin--creation for-->MariaDB
end
subgraph
Apache
WordPress
PHP
mod_ssl --configure SSL for HTTPS --> Apache
MariaDB -- connection to --> WordPress
end
```
db_dump contains a single script used to take a sql or mariadb database and dump its contents, additional details to have this script work properly are inside of the script's directory.
```mermaid
flowchart LR;
subgraph
Database-->Backup-Directory;
end
```
---







