mysql5 6設定linux開機自啟

2021-09-17 19:55:58 字數 457 閱讀 2235

1,將服務檔案複製乙份到init.d下,並重命名為mysqld

cp /usr/local/mysql/support-files/mysql.server /etc/init.d/mysqld

2,對檔案賦予執行許可權

chmod +x /etc/init.d/mysqld 或 chmod 777 /etc/init.d/mysqld

3,增加mysqld服務

chkconfig --add mysqld

4,查詢mysqld服務情況

chkconfig --list mysqld

mysqld 0:off 1:off 2:on 3:on 4:on 5:on 6:off    預設的執行級別為2,3,4,5 

5,如果3,4,5 為off:

chkconfig --level 345 mysqld on

6,重啟伺服器驗證:reboot

mysql5 6亂碼 mysql5 6亂碼

安裝mysql5.6版本遇到乙個問題,字符集亂碼,如下圖 由於是新安裝的本地資料庫,所以一定是配置的事情,查詢資料庫字符集配置,如下 有兩個是latin1的字符集,本人是window7環境,在網路找了很多資料,都顯示為修改 c program files mysql mysql server 5.6...

編譯mysql5 6 編譯安裝mysql5 6

mysqlwget tar zxvf mysql 5.6.33.tar.gz tar zxvf cmake 2.8.5.tar.gz cd cmake 2.8.5 安裝編譯工具.bootstrap prefix usr local cmake sudo gmake sudo gmake instal...

mysql 5 6設定允許外部訪問

進入資料庫 mysql u root p 登入資料庫 use mysql select user,authentication string,host from user 查詢資料庫使用者,在這裡正常來說,應該都localhost 如果用這種方式增加乙個root發現無法遠端連線,是因為之前mysql...