influxdb開啟身份驗證 建立使用者

2021-10-01 21:47:06 字數 1138 閱讀 1193

# 建立乙個root使用者

> create user "root"

with password 'root'

# 刪除root使用者

> drop user root

# 重新設定root使用者,並設定帶上所有許可權

> create user "root"

with password 'root'

with all privileges

>

# 發現root許可權為true了,那麼root的使用者就建立好了。

> show users

user admin

----

----

-root true

修改配置檔案:

重啟influxdb服務。

service influxdb restart
登入需要使用者名稱和密碼:

Forms 身份驗證

配置應用程式使用 forms 身份驗證 如果應用程式的根目錄中有 web.config 檔案,請開啟該檔案。複製 在system.web元素中,建立乙個authentication元素,並將它的mode屬性設定為 forms,如下面的示例所示 複製 在authentication元素中,建立乙個fo...

WebService身份驗證

web service身份驗證解決方案一 通過通過soap header身份驗證。1.我們實現乙個用於身份驗證的類,檔名mysoapheader.cs mysoapheader類繼承自system.web.services.protocols.soapheader。且定義了兩個成員變數,userna...

WebServices身份驗證

最近遇到乙個問題,暴露在網路上的web service如何做身份驗證,而不被其他人說是用。mysoapheader.cs類 using system using system.collections.generic using system.linq using system.web namespa...