Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix directory's link error #215

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions getting-started/directory.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ In the above directories, `bin`, `etc`, `data` and`log` are commonly used by us

**emqx、emqx.cmd**

The executable file of EMQ X Broker can be found in [Basic Command](getting-started/command-line.md).
The executable file of EMQ X Broker can be found in [Basic Command](./command-line.md).

**emqx_ctl、emqx_ctl.cmd**

The executable file of EMQ X Broker management command, you can check [Management Command CLI](advanced/cli.md) for specific use.
The executable file of EMQ X Broker management command, you can check [Management Command CLI](../advanced/cli.md) for specific use.

#### etc directory

Expand All @@ -35,7 +35,7 @@ EMQ X Broker is set by configuration files in the `etc` directory. The main conf
| plugins/*.conf | EMQ X Broker various plug-in configuration files |
| certs | EMQ X Broker SSL certificate file |

The specific configuration content of EMQ X Broker can be viewed in [Configuration Item](configuration/index.md).
The specific configuration content of EMQ X Broker can be viewed in [Configuration Item](../configuration/configuration.md).

#### data directory

Expand All @@ -47,7 +47,7 @@ EMQ X Broker reads the configuration in `etc/emqx.conf` and `etc/plugins/*.conf`

**loaded_plugins**

The `loaded_plugins` file records the list of plug-ins that was started by EMQ X Broker by default. You can modify this file to add or delete plug-ins. The startup item format in `loaded_plugins` is `{<Plugin Name>, <Enabled>}. `, the `<Enabled> `field is a Boolean type, and EMQ X Broker will determine whether to start this plugin according to the value of `<Enabled> `. For more information about plugins, please see [plug-ins](advanced/plugins.md).
The `loaded_plugins` file records the list of plug-ins that was started by EMQ X Broker by default. You can modify this file to add or delete plug-ins. The startup item format in `loaded_plugins` is `{<Plugin Name>, <Enabled>}. `, the `<Enabled> `field is a Boolean type, and EMQ X Broker will determine whether to start this plugin according to the value of `<Enabled> `. For more information about plugins, please see [plug-ins](../advanced/plugins.md).

{% emqxce %}
```bash
Expand Down Expand Up @@ -82,18 +82,18 @@ Mnesia database is a distributed DBMS in Erlang, which can directly store variou

EMQ X Broker uses the Mnesia database to store its own running data, such as alarm records, resources and rules created by the rule engine, Dashbaord user information, etc. These data will be stored under the `mnesia` directory. Once the directory is deleted, EMQ X Broker will lose all business data.

You can query the system information of the Mnesia database in EMQ X Broker through the `emqx_ctl mnesia` command. For details, please see [Management Command CLI](advanced/cli.md).
You can query the system information of the Mnesia database in EMQ X Broker through the `emqx_ctl mnesia` command. For details, please see [Management Command CLI](../advanced/cli.md).


#### log directory

**emqx.log.***

For the log file generated when EMQ X Broker is running, please check [Log and Trace](getting-started/log.md).
For the log file generated when EMQ X Broker is running, please check [Log and Trace](./log.md).

**crash.dump**

The crash dump file of EMQ X Broker can be modified through `etc/emqx.conf` , and the specific content can be viewed in [configuration item](configuration/index.md).
The crash dump file of EMQ X Broker can be modified through `etc/emqx.conf` , and the specific content can be viewed in [configuration item](../configuration/configuration.md).

**erlang.log.***

Expand Down