Skip to content

Instantly share code, notes, and snippets.

@thegrid22593
Last active May 27, 2020 17:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thegrid22593/349be6cdf8e6a79c024da9a4cf39aea2 to your computer and use it in GitHub Desktop.
Save thegrid22593/349be6cdf8e6a79c024da9a4cf39aea2 to your computer and use it in GitHub Desktop.
### Check Admin Password
```
cat bitnami_application_password
```
### Accessing PhpMyAdmin on Linux and Mac OSX
```
ssh -N -L 8888:127.0.0.1:80 -i KEYFILE bitnami@SERVER-IP
```
### Permissions Overall
HTDOCS Folder ( Root ) 777 Daemon:Daemon
```
sudo chown -R daemon:daemon /htdocs
```
WP-CONTENT Folder and everything inside
```
sudo chown -R bitnami:daemon /htdocs/wp-content
```
### Email Setup MX Records
Emails do not use www in their domain lookup, so you must specify the root domain
```
Type MX
Subdomain: (no wwww) - domain.com
Priority: 1
Destination: Mail Server
```
### Start/Stop Web Server
Stop Server `sudo /opt/bitnami/ctlscript.sh stop`
Start Server `sudo /opt/bitnami/ctlscript.sh start`
### Lets Encrypt SSL Setup
https://docs.bitnami.com/aws/how-to/generate-install-lets-encrypt-ssl/
If you want to use (www) in your domain then you need specify www.example.com for any reference of DOMAIN in the instructions above.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment