From 708cf01bfc18cd292dce80681846851b2f4390dd Mon Sep 17 00:00:00 2001 From: allan Date: Thu, 24 Oct 2024 12:53:43 +0200 Subject: [PATCH] initial commit --- LICENSE | 21 +++++++ README.md | 46 ++++++++++++++ wordpressinstall | 157 +++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 224 insertions(+) create mode 100644 LICENSE create mode 100644 README.md create mode 100755 wordpressinstall diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..57f408b --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 Allan Christensen + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..1c674b6 --- /dev/null +++ b/README.md @@ -0,0 +1,46 @@ +## Wordpress install script for Ubuntu 22.04 and 24.04 server. + +### Prerequisites +Ubuntu 22.04 or higher with Nginx Php-Fpm as well as MariaDB. Nginx with Php-Fpm can be installed from [\[Here\]](https://git.x-files.dk/ubuntu-web-server/nginx-install) and MariaDB can be install from [\[Here\]](https://git.x-files.dk/ubuntu-database-server/mariadb-install) + +**Important:**\ +This the script will only work if you installed Nginx using the script located [\[Here\]](https://git.x-files.dk//ubuntu-web-server/nginx-install) + +### Download the script +``` +git clone https://git.x-files.dk/ubuntu-web-application/wordpress-install.git +``` + +### Usage + cd wordpress-install + sudo ./wordpressinstall [-n] [-d] [-u] [-p] + +### Example + sudo ./wordpressinstall -n wp.something.xyz -d wpdbname -u wpdbuser -p wpdbpassword + +This will create a Wordpress site running on port 80 with the domain name you chose under the installation. +Don't worry though this can easily be fixed by modifying the Nginx configuration later. +If you need an example on how to configure Nginx to run this on port 443 I an example +[\[Here\]](https://git.x-files.dk/ubuntu-web-server/nginx-install/src/branch/main/cfg-apps/wordpress.443.conf) + +### Configuration +Once the script is done browse to http://wp.something.xyz/wp-admin/install.php and fill out the mandatory fields marked with green. +

+Wordpress Configuration +

+ +**Post install:**\ +Nothing to do. + +### Troubleshooting +Most issues will probably be caused by the fact that we all set up and configure Nginx diffrently. If you encounter problems I would suggest you look at the Nginx configuration I use +[\[Here\]](https://git.x-files.dk/ubuntu-web-server/nginx-install/src/branch/main/cfg/nginx.conf) +and also the default "sites-enabled" Nginx configurarion I use +[\[Here\]](https://git.x-files.dk/ubuntu-web-server/nginx-install/src/branch/main/cfg/default) +when you start troubleshooting. + +### More guides +More guides can be found on [\[wiki.x-files.dk\]](https://wiki.x-files.dk) + +### Last tested +October 10th 2024 on Ubuntu 24.04. diff --git a/wordpressinstall b/wordpressinstall new file mode 100755 index 0000000..76e5ca1 --- /dev/null +++ b/wordpressinstall @@ -0,0 +1,157 @@ +#!/bin/bash + +####################################################################################################### +# First Created: 22052021 Author: Allan Desc: Installs Wordpress on Ubuntu requires Nginx and MariaDB # +####################################################################################################### + +# +# Are we root +# +if [[ $(id -u) -ne 0 ]]; then echo "" && echo "Must be root or use sudo" && echo "" ; exit ; fi +# +# Are we in the right directory +# +scriptdir="wordpress-install" && whereami=$(pwd |awk -F'/' '{print $NF}') +if [ $whereami != $scriptdir ]; then printf "\nWrong directory! Script must be run from $scriptdir\n\n" ; exit ; fi +# +# Define variables and functions +# +red='\033[0;31m' ; bred='\033[1;31m' ; green='\033[0;92m' ; blue='\033[0;36m' ; bold='\033[1m' ; normal='\033[0m' +line (){ for i in {1..50}; do echo -n "$1"; done && printf "\n"; } +nginxfiles="/etc/nginx/nginxsnippets" +phpver=$(php -v |head -1 |awk -F'.' '{print $1"."$2}' |sed 's/PHP //') +phpfpm="php$phpver-fpm" ; phpclidir="/etc/php/$phpver/cli" ; phpfpmdir="/etc/php/$phpver/fpm" ; socket="php$phpver" +# +# Function title +# +title () { printf "\nWordpress install script V1.0\n\n"; } +# +# Function usage +# +usage () { clear ; printf -- "\n" +printf -- "${bold}wordpressinstall${normal} \n\n" +printf -- "${bold}Usage:${normal} \n" +printf -- "./wordpressinstall [-n] \n" +printf -- " [-d] \n" +printf -- " [-u] \n" +printf -- " [-p] \n" +printf -- " [-help] \n\n" +printf -- "${bold}Examples:${normal} \n" +printf -- "./wordpressinstall -n wp.something.xyz -d wpdb -u wpuser -p wppassword \n\n"; } +# +# Function to check if a service is already running or not +# +serviceno () { printf "\n$service is not running cannot continue...\n\n"; } +servicedead () { status=$(systemctl is-active $service); if [[ "$status" != "active" ]]; then serviceno ; exit; fi; } +# +# Function input check +# +inputcheck () { +if [[ -z "$hostname" ]]; then usage ; printf "${bold}Error! ${normal}Hostname Empty...\n\n" ; exit; fi +if [[ -z "$wpdbname" ]]; then usage ; printf "${bold}Error! ${normal}Database name Empty...\n\n" ; exit; fi +if [[ -z "$wpdbuser" ]]; then usage ; printf "${bold}Error! ${normal}Database username Empty...\n\n" ; exit; fi +if [[ -z "$wpdbpass" ]]; then usage ; printf "${bold}Error! ${normal}Database Password Empty...\n\n" ; exit; fi; } +# +# If Nginx and MariaDB is not running then die +# +service="mariadb" ; servicedead ; service="nginx" ; servicedead +# +# Display title +# +clear ; title +# +# Configure command line options +# +if [[ ! $@ =~ ^\-.+ ]]; then usage; fi + +while getopts "n:d:u:p:h:" option; do + case $option in + + n) # hostname + hostname=$(echo ${OPTARG} | tr '[:upper:]' '[:lower:]');; + + d) # wordpress database name + wpdbname=$OPTARG;; + + u) # wordpress database user + wpdbuser=$OPTARG;; + + p) # wordpress database password + wpdbpass=$OPTARG;; + + h) # display help + usage ; exit;; + + \?) # invalid option + printf "Type $0 -help for help\n\n" ; exit;; + esac +done +# +# Check if input conditions are met +# +inputcheck $hostname $wpdbname $wpdbuser $wpdbpass +# +# Download Wordpress +# +wget --no-verbose https://wordpress.org/latest.tar.gz +# +# Install and configure Wordpress +# +tar zxfp latest.tar.gz +cp wordpress/wp-config-sample.php wordpress/wp-config.php +sed -i "s/database_name_here/$wpdbname/" wordpress/wp-config.php +sed -i "s/username_here/$wpdbuser/" wordpress/wp-config.php +sed -i "s/password_here/$wpdbpass/" wordpress/wp-config.php +mv wordpress $hostname +mkdir -p /var/www/html +mv $hostname /var/www/html +chown -R www-data: /var/www/html/$hostname +# +# Check if nginxsnippets exist if not download them +# +if [[ ! -d "$nginxfiles" ]]; then +git clone --quiet https://git.x-files.dk/ubuntu-web-server/nginx-install.git ; cp -R nginx-install/nginxsnippets /etc/nginx +fi +# +# Create Wordpress database +# +wpsql=" +connect mysql +create database $wpdbname; +CREATE USER '$wpdbuser'@'localhost' IDENTIFIED BY '$wpdbpass'; +GRANT ALL PRIVILEGES ON $wpdbname.* TO '$wpdbuser'@'localhost'; +FLUSH PRIVILEGES; +" +printf '%s\n' "${wpsql[@]}" |sed '1d; $d' > wpsql.sql +mysql < wpsql.sql +# +# Create a Wordpress Nginx configuration file +# +curl --silent https://git.x-files.dk/ubuntu-web-server/nginx-install/raw/branch/main/cfg-apps/wordpress.80.conf > /etc/nginx/conf.d/$hostname.conf +cp /etc/nginx/nginxsnippets/rate-limit.conf /etc/nginx/conf.d/ +sed -s -i "s/DOMAIN/$hostname/g" /etc/nginx/conf.d/$hostname.conf +sed -i "s/VERSION/$phpver/" /etc/nginx/conf.d/$hostname.conf +# +# Restarting Nginx and Phpfpm for changes to take effect +systemctl restart nginx && systemctl restart $phpfpm +# +# Wordpress notice +# +wpnotice=" +----------------------------------------------------------------------------------- +IMPORTANT: + +Go to http://$hostname/wp-admin/install.php and complete the setup +----------------------------------------------------------------------------------- +" +# +# Print notice +# +clear ; printf '%s\n' "${wpnotice[@]}" +# +# Cleaning up +# +rm -Rf wpsql.sql latest.tar.gz nginx-install +# +# End of script +#