我有一個基於Ubuntu的memcache服務器。從其他服務器使用memcache
現在我想我的新服務器使用舊服務器的內存緩存。
我想什麼?在我的防火牆
打開TCP端口11211
但我仍無法使用它。
在/etc/memcached.conf:
# Specify which IP address to listen on. The default is to listen on all IP addresses
# This parameter is one of the only security measures that memcached has, so make sure
# it's listening on a firewalled interface.
-l 127.0.0.1
我已經改變了127.0.0.1到0.0.0.0/0
須藤葉平板輸出
[sudo] password for azureuser:
Chain INPUT (policy ACCEPT)
target prot opt source destination
ACCEPT udp -- anywhere anywhere udp dpt:bootpc
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
上偵聽0.0.0.0應該這樣做。你可以嘗試telnet到新機器的端口。什麼'sudo iptables -L'輸出? – sberry
這不就是爲了監聽服務器嗎? –
好吧,我編輯的問題。現在它包含輸出。 – ReCra