Last active
March 8, 2017 09:14
-
-
Save vijayanandrp/a665bf3ddc6186ab9403143bd7621268 to your computer and use it in GitHub Desktop.
MySQL Install in Windows
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Steps to be followed for installing MySQL | |
1. Download & Install MySQL.exe | |
2. Now its time to run as windows service | |
https://dev.mysql.com/doc/refman/5.7/en/windows-start-service.html | |
3. Goto Command Prompt, C:\> "C:\Program Files\MySQL\MySQL Server 5.7\bin\mysqld" --install | |
4. Goto run -> services.msc -> MYSQL -> Right click start the services | |
5. Add the "C:\Program Files\MySQL\MySQL Server 5.7\bin" in PATH Environment Variables | |
6. Now, goto Command Prompt Open as a Administrator -> mysql -u root -p (No Password) | |
CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password'; | |
GRANT ALL PRIVILEGES ON * . * TO 'newuser'@'localhost'; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
CREATE DATABASE BucketList;
CREATE TABLE
BucketList
.tbl_user
(user_id
BIGINT NULL AUTO_INCREMENT,user_name
VARCHAR(45) NULL,user_username
VARCHAR(45) NULL,user_password
VARCHAR(45) NULL,PRIMARY KEY (
user_id
));