露營模擬器《遠足》上線steam 明年第一季度推出
阿新 • • 發佈:2021-12-31
1:npm解除安裝安裝特定版本node-gyp 命令如下:
npm uninstall -g node-gyp
npm install -g [email protected]
2:centos安裝mongodb 命令如下:
vim/etc/yum.repos.d/mongodb-org-4.2.repo
[mongodb-org-4.2] name=MongoDB Repository baseurl=https://repo.mongodb.org/yum/redhat/$releasever/mongodb-org/4.2/x86_64/ gpgcheck=1 enabled=1 gpgkey=https://www.mongodb.org/static/pgp/server-4.2.asc
yum -y install mongodb-org
systemctl status mongod.service # 檢視mongod狀態 systemctl start mongod.service # 啟動 systemctl stop mongod.service # 停止 systemctl enable mongod.service # 自啟
3:centos關閉防火牆命令
執行關閉命令: systemctl stop firewalld.service 再次執行檢視防火牆命令: systemctl status firewalld.service 執行開機禁用防火牆自啟命令 : systemctl disable firewalld.service 啟動: systemctl start firewalld.service 防火牆隨系統開啟啟動 : systemctl enable firewalld.service