open . // 打開當前目錄
修改完 ~/.bash_profile 添加全局變量後,用zsh終端從新打開,仍是找不到命令。解決辦法,在 ~/.zshrc 裏添加mysql
source ~/.bash_profile
即每次打開終端,自動執行一遍配置文件,就能找到對應命令了nginx
mysql -u root -proot 本機mysql帳號密碼
sudo apachectl start // 啓動 sudo apachectl stop // 中止
配置文件目錄apache
/etc/apache2/httpd.conf
站點根目錄npm
/Library/WebServer/Documents/
安裝bash
brew install nginx
安裝完提示服務器
Docroot is: /usr/local/var/www The default port has been set in /usr/local/etc/nginx/nginx.conf to 8080 so that nginx can run without sudo. nginx will load all files in /usr/local/etc/nginx/servers/. To have launchd start nginx now and restart at login: brew services start nginx Or, if you don't want/need a background service you can just run: nginx
根據提示,直接輸入 nginx 命令就能夠打開服務器了。
站點根目錄在 /usr/local/var/www。配置文件在 /usr/local/etc/nginx/nginx.conf。測試
MQTT協議之因此適用於物聯網,是由於其對帶寬要求不高,對數據傳輸的有效性要求不高ui
You can make changes to the configuration by editing: /usr/local/etc/mosquitto/mosquitto.conf To have launchd start mosquitto now and restart at login: brew services start mosquitto Or, if you don't want/need a background service you can just run: mosquitto -c /usr/local/etc/mosquitto/mosquitto.conf
啓動/重啓命令.net
brew services start mosquitto #啓動服務 brew services restart mosquitto #重啓服務 brew services stop mosquitto #中止服務
Mosquitto配置
/usr/local/etc/mosquitto/mosquitto.conf
修改配置文件,其默認配置文件是註釋掉的,須要去掉#
bind_address 127.0.0.1 port 1883
測試, 打開三個終端,分別輸入下面的命令
brew services start mosquitto #第一個終端,開啓mqtt服務器 mosquitto_sub -h localhost -t "test" #第二個終端,訂閱主題爲test mosquitto_pub -h localhost -t "test" -m "hello" #發佈主題test,發送內容爲hello
也能夠下載客戶端mqttfx,可視化操做
brew install mqttfx
問題:安裝Chromium報錯,網上有幾種解決方法,通過實踐,最簡單的一種以下
PUPPETEER_DOWNLOAD_HOST=https://npm.taobao.org/mirrors npm i --save puppeteer