I’ve created a new WordPress Droplet and used User-Data to install PhpMyAdmin.
When I try to access: http://107.170.14.110/phpmyadmin
I Receive 401 Unauthorized.
I’ve tried do use MYSQL root user using the password displayed at MOTD I’ve tried “phpmyadmin” using the password available at /etc/dbconfig-common/phpmyadmin.conf I’ve tried do use WordPress DB user/pass available at wp-config.php
What Im missing? I just need to open PHPMyAdmin to restore the full DB from my old blog domain so I can start using DO for my website.
Here’s the 401 error: https://www.dropbox.com/s/kcocj7lj7h5qjle/Captura de tela 2015-08-18 15.28.11.png?dl=0
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
The user data script is attempting to install and configure some things that are already configured by the WordPress one-click. The quickest way to get up and running with your migrated site would be to rebuild the droplet from the WordPress image and then log in via ssh. Using the following commands you’ll be able to install PHPMyAdmin.
Make sure you have the MySQL root password from the MOTD, then…
apt-get update
apt-get install phpmyadmin
You should be prompted for some information by apt.
Select the option to configure apache and provide the MySQL root password when prompted for it. You will also set up a phpmyadmin user.
Once this has completed you can access phpmyadmin at /phpmyadmin via a web browser.
Do you see any errors in /var/log/cloud-init-output.log ?
Click below to sign up and get $100 of credit to try our products over 60 days!
Hey Ryan! Thanks for your help.
I’ve used this script available at: https://github.com/digitalocean/do_user_scripts/blob/master/Ubuntu-14.04/web-servers/lamp-phpmyadmin.yml
#cloud-config apt_update: true package_upgrade: true packages:
Configure Apache
Generate random passwords for the MySql root user and the .htaccess file
dd if=/dev/urandom bs=1 count=12 2>/dev/null | base64 -w 0 | rev | cut -b 2- | rev
dd if=/dev/urandom bs=1 count=12 2>/dev/null | base64 -w 0 | rev | cut -b 2- | rev
The .htaccess username defaults to phpmyadmin. Update the line below to change that.
Enable the conf and restart Apache.
What user data commands did you use to install phpmyadmin?