Skip to content

Instantly share code, notes, and snippets.

@tbvinh
Last active December 16, 2022 14:52
Show Gist options
  • Save tbvinh/531501243d02380955d97a5c90deeaa1 to your computer and use it in GitHub Desktop.
Save tbvinh/531501243d02380955d97a5c90deeaa1 to your computer and use it in GitHub Desktop.
#!/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
## mv wp-cli.phar /usr/local/bin/wp
##================================================
if [ $# -eq 0 ]
then
echo "No arguments supplied, e.g: $0 domain.com"
exit 0
fi
if [ ! -f /usr/local/bin/wp ]
then
curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar
chmod +x wp-cli.phar
mv wp-cli.phar /usr/local/bin/wp
fi
DOMAIN="$1"
install_dir=/var/www/$DOMAIN/htdocs
PASSWORD=`date |md5sum |cut -c '1-12'`
USERNAME="wp_${DOMAIN//./_}_`date +%s`"
DB_NAME=$USERNAME
sleep 1
WP_ADMIN="wp_${DOMAIN//./_}_`date +%s`"
sleep 1
WP_PASS=`date |md5sum |cut -c '1-12'`
mkdir -p $install_dir
useradd -m -p $(openssl passwd -1 ${PASSWORD}) -s /bin/bash -d $install_dir ${USERNAME}
chown ${USERNAME}: $install_dir -R
echo $USERNAME/$PASSWORD
####Download and extract latest WordPress Package
if test -f /tmp/latest.tar.gz
then
echo "WP is already downloaded."
else
echo "Downloading WordPress"
cd /tmp/ && wget "http://wordpress.org/latest.tar.gz";
fi
/bin/tar -C $install_dir -zxf /tmp/latest.tar.gz --strip-components=1
mkdir -p $install_dir/wp-content/uploads
mkdir -p $install_dir/wp-content/upgrade
chown ${USERNAME}:www-data $install_dir -R
chmod a+w $install_dir/wp-content/uploads
chmod a+w $install_dir/wp-content/upgrade
chmod a+w $install_dir/wp-content/themes
chmod a+w $install_dir/wp-content/plugins
chmod a+w $install_dir
/bin/mv $install_dir/wp-config-sample.php $install_dir/wp-config.php
/bin/sed -i "s/database_name_here/$DB_NAME/g" $install_dir/wp-config.php
/bin/sed -i "s/username_here/$USERNAME/g" $install_dir/wp-config.php
/bin/sed -i "s/password_here/$PASSWORD/g" $install_dir/wp-config.php
cat << EOF >> $install_dir/wp-config.php
define('FS_METHOD', 'direct');
EOF
cat << EOF >> $install_dir/.htaccess
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
EOF
##### Set WP Salts
grep -A50 'table_prefix' $install_dir/wp-config.php > /tmp/wp-tmp-config
/bin/sed -i '/**#@/,/$p/d' $install_dir/wp-config.php
/usr/bin/lynx --dump -width 200 https://api.wordpress.org/secret-key/1.1/salt/ >> $install_dir/wp-config.php
/bin/cat /tmp/wp-tmp-config >> $install_dir/wp-config.php && rm /tmp/wp-tmp-config -f
/usr/bin/mysql -u root -e "CREATE DATABASE $DB_NAME"
/usr/bin/mysql -u root -e "CREATE USER '$USERNAME'@'localhost' IDENTIFIED BY '$PASSWORD';"
/usr/bin/mysql -u root -e "GRANT ALL PRIVILEGES ON $DB_NAME.* TO '$USERNAME'@'localhost';"
echo "wp core install --url="https://$DOMAIN" --title="$DOMAIN" --admin_user="$WP_ADMIN" --admin_password="$WP_PASS" --admin_email="[email protected]""
su - $USERNAME -c "wp core install --url="https://$DOMAIN" --title="$DOMAIN" --admin_user="$WP_ADMIN" --admin_password="$WP_PASS" --admin_email="[email protected]""
su - $USERNAME -c 'wp plugin install wp-super-cache'
chmod a+w $install_dir/wp-config.php
chmod a+w $install_dir/wp-content
mkdir -p $install_dir/wp-content/cache/
chmod a+w $install_dir/wp-content/cache/
touch $install_dir/wp-content/cache/index.html
su - $USERNAME -c 'wp plugin activate wp-super-cache'
chmod a+w $install_dir/wp-content/wp-cache-config.php
chmod 644 $install_dir/wp-config.php
#su - $USERNAME -c 'wp theme install hello-elementor'
#su - $USERNAME -c 'wp theme install storefront'
su - $USERNAME -c 'wp theme install boutique'
su - $USERNAME -c 'wp theme activate boutique'
#su - $USERNAME -c 'wp theme install online-grocery-mart --activate'
su - $USERNAME -c 'wp plugin install woocommerce'
su - $USERNAME -c 'wp plugin activate woocommerce'
su - $USERNAME -c "wp wc payment_gateway update cod --enabled=1 --user=$WP_ADMIN"
wget -O $install_dir/wp-content/plugins/woocommerce/sample-data/large.csv https://s3.amazonaws.com/eimages.valtim.com/acme-images/Woo_Product_Dummy_Data_Set_Simple_and_Variable.csv
su - $USERNAME -c "wp plugin install wordpress-importer --activate"
su - $USERNAME -c "wp import ./wp-content/plugins/woocommerce/sample-data/sample_products.xml --authors=skip --quiet --allow-root"
######Display generated passwords to log file.
echo "Database Name: " $DB_NAME
echo "Database User: " $USERNAME
echo "Database Password: " $PASSWORD
echo "WP_ADMIN: " $WP_ADMIN
echo "WP_PASS: " $WP_PASS
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment