Memcached

如何為 memcstat 設置 MEMCACHED_SERVERS 環境變數

  • December 30, 2020

我已經在 ubuntu 18.04 上安裝了 memcached 和 libmemcached-tools。這兩個命令都有效:

memcstat --servers=localhost
memcstat --servers=127.0.0.1

但是在 memcstat 的手冊頁中它說:

您可以通過以下選項指定伺服器:

–伺服器

或通過環境變數:

‘MEMCACHED_SERVERS,–args’

我找不到任何有關如何設置 MEMCACHED_SERVERS 變數的範例。我試過了:

MEMCACHED_SERVERS=127.0.0.1
MEMCACHED_SERVERS="127.0.0.1"
MEMCACHED_SERVERS="--args 127.0.0.1"
MEMCACHED_SERVERS="localhost"
MEMCACHED_SERVERS=localhost
MEMCACHED_SERVERS="--servers=localhost"

但我從 memcstat 得到的只是“沒有提供伺服器”。

如果您不想設置環境變數:

#> MEMCACHED_SERVERS='127.0.0.1' memcstat

除此以外:

#> export MEMCACHED_SERVERS='127.0.0.1'
#> memcstat

引用自:https://serverfault.com/questions/1048054