From 10d3885d285fb5f9c386a5e43475b025f78d82e1 Mon Sep 17 00:00:00 2001 From: Sophia Atkinson Date: Wed, 11 Jan 2023 17:39:22 -0800 Subject: [PATCH] revert 81c1ce08a9f2eacaa5789b9c376c3b8014ebf7a4 revert added pma update --- README.md | 3 --- scripts/giteainstall.sh | 2 +- scripts/pmainstall.sh | 2 +- scripts/pmaupdate.sh | 59 ----------------------------------------- 4 files changed, 2 insertions(+), 64 deletions(-) delete mode 100644 scripts/pmaupdate.sh diff --git a/README.md b/README.md index dbb3804..113e9af 100644 --- a/README.md +++ b/README.md @@ -48,9 +48,6 @@ ### `wget -O pmauninstall.sh https://sop.wtf/sh/pmauninstall && bash pmauninstall.sh` -### ✔️ Update - -### `wget -O pmaupdate.sh https://sop.wtf/sh/pmaupdate && bash pmaupdate.sh` --- ## MongoDB diff --git a/scripts/giteainstall.sh b/scripts/giteainstall.sh index 5326d74..c72bcd0 100644 --- a/scripts/giteainstall.sh +++ b/scripts/giteainstall.sh @@ -19,6 +19,7 @@ done GITEA_VER="1.18.0" sudo systemctl stop gitea sudo apt-get install git -y +sudo ufw allow 3000 sudo wget -O /usr/local/bin/gitea https://dl.gitea.io/gitea/$GITEA_VER/gitea-"$GITEA_VER"-linux-amd64 sudo chmod +x /usr/local/bin/gitea sudo adduser --system --shell /bin/bash --gecos 'Git Version Control' --group --disabled-password --home /home/git git @@ -32,7 +33,6 @@ sudo wget -O /etc/systemd/system/gitea.service https://git.oldgate.org/Sophia/th sudo systemctl daemon-reload sudo systemctl enable --now gitea sudo systemctl start gitea -sudo ufw allow 3000 echo -e "==================================================================" publicipaddress=$(curl -sS --connect-timeout 10 -m 60 https://ipv4.icanhazip.com/ || curl -sS --connect-timeout 10 -m 60 https://api.ipify.org ) diff --git a/scripts/pmainstall.sh b/scripts/pmainstall.sh index a8aa4d4..4c525e0 100644 --- a/scripts/pmainstall.sh +++ b/scripts/pmainstall.sh @@ -27,6 +27,7 @@ sudo echo "Include /etc/phpmyadmin/apache.conf" >> /etc/apache2/apache2.conf sudo phpenmod mbstring sudo a2dismod php8.2 sudo a2dismod mpm_prefork +sudo a2disconf php7.4-fpm sudo a2enmod mpm_event sudo a2enmod proxy sudo a2enmod proxy_fcgi @@ -34,7 +35,6 @@ sudo a2enconf php8.2-fpm sudo systemctl restart php8.2-fpm systemctl reload apache2 sudo systemctl enable apache2 -sudo apt autoremove -y ## Updating phpMyAdmin. PMA_VER="5.2.0" sudo rm -rf /usr/share/phpmyadmin.bak diff --git a/scripts/pmaupdate.sh b/scripts/pmaupdate.sh deleted file mode 100644 index d8ce2ba..0000000 --- a/scripts/pmaupdate.sh +++ /dev/null @@ -1,59 +0,0 @@ -#!/bin/bash - -while true -do - read -r -p "Would you like to Update phpMyAdmin? [Y/n] " input - - case $input in - [yY][eE][sS]|[yY]) - break - ;; - [nN][oO]|[nN]) - break - ;; - *) - echo "That wasn't an option..." - ;; - esac -done - -sudo apt update && apt upgrade -y -sudo add-apt-repository --yes ppa:ondrej/php && apt install libapache2-mod-php8.2 php8.2-fpm -y -sudo systemtl stop apache2 -sudo apt install apache2 -y -sudo apt install phpmyadmin php-mbstring php-zip php-gd php-json php-curl -y -sudo phpenmod mbstring -sudo a2dismod php8.2 -sudo a2dismod mpm_prefork -sudo a2enmod mpm_event -sudo a2enmod proxy -sudo a2enmod proxy_fcgi -sudo a2enconf php8.2-fpm -sudo systemctl restart php8.2-fpm -systemctl reload apache2 -sudo systemctl enable apache2 -sudo apt autoremove -y -PMA_VER="5.2.0" -sudo rm -rf /usr/share/phpmyadmin.bak -sudo mv /usr/share/phpmyadmin/ /usr/share/phpmyadmin.bak -sudo mkdir /usr/share/phpmyadmin/ -sudo wget https://files.phpmyadmin.net/phpMyAdmin/$PMA_VER/phpMyAdmin-"$PMA_VER"-all-languages.tar.gz -P /usr/share/phpmyadmin/ -sudo tar xzf /usr/share/phpmyadmin/phpMyAdmin-"$PMA_VER"-all-languages.tar.gz -C /usr/share/phpmyadmin/ -sudo mv /usr/share/phpmyadmin/phpMyAdmin-"$PMA_VER"-all-languages/* /usr/share/phpmyadmin -sudo mkdir /usr/share/phpmyadmin/tmp/ && chmod -R 777 /usr/share/phpmyadmin/tmp/ -sudo rm -rf /usr/share/phpmyadmin/phpMyAdmin-"$PMA_VER"-all-languages /usr/share/phpmyadmin/phpMyAdmin-"$PMA_VER"-all-languages.tar.gz -sudo systemctl restart apache2 -echo -e "==================================================================" -publicipaddress=$(curl -sS --connect-timeout 10 -m 60 https://ipv4.icanhazip.com/ || curl -sS --connect-timeout 10 -m 60 https://api.ipify.org ) -intenalip=$(ip addr | grep -E -o '[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}' | grep -E -v "^127\.|^255\.|^0\." | head -n 1) - echo "phpMyAdmin Should be available at http://${intenalip}/phpmyadmin" - echo "Or If you are using a VPS at http://${publicipaddress}/phpmyadmin" -echo -e "==================================================================" - - - - - - - -