Welcome to World of IPTV

Join us now to get access to all our features. Once registered and logged in, you will be able to create topics, post replies to existing threads, give reputation to your fellow members, get your own private messenger, and so, so much more. It's also quick and totally free, so what are you waiting for?

Forum Rules

Our Rules: Read to avoid getting banned!

Advertising

Introduce Yourself to the World with Us!

Resource Database

Find the newest resources around IPTV!

Account upgrade

Upgrade your account to unlock more benefits!

Download Ministra Manual Installation Guide on Ubuntu 16

Mkhuram786

Extended Member
Ext. Member
Joined
Mar 6, 2020
Messages
9
Reaction score
84
Points
24
Location
Pakistan
Following are the instructions to install the Ministra Portal on Ubuntu 16





Infomir-Middleware Installation on Ubuntu Server LTS 16.04
Install Ubuntu server 16.04
  • Upgrade Packages

Code:
Sudo apt-get update
Sudo apt-get upgrade

  • Execute Command

Code:
sudo apt-get install memcached mysql-server php php-mysql php-pear nodejs libapache2-mod-php && sudo pear channel-discover pear.phing.info && sudo pear install -Z phing/phing

  • During installation you will prompted for sql password for use root. Please configure password
  • Login to MySQL

Code:
mysql -u root -p
CREATE DATABASE stalker_db;
SHOW DATABASES;
GRANT ALL PRIVILEGES ON stalker_db.* TO stalker@localhost IDENTIFIED BY '1' WITH GRANT OPTION;
FLUSH PRIVILEGES;

  • Copy Ministra.zip files in the destination /var/www
  • Install and upgrade the version of NPM to 2.15.11

Code:
sudo apt install npm
sudo npm install -g [email protected]
sudo ln -s /usr/bin/nodejs /usr/bin/node

  • Install Unzip and Unzip Ministra.zip

Code:
sudo apt-get install unzip
unzip Ministra.zip

  • Go to (/var/www/stalker_portal/deploy/) and run command

Code:
sudo phing

You will receive message after some time “Build Finished”. If not run the command again:

Code:
sudo phing

  • Go to (/etc/mysql/mysql.conf.d) and add to the end of the file mysqld.cnf

Code:
sql_mode=””

  • Restart sql services

Code:
sudo service mysql restart

  • Run command to enable mod_encrypt

Code:
phpenmod mcrypt

  • Run command

Code:
echo "short_open_tag = On" >> /etc/php/7.0/apache2/php.ini

  • Enable mode_rewrite

Code:
a2enmod rewrite

Make sure that the package libapache2-mod-php5filter is not installed on the system. If necessary, remove it.

Code:
apt-get purge libapache2-mod-php5filter

Remove content of /etc/apache2/sites-available/ Do not forget to make backup.

Code:
cp 000-default.conf /etc/apache2/sites-available/000-default.backup
cat /dev/null > /etc/apache2/sites-available/000-default.conf

Add following content to /etc/apache2/sites-available/000-default.conf

Code:
<VirtualHost *:88>
        ServerAdmin webmaster@localhost
        DocumentRoot /var/www
        <Directory /var/www/stalker_portal/>
                Options -Indexes -MultiViews
                AllowOverride ALL
                Require all granted
        </Directory>
        ErrorLog ${APACHE_LOG_DIR}/error.log
        CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>[/B]

Set in /etc/apache2/ports.conf

Code:
Listen 88

Run command

Code:
service Apache2 restart

Install nginx

Code:
sudo apt-get install nginx

Go to /etc/nginx/sites-available/

Code:
cp default /etc/nginx/sites-available/backup-default

Now edit default file and remove all content and paste the following

Code:
server {
    listen       80;
    server_name  localhost;

    location / {
        proxy_pass http://127.0.0.1:88/;
        proxy_set_header Host $host:$server_port;
        proxy_set_header X-Real-IP $remote_addr;
    }

    location ~* \.(htm|html|jpeg|jpg|gif|png|css|js)$ {
        root /var/www;
        expires 30d;
    }
}


    • Run command

Code:
service nginx restart


    • Ministra Administration interface will be available via URL

Code:
http://<your_ip_or_domain_name>/stalker_portal/server/adm/


    • Default access

Code:
login: admin
password: 1
chmod -R a+rwx

[/LIKES]
 
Last edited:
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changcdn
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com
shape1
shape2
shape3
shape4
shape5
shape6
Back
Top