Beginners MYSQL Database Tutorial # How to install MySQL on Ubuntu/Debian Linux




Installing and Using Mysql on Ubuntu How to install mysql install mysql on ubuntu Searches related to Installing and Using MySQL in Ubuntu installing mysql on …

Original source


44 responses to “Beginners MYSQL Database Tutorial # How to install MySQL on Ubuntu/Debian Linux”

  1. Wow, I tried to avoid this guy cause of his accent but every time I search up how to do something in Ubuntu he pops up. Damn…Here's an upvote and props for sharing what you know.

  2. i have install mysql using the command show in video…but when enter directly into mysql it show the error ->
    [ "sunny@sunny-Inspiron-3542:~$ mysql
    ERROR 1045 (28000): Access denied for user 'sunny'@'localhost' (using password: NO)
    sunny@sunny-Inspiron-3542:~$ "]…..and using "mysql -u root -p " this command it enters to sql.So,now what shoud i do??

  3. I had some problems with commands from the video. This worked for me:
    sudo apt-get purge mysql-client-core-5.6
    sudo apt-get autoremove
    sudo apt-get autoclean
    sudo apt-get install mysql-client-core-5.5
    sudo apt-get install mysql-server

  4. Hi, I'm quite new to Ubuntu. I've installed Xampp on ubuntu and I wanted to open the control panel just like in windows. But this doesn't open. I'm starting and stopping it from the terminal. I had used Wine to run windows version of xampp on ubuntu. Please help me.

  5. Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)

    Getting the following error above

    ubuntu 12.04 LTS

    32bit OS
    ARMv7 Processor rev 4 (v7l) x 2

  6. For those of you having the error message:
    ERROR 1045 (28000): Access denied for user 'root'@'localhost'(using password: NO)
    type in:
    mysql -p
    it will ask you for the mysql root password of the moment of install. if done correctly, then it will show:
    ERROR 1045 (28000): Access denied for user 'root'@'localhost'(using password: YES)

    In order for it to work for me I had to run it under root, not using sudo.
    sudo su

    Then type:
    mysql -p

    See if it works. It did for me.

Leave a Reply