9

Can any one please let me know how to create new user and new db in MySQL? How to use mysqladmin in Mac OS X?

Loïc Wolff
  • 14,577
  • 4
  • 46
  • 64
  • Would you consider editing this question to make it more relevant to Mac OS X? General beginner mysql questions might get better answers at Stack Overflow. Also do read the FAQ so you are less likely to ask questions that read like "what book can I study to learn mysql on mac?" Cheers and welcome nevertheless! – bmike Apr 18 '11 at 19:01

5 Answers5

13

If you are using the terminal client, generally you can do things like reset the root users password for mysql or create databases.

To create a new MySQL user:

  • Login to MySQL in Terminal:mysql -u username

  • In the prompt:CREATE USER 'admin'@'localhost'; GRANT ALL PRIVILEGES ON *.* TO 'admin'@'localhost';

  • If you want to create a database: create database name; is all you need to do

If you do decide to use mysqladmin, mysqladmin can create and drop databases, but it cannot create new users.

ConstantineK
  • 5,622
  • 1
  • 18
  • 23
2

You can use a GUI client, like Sequel Pro.

Davide Gualano
  • 804
  • 2
  • 12
  • 21
  • This is a bad answer - you should at least tell people how to do it with the program you're suggesting – The Onin Jan 28 '18 at 05:44
2

Thanks everyone. I used the below commands to figure it out.

Sarbbottam-Bandyopadhyays-MacBook-Pro:bin sarbbottam$ mysql -u root
mysql> create database tutorialdb;
mysql> create user 'tutorialuser'@'localhost' identified by 'tutorialuser';
mysql> grant all on tutorialdb.* to 'tutorialuser'@'localhost';
mysql> exit
Bye

Sarbbottam-Bandyopadhyays-MacBook-Pro:bin sarbbottam$ mysql -u tutorialuser -p
Enter password: 

Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 1532
Server version: 5.5.9 MySQL Community Server (GPL)

Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> 
nohillside
  • 92,308
  • 39
  • 198
  • 242
0

You have many choices, you can use MySQL Query browser , or PhpMyadmin.

enter image description here

Am1rr3zA
  • 13,009
  • 14
  • 65
  • 88
0

Try, introduce complete path to mysql:

Go to Terminal:

$ /usr/local/mysql/bin/mysql -u user

I hope help you!