不推薦壓縮包手動安裝,太麻煩,直接apt
sudo apt-get install mysql-server檢視mysql服務狀態sudo apt-get install libmysqlclient-dev
systemctl status mysql登入mysql
mysql -u root -p-u 表示使用者
-p 表示密碼
設定root初始密碼
grant方法更改密碼
grant all on *.* to
'root'
@
'localhost'
identified by
'你的密碼'
with grant option;
flush
privileges;
配置遠端連線
grant all privileges on *.* to 'root'@'%' identified by '你的密碼' with grant option;提示策略問題,密碼太簡單了檢視策略
更改策略,只校驗長度,並且把長度改為6
set global validate_password_policy=low;搞完之後再執行語句set global validate_password_length=6;
grant all privileges on *.* to 'root'@'%' identified by '你的密碼' with grant option;完事之後重啟服務,用工具連線資料庫systemctl restart mysql建立資料庫create database 資料庫名刪除資料庫drop database 資料庫名進入資料庫use 資料庫名建立表create table 表名 (字段)刪除表drop table 表名插入表資料insert into 表名 (欄位名) values (值)ubuntu安裝mysql步驟
ubuntu上安裝mysql非常簡單只需要幾條命令就可以完成。1.sudo apt get install mysql server 2.apt get isntall mysql client 安裝過程中會提示設定密碼什麼的,注意設定了不要忘了,安裝完成之後可以使用如下命令來檢查是否安裝成功 su...
ubuntu 安裝 fabric 步驟
一句話 sudo apt get install fabric 以下的不用看了。我是個python 盲,近期乙個專案的部署要用到fabric,所以記錄一下步驟 1.先安裝pip 估計類似於rubygem curl o python virtualenv.py my new env 2.再安裝 fab...
Ubuntu 安裝Chrome步驟
一 新增ppa 從google linux repository wget q o sudo apt key add key安裝好後,在終端輸入 sudo sh c echo deb stable main etc apt sources.list.d google chrome.list 二 更新...