-
Categories
-
Tags/Keywords
Apache bash blog blog.bigsmoke.us CLI CSS Debian DNS Firefox Gentoo Google HTML HTTP iptables Linux MediaWiki mod_rewrite MySQL network PHP plugin postfix RAID Ruby samba Screen shell Sicirec smb SSH ssl Subversion svn T61 thunderbird Ubuntu van der Molen VIM Windows WordPress WWW X xen XTerm zimbra -
Recent Posts
-
Recent Comments
Tag: create user
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;
use bla
grant all on bla.* to 'jack'@'localhost' identified by 'password';
Read More »
