> ## Documentation Index
> Fetch the complete documentation index at: https://visual-layer-mintlify-b738e5e2.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Basic Operations

> Start, stop, and connect to Visual Layer with basic dataset creation and logging commands.

### Connect to the Application

Once the system is running, connect to the application using your browser:

* **HTTP** : `http://<server name>:2080`
* **HTTPS** : `https://<server name>:2443`

### Start the System

```sh theme={null}
./start.sh
```

### Stop the System

```sh theme={null}
./stop.sh
```

### Creating Datasets

```sh theme={null}
./run_profiler.sh -n "<desired dataset name>" -p "<dataset source dir>"
```

* This process **can take several hours**, depending on data size.
* If the dataset name includes spaces, use **quotation marks**(e.g., `"My Dataset"`).

## Accessing Logs & Support

#### Debugging Run

Use the following environment variables to enable debugging:

```sh theme={null}
LOG_LEVEL=10  # Set log level to debug
REPORTING_LOG_PATH="/path/to/log.txt"  # Write pipeline log to file
```
