repo.or.cz
/
CLab.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Agregando archivos faltantes para la Version 2.
[CLab.git]
/
0_Extra
/
MySQL-Instrucciones.txt
blob
e55a021153f099f2d0ee436878511c142645a4fe
1
http://www.guia-ubuntu.org/index.php?title=MySql#Crear_un_usuario
2
mysql -h localhost -u root -p
3
CREATE DATABASE cLab;
4
CREATE USER 'clab'@'localhost' IDENTIFIED BY 'c1aB';
5
GRANT ALL ON *.* TO 'clab'@'localhost';
6
7
----------