Export users export-mysql-user.sh
Backup Apache folders, WWW folders backup-apache-mysql-wwwfolder.sh
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>hello.html</title> | |
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@latest"></script> | |
<script src="https://cdn.jsdelivr.net/npm/@tensorflow-models/universal-sentence-encoder@latest"></script> | |
<style> |
1.java InstallCert | |
2. keytool -exportcert -alias [domain]-1 -keystore jssecacerts -storepass changeit -file [domain].cer | |
3. sudo keytool -importcert -alias [domain]-1 -keystore ~/glassfish5/glassfish/domains/domain1/config/cacerts.jks -storepass changeit -file [domain].cer | |
JAVA: InstallCert.java | |
================================================== | |
//https://github.com/escline/InstallCert |
TO_BE_DEL="$1" | |
IFS="" | |
while read -r file ; do | |
rm -rf "$file" | |
done < "$TO_BE_DEL" | |
#usage: delFromFile.sh file.txt |
#!/bin/sh | |
# wget -O backup-apache-mysql-wwwfolder.sh https://gist.githubusercontent.com/tbvinh/51bc2b297b1b864546ba42e4b2a92a04/raw/backup-apache-mysql-wwwfolder.sh?rnd=`date +%s` | |
## 0 ====================== | |
echo 1. Backup apache .conf files | |
echo 2. Backup www/ folder | |
echo 3. Backup mysql | |
## 1 ====================== |
Export users export-mysql-user.sh
Backup Apache folders, WWW folders backup-apache-mysql-wwwfolder.sh
#!/bin/bash | |
# wget -O export-mysql-user.sh https://gist.githubusercontent.com/tbvinh/c66051969dfd3840075b394ee1ab3e0d/raw/export-mysql-user.sh?rnd=`date +% ` | |
echo ==========CREATE USER========== | |
mysql -uroot -sNe " \ | |
SELECT \ | |
CONCAT( 'CREATE USER \'', User, '\' IDENTIFIED BY \'cha@NG1t@#&\'\;' ) AS User \ |
#!/bin/sh | |
# wget -O delete-mosquitto.sh https://gist.githubusercontent.com/tbvinh/8b32aaf8255160850353858e5f2804dd/raw/delete-mosquitto.sh?rnd=`date +%s` | |
if [ $# -eq 0 ] | |
then | |
echo "No arguments supplied, e.g: $0 domain.com" | |
exit 0 | |
fi |
#!/bin/bash | |
## usage: | |
## ============================ | |
## 1. wget -O create-apache-domain.sh https://gist.githubusercontent.com/tbvinh/f1b88a41ccf7d7c9f3056af5592b51eb/raw/create-apache-domain.sh?rnd=`date +%s` | |
## 2. e.g: /bin/sh create-apache-domain.sh cskh.mobi | |
## INSTALL SSL SINGLE DOMAIN | |
##============================== |
<VirtualHost *:80> | |
ServerName myoser.com | |
ServerAlias *.myoser.com | |
DocumentRoot /var/www/myoser.com/htdocs | |
<Directory /var/www/myoser.com/htdocs> | |
Options Indexes FollowSymLinks | |
AllowOverride All |
#!/bin/bash | |
## USAGE | |
## wget -O install-wordpress.sh https://gist.githubusercontent.com/tbvinh/531501243d02380955d97a5c90deeaa1/raw/install-wordpress.sh?rnd=`date +%s` | |
## /bin/bash install-wordpress.sh domain.com | |
##================================================ | |
## NOTE: neet wp-cli | |
## curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar | |
## chmod +x wp-cli.phar |