# 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="https://3902962638-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F4eyIGD5kWiby93w0l2pW%2Fuploads%2Fgit-blob-a31aefc13748ad0a7224fb40aba357dd8e62d11b%2Flogin_screen.png?alt=media" 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](https://docs.akamas.io/akamas-docs/installing/install-the-akamas-license).

## 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](https://docs.akamas.io/akamas-docs/optimization-guides "mention") to create your own studies.

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