windows下DOS命令窗口輸入指令:
查看服務是否啟動:net help services
啟動mysql服務:net start mysql
停止mysql服務:net stop mysql
linux下在bash下,,輸入指令:
查看服務狀態(tài):service mysqld status
啟動mysql服務:service mysqld start
停止mysql服務:service mysqld stop
mysql -u[這里輸入用戶名] -p[這里輸密碼]
先停止mysql服務
然后輸入:mysqld --skip-grant-tables,此時mysqld服務會被啟動
在命令行輸入:mysql -uroot,,以不用密碼的方式登錄root
輸入:update mysql.user set password=PASSWORD('[這里輸入你的新密碼]') where user='root'
輸入:flush privileges
退出,,重啟mysql服務,用新密碼即可登錄
用root賬戶登錄mysql控制臺 查看所有數(shù)據(jù)庫:show databases; 創(chuàng)建數(shù)據(jù)庫:create database openfire; 創(chuàng)建數(shù)據(jù)庫管理員并分配權限:grant all on openfire.* to openfire@localhost identified by "openfire" 切換數(shù)據(jù)庫:use openfire; 查看當前數(shù)據(jù)庫中所有的表:show tables;
用root用戶登錄mysql命令行
增加權限:
輸入grant all on [數(shù)據(jù)庫名+表名也可以*.*] to [用戶名]@[ip地址] identified by '[密碼]'
例如:grant all on admin.* to [email protected] identified by 'password01!'
上述語句的意思:讓otalk用戶可以在ip地址為172.17.100.156的主機上擁有admin數(shù)據(jù)庫下的所有表的所有訪問權限
移除權限:
revoke all privileges on admin.users from otalk@localhost
暫停mysql服務,,在Mysql安裝目錄下找到my.ini文件,, 在[client]下面添加一句: default-character-set=utf8 將[mysqld]下面更改兩句: character-set-server=utf8 然后重啟mysql服務。 進入mysql命令行查看字符設置: show variables like 'collation_%'; show variables like 'character_set_%'; 都顯示utf8相關字符串的話,,表明修改成功了 重啟mysql服務,,注意創(chuàng)建表的時候要使用utf8格式
將以下兩行注釋掉: log-bin=mysql-bin binlog_format=mixed 重啟mysql,OK。 |
|