Get Started
It’s easy… just follow these steps
Step 1
Get Infinispan
Infinispan requires authentication and authorization by default. Create a user named `admin` to implicitly have a user with the admin role.
Run the following command:
docker run -it -p 11222:11222 -e USER="admin" -e PASS="password" quay.io/infinispan/server:16.1
podman run -it -p 11222:11222 -e USER="admin" -e PASS="password" --net=host quay.io/infinispan/server:16.1
Step 2
Open the Console
Open localhost:11222 in any browser and then log in.

Step 3
Create a cache
- Select *Create a cache*.
- Specify a cache name.
- Follow the cache creation wizard leaving all the default options.
- Select *Create* to the entry to your cache.
You can also create a cache from a xml, json or yaml configuration.

Step 4
Add data
- Select your cache and then *Add entry*.
- Specify "hello" as the key and "world" as the value.
- Optionally specify the time to live or maximum idle time.
- *Add* the entry to your cache.
After you add data, you can enter the key to retrieve and view the entry.

That's it! You're now using Infinispan.
Check out our Tutorials to learn more about what you can do with Infinispan.


