-
Categories
-
Tags/Keywords
bash blog.bigsmoke.us postfix T61 Firefox X WLB07051 shell van der Molen RAID zimbra HTML PHP MediaWiki Windows ssl VIM Gentoo Linux Subversion svn plugin WordPress xen samba HTTP SSH WWW Ruby DNS Ubuntu nutrition MySQL CLI CSS XTerm mod_rewrite Debian RuG Screen smb metabolism Apache Javascript Family -
Recent Posts
-
Recent Comments
Tag: grant
Creating new MySQL database and user
I often need to make a MySQL database and a user that can do anything in it:
create database bla character set utf8 collate = utf8_general_ci;
use bla
grant all on bla.* to 'jack'@'localhost' identified by 'password';
Read More »