NitWikit/docs/正式开服/连接服务器.md
2024-06-08 22:13:36 +08:00

54 lines
900 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
sidebar_position: 2
---
# 连接服务器
## 端口
打开你服务器根目录的 `server.properties`
找到
```yaml
server-port=25565
```
`25565` 即mc服务器的默认端口如果不更改默认端口通常可省略不写
## 本地连接
:::tip
此方法适用于你服务端和客户端在同一机器上的情况
:::
**回环地址**用来表示本机IP通常有这样几种形式
- localhost
- 127.0.0.1
- 0.0.0.0
如果你没有修改你的服务器端口那么在你的mc客户端中:
1. 点击多人游戏
2. 点击添加服务器
3. 输入上面提到的回环地址中的任意一个
4. 点击完成
5. 进入服务器
如果你修改了你的服务器端口,在回环地址后面加个冒号加上你改的端口即可
如:
- localhost:25566
- 127.0.0.1:25566
- 0.0.0.0:25566
:::warning
这里要使用英文的 `:` 不能使用中文的 ``
:::