How to install mysql and GUI environment for administering it on ubuntu?

    1 answer 1

    Actually database management server:

    sudo apt-get install mysql-server 

    Widespread web-based program:

     sudo apt-get install phpmyadmin apache2-utils 

    or even simpler: (DB management tool, without installation, downloaded and opened in the browser)

     wget -O - http://www.chive-project.com/Download/Redirect|tar -xzp 

    in addition: pay attention to the compatible modules for your server, programming language (for php, they must be installed separately) and study the configuration for the packages to be installed

    • Shilgen. better, probably, not to write comments, but to add an answer. By the way, you have there the last line is not formatted as a code. - aleksandr barakin
    • You can also touch the MySQL Workbench. - D-side