Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Is MySQL still running in safe mode after the “How to Reset a Root Password” steps?
I changed my password for MySQL. But I didn’t stop the MySQL process before changing it. Will there be any implications? I am asking because I want to know what is the reason for stopping the MySQL process? thanks!
@hopefloatt: Do you mean you just followed Step Three? If so, it’s fine—you do not need to restart MySQL.
What about mail server settings… In the past I had changed my mysql root password but after that e-mail didn’t work anymore… had to put back everything as it was
I have done a mysql dump but can not find the .sql file. Where abouts in my droplet can I locate it?
when importing sql file to database u don’t need to logout !!
first create database
CREATE DATABASE newdatabase; USE newdatabase;
and then you can import table to a database using
SOURCE filename.sql
this command will import file from folder you are when you logged in mysql. If your file is in diffrent folder you should add file path before filename.
I have a mysql database [database.sql.gz] in my Download folder on my laptop.
I am migrating a wordpress site. I am using LEMP 14.04 64 bit.
I first tried to import/upload the dbase using phpmydmin but it failed. The dbase is 28MB and phpmyadmin would only allow file uploads of 2MB.
I found out how to increase the file upload limit to 100MB. Still phpmyadmin would not allow me to import the database. It timed out at approx 150 seconds.
Increasing the time from 1440 to 500000 made no difference. It still timed out.
Using LEMP I read somewhere that the session limits are in Nginx but I know not where or how to fix this.
I sought to use easyengine to get round this as easyengine comes with phpmyadmin set at the 100Mb import limit. phpmyadmin on EE will not allow me to import the dbase either.
I have used Putty (with SSH) and Filezilla (SFTP). With Filezilla I can upload the dbase.sql.gz file but where, ie what folder, should I upload it to and, once there, how do I unzip it and get mysql to import it and see it?
Any help on this much appreciated as I am at a complete standstill until I can get this done.
-P