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.
- Install
docker
anddocker-compose
$ sudo apt install docker-compose-v2
$ sudo usermod -aG docker $USER
$ newgrp docker
- 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.
- 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
- Download
docker-compose.yml
wget https://openiptv.net/docker-compose.yml
- 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';"
- Stop the portal
docker compose down