Skip to content

Installation of mysql server

anjalysuresh edited this page Feb 1, 2018 · 11 revisions
  1. First thing let’s upgrade the packages:

    sudo apt-get update sudo apt-get -y upgrade

  2. Install mysql and dependencies

    sudo apt-get mysql server

  3. Go to /etc/mysql/mysql.conf.d/mysqld.cnf

    Set bind-address=0.0.0.0

  4. Access mysql using mysql -u root -p enter the password

  5. Create the database collaboration.

    mysql> create database iimbx; mysql> exit;

Contents

Clone this wiki locally