一、檢視盤空間及路徑:df -h
df -h
二、登入mysql,並查當前儲存空間:
mysql -uroot -p
show variables like '%dir%';
三、關閉mysql
service mysql start
四、拷檔案至新路徑,更其屬性
cp -r /var/lib/mysql/* /mnt/mysql
chown mysql:mysql /mnt/mysql
五、查配置檔案,改datadir
查詢mysql配置檔案,更改其datadir(資料存放路徑)值(筆記)
六、重啟mysql:service mysql start
報錯為:
job for mysql.service failed because the control process exited with error code. see "systemctl status mysql.service" and "journalctl -xe" for details.
mysql 預設排序 修改 MySQL修改預設排序
乙個資訊發布系統,大多數情況最新發表的記錄要顯示在最前面。select from article where username 阿海 order by posttime desc limit 0,10 假如使用者發表的文章有上萬篇,這個排序將會非常的慢,好像沒有使用索引一樣,show process...
mysql刪除預設密碼 修改mysql預設密碼方法
問題描述 今天在mac上安裝完mysql後,mysql預設給分配了乙個預設密碼,但當自己在終端上使用預設密碼登入的時候,總會提示乙個授權失敗的錯誤 access denied for user root localhost using passwor 如圖 解決方案 x 既然現在沒法登入到資料庫中,...
修改預設MySQL配置 mysql預設配置修改
查詢mysql資料庫連線最大響應數 show global status like max used connections 查詢mysql資料庫最大連線數 show variables like max connections 對於mysql伺服器最大連線數值的設定範圍比較理想的是 伺服器響應的最...