Potential leak of data: MySQL Access Control


Detected 1 occurrence(s) of ‘create user .* identified by’:
sable-install-rdoc

* Make

        make

* Make install

        sudo make install


# Install MySql database
    sudo apt-get install mysql-server libmysqlclient-dev

# Create new mysql user
* Log in as root

    mysql -u root -p

* Create user

        CREATE USER 'rdeveloper'@'localhost' IDENTIFIED BY 'rdeveloper';

* Grant privileges

        GRANT ALL PRIVILEGES ON *.* TO 'rdeveloper'@'localhost' WITH GRANT OPTION;

# Install gems
    sudo gem install bundler mysql2 rails