You have elected not to install the mysql package provided by Ubuntu and have instead manually installed a version into /usr/local
- as such you are not doing things the normal "Ubuntu" way and the advice you get here may be affected.
The normal way of install MySQL in Ubuntu is by installing the package provided by Ubuntu using something like sudo apt-get install mysql-server
. Installing something manually into /usr/local
with a make or install script should be something done only when you have a specific reason to do so and you have a greater level of technical skill and knowledge, and willingness to set it up correctly yourself. You'll also need to do updates and security patches manually because it won't be done by Ubuntu.
Based on your level of technical knowledge of Ubuntu I don't think installing something manually into /usr/local
is for you. Unless you respond with a good reason for not being able to use the one included with Ubuntu and you really want to learn more, I'd advise removing that MySQL and installing the Ubuntu one with sudo apt-get install mysql-server
.
After doing this, you'll be able to follow all the normal instructions you find on the Ubuntu wikis and howtos.
/usr/local
- as such you are not doing things the normal "Ubuntu" way and the advice you get here may be affected. That said, I'm sure people will still try and help as best they can. But as a point of clarification - you should always use the Ubuntu-packaged versions of software unless you have a specific reason not to, and in that case you should mention that reason in your question. – thomasrutter Apr 15 '14 at 03:01