From 64098013dfd12cedb5dcdc18caf0f5e8cd2b00ac Mon Sep 17 00:00:00 2001 From: caorufu <40569449+caorufu@users.noreply.github.com> Date: Thu, 14 Jul 2022 17:37:38 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E6=9C=AC=E5=9C=B0=E8=BF=90?= =?UTF-8?q?=E8=A1=8C=E6=AD=A4=E7=94=B5=E5=AD=90=E4=B9=A6=E7=9A=84=E8=AF=B4?= =?UTF-8?q?=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 在win 10系统中,如果不加-n参数指定本地服务的ip地址,则服务监听的ip为空,无法通过浏览器访问。信息如下: >mdbook serve 2022-07-14 17:36:59 [INFO] (mdbook::book): Book building has started 2022-07-14 17:36:59 [INFO] (mdbook::book): Running the html backend 2022-07-14 17:36:59 [INFO] (mdbook::cmd::serve): Serving on: http://localhost:3000 2022-07-14 17:36:59 [INFO] (warp::server): Server::run; addr=[::1]:3000 2022-07-14 17:36:59 [INFO] (warp::server): listening on http://[::1]:3000 2022-07-14 17:36:59 [INFO] (mdbook::cmd::watch): Listening for changes... --- zh-CN/src/why-exercise.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zh-CN/src/why-exercise.md b/zh-CN/src/why-exercise.md index 6b029a3..3f243e3 100644 --- a/zh-CN/src/why-exercise.md +++ b/zh-CN/src/why-exercise.md @@ -26,7 +26,10 @@ $ cargo install mdbook $ cd rust-by-practice && mdbook serve ``` - +在本地win 10或者linux服务器上运行时,应当使用 -n 参数指定mdbook服务所监听的IP地址(-p 参数指定服务监听的端口,不指定则为默认的3000),以win 10本地运行为例: +```shell +$ mdbook serve -p 8888 -n 127.0.0.1 +``` ## 特性 部分示例和习题借鉴了 [Rust By Example](https://github.com/rust-lang/rust-by-example), 书中的示例真的非常棒!