Changes between Version 1 and Version 2 of Tutorial/Setup_MySQL_database


Ignore:
Timestamp:
2011-07-12T11:24:54+02:00 (13 years ago)
Author:
Roan Kanninga
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Tutorial/Setup_MySQL_database

    v1 v2  
    1 asd
     1 1. download MySQL Community server from http://www.mysql.com/downloads/
     2
     3 2. ------HERE COMES THE INSTALL INSTRUCTION-------[[BR]] __On a Mac__[[BR]]Go to:[[BR]]
     4{{{
     5cd usr/local/mysql/bin
     6}}}
     7   set rootpassword (if there is none set):[[BR]]
     8{{{
     9mysqladmin -u root password NEWPASSWORD
     10}}}
     11
     12 3.
     13{{{
     14./mysql –u root –p
     15}}}
     16
     17 4.
     18{{{
     19mysql> create database NEWDATABASENAME
     20 grant all privileges on NEWDATABASENAME.* to molgenis@localhost identified by ‘molgenis’;
     21 flush privileges;
     22}}}