[視頻教程] ubuntu系統下安裝最新版的MySQL
- 2019 年 10 月 11 日
- 筆記
視頻地址:
https://www.bilibili.com/video/av69256331/
官網文檔 https://dev.mysql.com/doc/mysql-apt-repo-quick-guide/en/
安裝官方的源: wget https://repo.mysql.com//mysql-apt-config_0.8.13-1_all.deb dpkg -i mysql-apt-config_0.8.13-1_all.deb apt-get update 注意看一下是否更新成功,有時候會出現connect time out,多試幾次就可以了
apt-get install mysql-server 安裝完成後,官網說直接使用service就可以啟動,service mysql start,但是我這裡報找不到這個service啟動腳本。 使用mysqld來啟動,直接使用mysqld命令啟動,報錯不允許使用root用戶執行 [Server] Fatal error: Please read "Security" section of the manual to find out how to run mysqld as root!
使用mysql用戶執行 mysqld –user=mysql &
