1.設置環境變量
不管是用戶環境變量仍是系統環境變量mysql
2.安裝服務
進入根目錄sql
名字根據 --install 後的 參數來決定 叫MariaDB,MySQL 均可以shell
mysqld.exe --install MariaDB
Service successfully installed.bootstrap
安裝經過ini配置文件(不配置環境變量, 必定要經過這種方式 來安裝服務) mysqld.exe --install MariaDB --defaults-file=D:\DB\my.ini
less
最後能夠看到服務的配置[屬性]中, [可執行文件路徑], 有如下信息 D:\Program\MariaDB\mariadb-10.3.12-winx64\bin\mysqld.exe --defaults-file=D:\DB\my.ini MariaDB
socket
3.卸載服務
mysqld.exe --remove MariaDB
Service successfully removed.this
4.啓動服務
net start MariaDB
MariaDB服務正在啓動 . MariaDB服務已經啓動成功。spa
5.中止服務
net stop MariaDB
MariaDB服務正在中止. MariaDB服務已成功中止。命令行
.\mysql_install_db.exe -?, --help Display this help message and exit. -d, --datadir=name Data directory of the new database -S, --service=name Name of the Windows service -p, --password=name Root password -P, --port=# mysql port -W, --socket=name named pipe name (if missing, it will be set the same as service) -D, --default-user Create default user -R, --allow-remote-root-access Allows remote access from network for user root -N, --skip-networking Do not use TCP connections, use pipe instead -i, --innodb-page-size=# Page size for innodb -s, --silent Print less information -o, --verbose-bootstrap Include mysqld bootstrap output FATAL ERROR: parameter --datadir=# is mandatory
PS D:\Program\MariaDB\mariadb-10.3.12-winx64\bin> .\mysql_install_db.exe -d D:\DB -S MariaDB Running bootstrap 2019-02-13 16:46:10 0 [Note] D:\Program\MariaDB\mariadb-10.3.12-winx64\bin\mysqld.exe (mysqld 10.3.12-MariaDB) starting as process 9212 ... Removing default user Creating my.ini file Registering service 'MariaDB' Creation of the database was successful
在服務能夠看到code
"D:\Program\MariaDB\mariadb-10.3.12-winx64\bin\mysqld.exe" "--defaults-file=D:\DB\my.ini" "MariaDB"
卸載
mysqld.exe安裝的服務,卸載必須用cmd(管理員權限) , powershell中 sc 命令無效
調用sc delete mariaDB
[SC] DeleteService 成功
- 命令行方式啓動
mysqld.exe --console