> For the complete documentation index, see [llms.txt](https://docs.enginsight.com/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.enginsight.com/docs/knowledge-base/english/configuration/how-can-i-test-whether-my-servers-meet-the-system-requirements-for-enginsight.md).

# How can I test whether my servers meet the system requirements for Enginsight?

To make sure that a configured Application Server or Database Server meets the system requirements for Enginsight, you can run the following tests to assess CPU and disk performance:

## Measuring Maximum CPU Performance

To check the maximum CPU performance of a server, run the following command:

```
sudo apt install sysbench
sysbench --test=cpu --cpu-max-prime=20000 run
```

The expected performance is a result of 1500.

## Measuring Disk Performance for Read/Write Operations

To check disk performance for read and write operations, run the following command:

```
sudo apt install fio 
fio --name=random-readwrite --ioengine=libaio --iodepth=1 --rw=randrw --bs=4k --direct=1 --size=1G --numjobs=1 --runtime=60 --filename=/tmp/testfile
```

The expected performance is at least 10 MB/s.

***
