Rapturezone

  • Resources
  • Blog
  • About Us
  • Privacy Policy

WordPress MultiSite Bitnami Essentials

June 25 by www

WordPress MultiSite Bitnami Essentials

  • Add New Website to WordPress MultiSite
  • Adding New TLS Website to WordPress MultiSite Bitnami Instance
  • Stop Websites
  • Backup Websites
  • Restore Websites
  • TLS Certificates
  • MySQL Command Line
  • Connect Database
  • List Databases
  • Select Database
  • List Tables
  • Dump/Backup Database
  • Dump/Backup Database Table
  • PHPMyAdmin
  • Related
  • Links

SOP: Adding New TLS Website to WordPress MultiSite Bitnami Instance

Adding New TLS Website to WordPress MultiSite Bitnami Instance

Add New Website to WordPress MultiSite

  • Add a new Website into WordPress Multisite

Stop Websites

sudo /opt/bitnami/ctlscript.sh stop

Backup Websites

  • Backup Bitnami WordPress MultiSite
  • Export WordPress Website Using Builtin Export Tool

Restore Websites

  • Restore Bitnami WordPress MultiSite
  • Import WordPress Site using WordPress Importer

TLS Certificates

Adding New TLS Website to WordPress MultiSite Bitnami Instance

Multiple Domains Multiple Certificates Let’s Encrypt Certificates on WordPress Multisite AWS Lightsail using bncert-tool

Fix Error establishing a database connection after issuing a new certificate

Let’s Encrypt Certificate on WordPress AWS Lightsail

WordPress Multisite on Amazon Lightsail AWS

MySQL Command Line

Connect Database

mysql -u root -p
Enter password: **********
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 6761
Server version: 21.0.18 MySQL Community Server - GPL
Copyright (c) 2000, 2021, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>

List Databases

SHOW DATABASES;
+--------------------+
| Database |
+--------------------+
| bitnami_wordpress |
| information_schema |
| mysql |
| performance_schema |
| sys |
+--------------------+
5 rows in set (0.01 sec)
mysql>

Select Database

use bitnami_wordpress;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed

List Tables

show tables;
+-------------------------------------+
| Tables_in_bitnami_wordpress |
+-------------------------------------+
| wp_2_commentmeta |
| wp_2_comments |
| wp_2_links |
| wp_2_options |
| wp_2_postmeta |
| wp_2_posts |
| wp_2_prli_clicks |
| wp_2_prli_link_metas |
| wp_2_prli_links |
| wp_2_term_relationships |
| wp_2_term_taxonomy |
| wp_2_termmeta |
| wp_2_terms |
| wp_blogmeta |
| wp_blogs |
| wp_commentmeta |
| wp_comments |
| wp_links |
| wp_options |
| wp_postmeta |
| wp_posts |
| wp_prli_clicks |
| wp_prli_link_metas |
| wp_prli_links |
| wp_registration_log |
| wp_signups |
| wp_site |
| wp_sitemeta |
| wp_term_relationships |
| wp_term_taxonomy |
| wp_termmeta |
| wp_terms |
| wp_usermeta |
| wp_users |
+-------------------------------------+

Dump/Backup Database

mysqldump -u root -p bitnami_wordpress > backup.sql

Dump/Backup Database Table

mysqldump -u root -p bitnami_wordpress wp_2_posts > backup_database_table.sql

PHPMyAdmin

is available over port 80/phpmyadmin. However if you try to access it over the internet. The following error comes up.

For security reasons, this URL is only accessible using localhost (127.0.0.1) as the hostname.
sudo nano ~/.ssh/config

Add the following into the config file

Host WordPressMultiSIte
  User bitnami
  AddressFamily inet
  IdentityFile ~/.ssh/id_rsa
  HostName rapturezone.com
  LocalForward 8888 127.0.0.1:80

Open a browser and access it via http://127.0.0.1:8888/phpmyadmin.
The username is “root” and the password is the same as the WordPress User account.

Related

  • Remove Bitnami Banner Bottom Right WordPress MultiSite

Links

  • https://docs.bitnami.com/bch/apps/wordpress-multisite/administration/backup-restore/

Filed Under: How To

Recent Posts

  • Alternative Android Apps
  • Web Scraping with Python and Beautiful Soup Example IMDB Top 250
  • Web Scraping with Python and Beautiful Soup
  • Pi Pico Mouse Jiggler
  • JellyFin Docker Container

Recent Comments

    Archives

    • September 2021
    • August 2021
    • July 2021
    • January 2021
    • September 2020
    • August 2020
    • June 2020
    • May 2020
    • December 2019
    • November 2019
    • November 2017
    • July 2017
    • January 2017
    • January 2016
    • December 2015
    • September 2015
    • April 2015
    • March 2015
    • November 2014

    Categories

    • Definitions
    • How To
    • Resources
    • Uncategorized

    Meta

    • Log in
    • Entries feed
    • Comments feed
    • WordPress.org
    Google+

    Copyright © 2025 · eleven40 Pro Theme on Genesis Framework · WordPress · Log in