溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

windows 安裝 rabbitmq ERLANG_HOME not set correctly

發(fā)布時(shí)間:2020-06-19 19:16:03 來源:網(wǎng)絡(luò) 閱讀:5712 作者:北極冷冷冷 欄目:編程語言

windows 64位 安裝 rabbitmq 出錯(cuò)

下載地址
https://www.rabbitmq.com/download.html

我下載的是3.7.15

先安裝 Erlang 再安裝 rabbitmq

啟用管理界面
rabbitmq-plugins enable rabbitmq_management 出錯(cuò)

配置時(shí)出錯(cuò) :

******************************
ERLANG_HOME not set correctly.
******************************

Please either set ERLANG_HOME to point to your Erlang installation or place the
RabbitMQ server distribution in the Erlang lib folder.

環(huán)境變量也是配置對的 但是在 rabbitmq_server.bat 一直沒讀取到

解決辦法:

編輯rabbitmq_server.bat文件,看看是否找到了erl.exe ,但路徑不正確:
31行:

if not exist "!ERLANG_HOME!\bin\erl.exe" (
        echo.
        echo ******************************
        echo ERLANG_HOME not set correctly.
        echo ******************************
        echo.
        echo Please either set ERLANG_HOME to point to your Erlang installation or place the
        echo RabbitMQ server distribution in the Erlang lib folder.
        echo.
        exit /B 1
)

48行:

"!ERLANG_HOME!\bin\erl.exe" +B ^

直接改成了絕對路徑 :

"D:\Program Files\erl9.3\bin\erl.exe" 

重啟 訪問 http://localhost:15672 默認(rèn)賬號和密碼都是 guest

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI