浏览代码

Merge pull request #451 from philips/use-the-right-port

fix(README): use 4002 not 4001
Brandon Philips 12 年之前
父节点
当前提交
4e8828c5c4
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      README.md

+ 2 - 2
README.md

@@ -68,8 +68,8 @@ This will bring up etcd listening on port 4001 for client communication and on p
 Next lets set a single key and then retrieve it:
 Next lets set a single key and then retrieve it:
 
 
 ```
 ```
-curl -L http://127.0.0.1:4002/v2/keys/mykey -XPUT -d value="this is awesome"
-curl -L http://127.0.0.1:4002/v2/keys/mykey
+curl -L http://127.0.0.1:4001/v2/keys/mykey -XPUT -d value="this is awesome"
+curl -L http://127.0.0.1:4001/v2/keys/mykey
 ```
 ```
 
 
 You have successfully started an etcd on a single machine and written a key to the store. Now it time to dig into the full etcd API and other guides.
 You have successfully started an etcd on a single machine and written a key to the store. Now it time to dig into the full etcd API and other guides.