macOS 10 Install MariaDB standalone 單機模式 – IT 484 Post author:若雪 Post published:2022-02-16 Post category:IT / MariaDB / RDB Post comments:0 Comments Post last modified:2023-01-14 實作架設 Server ,從套件庫下載安裝,可以大幅地節省工程師開發與部署的時間,使用 Homebrew 來達成,這是最簡單的方法。 Table of Contents Toggle 功能簡介功能簡介安裝套件macOS 10 Install MariaDB standalone組態設定運行管理啟動服務停止服務安全性設置設置遠端登入狀態驗證測試連線心得分享原碼下載 功能簡介 MariaDB 是一個關聯式資料庫,由 MySQL 原始開發人員建立的一個分支,源於與 MySQL 被 Oracle 收購有關的擔憂。它支援小資料處理任務和企業需求, 目標是成為 MySQL 的替代品。 功能簡介 建置單台的主機架構。 Node IP Port Master 192.168.1.100 3306 安裝套件 macOS 10 Install MariaDB standalone 使用 brew 安裝。 brew install mariadb 組態設定 vim /opt/homebrew/etc/my.cnf [client-server] 運行管理 啟動服務 安裝完成後,並不會自動啟動服務,使用 brew services start 命令來啟動服務。 brew services start mariadb 停止服務 啟動服務後,使用 brew services stop 命令終止服務運行。 brew services stop mariadb 安全性設置 設定變更 root 密碼。 移除 test 資料庫。 不允許遠端登入。 mysql_secure_installation 設置遠端登入 預設是沒有開啟遠端登入權限,設置遠端登入僅為了開發測試使用,產品環境請勿開啟。 mysql -uroot -ppassword >grant all privileges on *.* to 'root'@'%' identified by 'password' with grant option; >flush privileges; >exit; 狀態驗證 Install MariaDB macOS 啟動服務後,使用 brew services info 命令來啟查看服務狀況。 brew services info mariadb mariadb (homebrew.mxcl.mariadb) Running: v Loaded: v Schedulable: x User: admin PID: 5272 測試連線 使用命令列,連線服務。 mysql -uroot -ppassword >exit; 心得分享 macOS Install MariaDB 快速安裝後,便於個人電腦、筆電在開發研究或測試時使用,省略複雜的設定,所以沒有參數需要調整,簡單快速建置就能使用服務,除此之外還有其他平台: Centos 7 安裝 MariaDB 原碼下載 GitHub - ruoxueorg Tags: mac, macos, mariadb Read more articles Previous PostCentos 7 Install MariaDB standalone 單機模式 – IT 484 You Might Also Like Centos 7 Install Redis sentinel 哨兵模式 – IT 484 2021-01-10 macOS 10 Install Nginx – IT 484 2021-02-10 Bash Arrays – Bash 460 2023-01-18 發佈留言 取消回覆CommentEnter your name or username to comment Enter your email address to comment Enter your website URL (optional) 在瀏覽器中儲存顯示名稱、電子郵件地址及個人網站網址,以供下次發佈留言時使用。