2009年11月22日 星期日

mysql建立資料庫

第一次設定mysql root 密碼

mysqladmin -u root password 'your.password'

mysql -u root -p
輸入密碼後進入mysql
mysql>

mysql>create database xoops2;
mysql>grant all privileges on xoops2.* to xoops2user@localhost identified by 'your.password' ;
mysql>exit

測試剛剛建立的資料庫與帳號是否可以使用:
mysql -u xoops2user -p
connect xoops2;
exit

0 意見: