Skip to content

Commit

Permalink
port-faq (#166)
Browse files Browse the repository at this point in the history
* port-faq

* fix wum
  • Loading branch information
amber-moe authored Oct 27, 2020
1 parent 49d6760 commit 7a48e26
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion docs/manual-EN/1.overview/2.quick-start/2.FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,12 +95,36 @@ Check the logs (/usr/local/nebula/nebula-storaged.ERROR) of the storaged service
E1121 04:49:34.563858 256 GraphClient.cpp:54] Thrift rpc call failed: AsyncSocketException: connect failed, type = Socket not open, errno = 111 (Connection refused): Connection refused
```

Check service status by
Check service status by using the following command:

```bash
$ /usr/local/nebula/scripts/nebula.service status all
```

Or list the hosts:

```ngql
nebula> SHOW HOSTS;
```

Please make sure that the following ports are available and not blocked by your firewall. You can find them in the configuration files in `/usr/local/nebula/etc/`.

Service Name|Port
---|---
Meta Service|45500, 11000, 11002
Storage Service|44500, 12000, 12002
Graph Service|3699, 13000, 13002

Besides, remember to restart the services if you change the default value of the ports.

To check if the ports are available, run the following command:

```bash
$ telnet $ip $port
```

Make sure that the port in every host of the cluster is available.

### Could not create logging file:... Too many open files

1. Check your disk space `df -h`
Expand Down

0 comments on commit 7a48e26

Please sign in to comment.