In this video I show you how to download the HANA Docker image and run it on Open SUSE Leap with WSL straight from you Windows 11 computer with Powershell.
Some of the long commands you would need to run:
1.) echo -e "[boot]\nsystemd=true" | sudo tee -a /etc/wsl.conf
2.) echo '{"master_password":"Welcome1!"}' | sudo tee /data/hxe/password.json
3.) echo -e "vm.max_map_count=135217728\nfs.file-max=20000000\nfs.aio-max-nr=262144\nnet.ipv4.ip_local_port_range=40000 60999" | sudo tee /etc/sysctl.d/99-hxe.conf
4.) docker run -d --name hxe --shm-size=2g -p 39013:39013 -p 39017:39017 -p 39041-39045:39041-39045 -p 1128-1129:1128-1129 -p 59013-59014:59013-59014 -v /data/hxe:/hana/mounts --ulimit nofile=1048576:1048576 --sysctl net.ipv4.ip_local_port_range='40000 60999' --hostname hxehost saplabs/hanaexpress:latest --passwords-url file:///hana/mounts/password.json --agree-to-sap-license
5.) hdbuserstore SET SYSTEM 127.0.0.1:39017@HXE SYSTEM 'Welcome1!'