PLATFORM

Here you can find an easy to install last opensource Stalker Portal v.4.9.35, with enhanced capabilities of supporting newer versions of MAG322, MAG420 and MAG520. It has been edited to work on newer versions of PHP and Ubuntu 24.04. Follow the step-by-step guide for installation on a freshly installed Ubuntu 24.04.

  1. Install docker and docker-compose
$ sudo apt install docker-compose-v2
$ sudo usermod -aG docker $USER
$ newgrp docker
  1. Download the Stalker database

The following commands download a fresh Stalker DB and extract it into /opt/stalkerdb:

wget https://openiptv.net/stalkerdb.tar.gz
sudo tar zxf stalkerdb.tar.gz -C /opt

If you have an existing database in /opt/stalkerdb, you can skip this step.

  1. Download the Stalker web root

This will download the files served by the Stalker web server and place them in /opt/html

wget https://openiptv.net/html.tar.gz
sudo tar zxf html.tar.gz -C /opt
  1. Download docker-compose.yml
wget https://openiptv.net/docker-compose.yml
  1. Start the portal
docker compose up -d

The portal will be available at http://<your-ip-addr>/stalker_portal/, the default admin password is 1. If you want to change it, you can use the following command:

docker exec -it stalker mysql -u root -pdbpass -h stalkerdb -e "use stalker_db; update administrators set pass=MD5('new_password') where login='admin';"
  1. Stop the portal
docker compose down
en_USEnglish