# Verify the installation

Run the following command to verify the correct startup and initialization of Akamas:

```bash
akamas status
```

When all services have been started, this command will return an "OK" message. Please note that it might take a few minutes for Akamas to start all services.

To check the UI is also properly working please access the following URL:

```
http://<akamas server name here>
```

You will see the Akamas login form:

<figure><img src="/files/FoJ9TgmIbK2d5Dja0hAE" alt=""><figcaption></figcaption></figure>

Please notice that it is impossible to log into Akamas before a license has been installed. Read here [how to Install an Akamas license](/akamas-docs/installing/install-the-akamas-license.md).

## Sample Study Creation During Installation

After running the basic checks (like `akamas status`) to confirm that all Akamas services are running, you may notice that **a sample study is automatically created by default**. This study can then be run to ensure that your Akamas environment is correctly installed and operational.

### Disabling the Automatic Sample Study

If you **do not** want this study to be created automatically, you can disable it as follows:

### **Docker**

Within your `docker-compose.yml`, in the **akamas-init** service (the “Akamas Initializer”), locate the environment variable `CREATE_SAMPLE_STUDY` and set it to `false`. For example:

```yaml
akamas-init:
    environment:
      - CREATE_SAMPLE_STUDY=false
```

This ensures that the initializer won’t create the study during startup.

### **Kubernetes**

In your Akamas chart folder, edit the `values` file (for example, `values-files/my-values.yaml`) to include:

```yaml
createSampleStudy: false
```

This prevents the study creation in the Kubernetes deployment.

By disabling the sample study feature, Akamas will be installed without automatically creating and running that study. You can then follow the [Optimization Guides](/akamas-docs/optimization-guides.md) to create your own studies.

**Note:** The creation of the **Sample Study** can add up to **10 extra minutes** to Akamas' startup time.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.akamas.io/akamas-docs/installing/verify-the-akamas-server.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
