42 pagesV  < 1 2 3 4 5 6 > »  
 
REPLY
> Ministra TV (IPTV / OTT service) | [IPTV] Ministra (formerly Stalker MiddleWare)
zhyk_magadan
Message#1
04.01.18, 08:15
Old resident
*******
[offline]

Group: Banned
Messages 1092
Check in: 13.05.15
Samsung Galaxy A5 (2017) SM-A520F / DS

Reputation:-  292  +

Ministra TV (IPTV / OTT service) (formerly MW Stalker)

Rules of the topic (be sure to read: rtfm :)

Screenshots
Stalker classic
Attached Image

Smart launcher
Attached Image

Admin ministra
Attached Image
Attached Image


Theme description:

Ministra- this is the service with which you can create your own providerIPTV. Ministra is owned by the companyInformir. It can be created at home, or in a commercial organization.

References:Wiki Infomir website
Infoworld in the Google Group

Installation Instructions
Preparing to install
System requirements
[b] At home:
  • VM Ubuntu Server 14.04 (amd64)
  • Any processor (x64)
  • the Internet


In a commercial organization:
  1. For server
    1. 2xXeon5620
    2. 16 GB RAM
    3. 2x500 GB HDD
    4. Ubuntu 14.04 Server (x64)

  2. To save content
    1. 2xXeon5620
    2. 16 GB RAM
    3. 2x 2TB
    4. Ubuntu 14.04 Server (x64), 16.04



Preparing VirtualBox for installation
Install with these settings:
  • 1 GB RAM
  • 2 TB dynamic disk
  • Network bridge with router over LAN or WiFi
  • When you install, you are presented with a window on which additional component to install. Choose "OpenSSH Server "


Start Ubuntu Server
Installed!? Now enter the username and password that you gave during the installation. Then we enter the command:
ifconfig

This team we learn the configuration of the interfaces of the Internet. Now we have interfaces writtenloandeth0. If you have installed a network bridge with a router, then in the line IP it will be written like192.168.xxx.xxxwhere xxx are different numbers of ip addresses. This address is memorized, and go to PuTTY. We enter our IP, and the connection type is SSH. Click "Connect", and the window about the bad quality of the certificate is displayed. This we miss, and press YES.

Attention, this instruction is written below to install Ministra on ubuntu 14.04. To avoid dancing with a tambourine, there is an installation instruction on ubuntu 16.04HERE!
Installation in parts
Part 1. Basic package installation
Well, we are already in PuTTY, and he is already waiting for our team. Ministra not only requires a specific OS, but also packages. Naturally we need a root. To get it, enter:
sudo -s

Next, enter your login password, and you are already in the root. Update links to repositories:
apt-get update

Next, update all the packages:
apt-get upgrade

Now we will install all packages with one command:
sudo apt-get update && sudo apt-get -y upgrade && sudo apt-get install -y -u apache2 nginx memcached mysql-server php5 php5-mysql php pear jpeg jpeg upstart && sudo pear install -Z phing / phing

We are waiting, and at some point the window "Think up a password for the root user MySQL" looks out. We come up with a password. We are waiting for pumping ...
Now we need to download and unzip the zip archive. But first, install the unzip archive unpacker:
apt-get install unzip

All set.
Now go to our directory:
cd / var / www /

Next, we download any version of ministra in our header. You can download for example ministra-5.3.0.zip. We first download to our computer, then connect via FileZilla via SFTP to our server. And swing it in / var / www.
Then unpack it:
unzip ministra-5.3.0.zip

Checking:
ls -al

Peeps folderinfomirgroup-stalker_portal-2feec3a9f374
. Let's rename this folder to stalker_portal:
mv infomirgroup-stalker_portal-2feec3a9f374 stalker_portal

Check with the command:
ls -al

Is done. Now we need to create a MySQL user with access rights only to the stalker_db database.
Go to MySQL:
mysql -uroot -p

Enter the password that we gave when installing packages for ministra.
Now we enter it:
create database stalker_db;

Then:
GRANT ALL PRIVILEGES ON stalker_db. * TO stalker @ localhost IDENTIFIED BY '1' WITH GRANT OPTION;

Done, exit the program:
exit

Now we need to create a custom.ini file to indicate additional settings.
We need to work a little!
Do not edit the config.ini file! If you want to change some settings, create a custom.ini file and add the necessary configuration to it.

Let's start !!!
Install MC Commander:
apt-get install mc

Enter Commander mc:
mc

Looks like a similar Volkov Commander with two windows. Okay, go to the directory/ var / www / stalker_portal / server /and here we see several files, but we need a config.ini file
Create a custom.ini file
touch custom.ini

You can further customizeweather(link is clickable) and see]custom.ini settings
Then we go to:
cd / var / www / stalker_portal / deploy /

and enter:
sudo phing

And we expect that this procedure may take a long time or less, and during this time you can go and drink tea with butter and bread)))
The first part is over !!!

Part 2. Setting up MySQL, PHP, Node.js, Apache, Nginx
Now you need to configure the components to Ministra. This is MySQL, PHP, etc.
I will explain in order:
MySQL:To enter
echo "max_allowed_packet = 32M">>/etc/mysql/my.cnf
PHP:Enable mod_mcrypt
First enter this:
php5enmod mcrypt

Then this:
echo "short_open_tag = On">>/etc/php5/apache2/php.ini

Node.JS: You need to make sure that the correct daemon_api_url and stalker_api_url values ​​are set in the config.ini and custom.ini
Apache:Enable mod_rewrite
a2enmod rewrite

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

Then delete the contents of the file 000-default.conf
cat / dev / null>/etc/apache2/sites-available/000-default.conf

Add the following content to the file 000-default.conf
<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>

Then we start mc, go to /etc/apache2/ports.conf, and in line 80 we change to listen 88
Listen 88

Restart apache:
service apache2 restart

Nginx:We go to the file / etc / nginx / sites-available / default, and look at the example of the nginx config, simply further configure it in its own way, or delete all the contents of this file, and enter this:
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;
}
}

Reboot nginx:
service nginx restart

Admin interface will be available by URL/ stalker_portal / "target =" _blank "> http: //<your_ip_or_domain_name>/ stalker_portal /

.
Access to the admin interface by default:
login: admin
password: 1.
Recommended browser for the admin interface: - Mozilla Firefox, Google Chrome.



If necessary, the password can be changed in MySQL:
update administrators set pass = MD5 ('new password') where login = 'admin'

Client side will be available by URL/stalker_portal/c/index.html "target =" _blank "> http: //<your_ip_or_dom ... er_portal / c / index.html

.
In STB, the URL of the client part of the portal is set to - System Settings ⇒ Servers ⇒ (Portal1 and / or Portal2). Environment variables - portal1, portal2.

If you go to the browser, enter that domain, and you have "HTTP ERROR 500", then there may be some kind of error. Looking at the apache logs, you will see that it cannot detect the autoload.php file.
Let's see this file along the path / var / www / stalker_portal / admin / vendor /
At the root of the folder should be the file autoload.php
If not, then the composer may not have worked during phing due to its obsolescence. Let's update it, but if we update it without the swap creation command, it will produce proc_open failed errors. To avoid this, we create a paging file. Enter:
/ bin / dd if = / dev / zero of = / var / swap.1 bs = 1M count = 1024

Then you need to activate:
/ sbin / mkswap /var/swap.1

And activate the other side:
/ sbin / swapon /var/swap.1

Then we go to the directory / deploy /
cd / var / www / stalker_portal / deploy /

And again we enter enter:
sudo phing

Everything, we enter the address in the browser, login and the password and all !!!

Instructions, manuals, miscellaneous

Download Ministra
Read before downloading.how to download zip archive in ubuntu server
Version 5.3.0: ministra-5.3.0.zip
Version 5.4.0: stalker_portal-5.4.0.zip
Version 5.5.0: ministra-5.5.0.zip
Older versions
Version 5.2.0: stalker_portal-5.2.0.zip
Version 5.1.1: stalker_portal_5.1.1.zip
Version 5.0.3 DEMO: Stalker for vm

Topics Curator: zhyk_magadan


Post has been editedzhyk_magadan - 02.12.18, 01:01
Reason for editing: Enabling system settings in new versions of Ministra
spacesuser
Message#22
21.02.18, 19:49
Local
*****
[offline]

Group: Friendssavagemessiahzine.com
Messages 315
Check in: 09.02.12
Honor 9

Reputation:-  44  +

* win12k,
. I will try tomorrow with a fresh mind to understand what you are trying to achieve)) Do you want to watch TV through an emulator like. Multicast / Unicast? And what kind of emulsion?
Ruslan3451
Message#23
22.02.18, 04:29
Novice
***
[offline]

Group: Active users
Messages 30
Check in: 01.01.17

Reputation:-  8  +

Hello
please help put on ubuntu 14.4 portal 5.3
Maybe someone will tell the link to the video how to do
zhyk_magadan
Message#24
22.02.18, 04:32
Old resident
*******
[offline]

Group: Banned
Messages 1092
Check in: 13.05.15
Samsung Galaxy A5 (2017) SM-A520F / DS

Reputation:-  292  +

* Ruslan3451I described the installation in great detail in the header.
Did you install ubuntu server 14.04?
Ruslan3451
Message#25
22.02.18, 13:32
Novice
***
[offline]

Group: Active users
Messages 30
Check in: 01.01.17

Reputation:-  8  +

artem2135468792580


ubuntu server 14.04 installed on VMware Workstation Pro
This address is memorized, and go to PuTTY. We enter our IP, Network: Connection refused

Post has been editedRuslan3451 - 22.02.18, 13:39
zhyk_magadan
Message#26
22.02.18, 14:02
Old resident
*******
[offline]

Group: Banned
Messages 1092
Check in: 13.05.15
Samsung Galaxy A5 (2017) SM-A520F / DS

Reputation:-  292  +

Run Ministra TV Platform in VMWare


There is nothing difficult in principle, I tried it myself, everything works out.
Attention! VMWare supports PAE / NX-compatible processors (if disabled, enable it in BIOS (UEFI))

The configuration case is in the network bridge (and in order to use the bridge with the network you work with, you need to select it manually, but when setting up the auto-selection of the bridge itself, and you do not understand where the bridge goes). And we will understand.


Let's start the setup:
  1. Go to the "Virtual Network Editor" in the main VMWare window.
  2. Turn on "Administrator Mode" at the bottom there is a button with a large exclamation mark.
  3. Select a network (for example, VMNet0), and click on the network, below there are settings specifically for this Virtual Network
  4. Select "Bridge" and inside the drop-down list select your adapter with which you work.
  5. Save all this.
  6. Go to the settings of your virtual machine, go to the "Network", and select "Virtual Network", and in the list select your configured VMNet0.
  7. Is done


Post has been editedartem2135468792580 - 24.02.18, 14:20
Reason for editing: Instructions
win12k
Message#27
24.02.18, 19:58
a guest
*
[offline]

Group: Users
Messages 5
Check in: 26.10.09
HP iPAQ hx2490

Reputation:-  0  +

I have grown together: thank_you:

I put nginx + rtmp-module, using ffmpeg, I send the stream to nginx and everything is working (who cares about this option, look at the nginx-based online broadcast server)

ffmpeg -re -i /home/win12k/record1.mp4 -c copy -f flv rtmp: // localhost / myapp / mystream

About the same way you can get the stream wrapped in anything, and even encode if necessary: ​​happy:

In the portal in the link to the channel I write:

ffmpeg rtmp: // IP server broadcast / myapp / mystream


Post has been editedwin12k - 24.02.18, 20:00


--------------------
To do something well - do it yourself ...
Ruslan3451
Message#28
24.02.18, 21:27
Novice
***
[offline]

Group: Active users
Messages 30
Check in: 01.01.17

Reputation:-  8  +

artem2135468792580

thanks set
how to login to mysql change password


If necessary, the password can be changed in MySQL:
update administrators set pass = MD5 ('new password') where login = 'admin'
zhyk_magadan
Message#29
25.02.18, 00:35
Old resident
*******
[offline]

Group: Banned
Messages 1092
Check in: 13.05.15
Samsung Galaxy A5 (2017) SM-A520F / DS

Reputation:-  292  +

* Ruslan3451, go to MySQL team.
mysql -uroot -p

Enter the password from mysql.
And enter this command, where it says "new password" there and enter
zhyk_magadan
Message#30
25.02.18, 01:04
Old resident
*******
[offline]

Group: Banned
Messages 1092
Check in: 13.05.15
Samsung Galaxy A5 (2017) SM-A520F / DS

Reputation:-  292  +

Emulator and third-party support


By default, there are some functions in the config.ini file. I just said that it can not be edited, and all other settings go to the file custom.ini


For example, we go into the application "IPTV Console Emulator" and set up everything for our portal. But we look "your device is not supported." The fact is that by default it only supports real devices. In order for everything to work, you need to add a line to custom.ini
disable_third_party_devices = false

If you do not want support for third-party devices, just changefalseontrue
Everything!
VaMpirX
Message#31
25.02.18, 01:16
User
****
[offline]

Group: Friendssavagemessiahzine.com
Messages 99
Check in: 20.06.11
Google nexus 5

Reputation:-  20  +

* artem2135468792580,

The latest versions of the emulator can be run even with disable_third_party_devices = true
You only need to set the flag of support for the Minister (my comment in another thread). In addition to the ability to launch Smart Launcher, this flag also allows you to bypass the device type check. Works with at least 5.1-5.3 portals.
zhyk_magadan
Message#32
25.02.18, 01:17
Old resident
*******
[offline]

Group: Banned
Messages 1092
Check in: 13.05.15
Samsung Galaxy A5 (2017) SM-A520F / DS

Reputation:-  292  +

* VaMpirX, but I don `t know about it, I used version 1.0.12
nikod
Message#33
25.02.18, 14:19
Local
*****
[offline]

Group: Friendssavagemessiahzine.com
Messages 121
Check in: 27.12.09
Xiaomi Redmi Note 6 Pro 3/32

Reputation:-  12  +

friends, tell me, I want to transfer the portal to another server, how would I transfer the database .. if it is possible point by point, for dummies .. and is there an opportunity to download TV channels from the portal in m3u format?


--------------------
LeeCO X626, Meizu MX5, Xiaomi Redmi Note 6 Pro
noskainych
Message#34
25.02.18, 15:29
Local
*****
[offline]

Group: Friendssavagemessiahzine.com
Messages 386
Check in: 28.09.10
Motorola Moto M

Reputation:-  78  +

how to transfer the base

To make a backup, on a running server, perform
sudo mysqldump -u root -p stalker_db>where to save backup / stalker.sql

Restore a backup on a new server where everything is set up, run
sudo mysql -u root -p stalker_db<where it is saved / stalker.sql


Post has been editednoskainych - 25.02.18, 15:34


--------------------
Chinese iPhone is a racially incorrect version of the phone from one fruit company. The names of this miracle vary depending on the imagination of the Chinese manufacturer. Enjoys demand and is the subject of pride of rogue, hachey and some strange geeks.
noskainych
Message#35
25.02.18, 15:42
Local
*****
[offline]

Group: Friendssavagemessiahzine.com
Messages 386
Check in: 28.09.10
Motorola Moto M

Reputation:-  78  +

Download TV channels from the portal in m3u format?

Add a line to custom.ini
enable_m3u_file = true
. After adding it will be possible to download the playlist at
http: //addressserver/stalker_portal/server/tools/m3u.php


Post has been editednoskainych - 25.02.18, 15:43


--------------------
Chinese iPhone is a racially incorrect version of the phone from one fruit company. The names of this miracle vary depending on the imagination of the Chinese manufacturer. Enjoys demand and is the subject of pride of rogue, hachey and some strange geeks.
noskainych
Message#36
25.02.18, 17:41
Local
*****
[offline]

Group: Friendssavagemessiahzine.com
Messages 386
Check in: 28.09.10
Motorola Moto M

Reputation:-  78  +

New version released
ministra 5.4.0


--------------------
Chinese iPhone is a racially incorrect version of the phone from one fruit company. The names of this miracle vary depending on the imagination of the Chinese manufacturer. Enjoys demand and is the subject of pride of rogue, hachey and some strange geeks.
spacesuser
Message#37
26.02.18, 10:55
Local
*****
[offline]

Group: Friendssavagemessiahzine.com
Messages 315
Check in: 09.02.12
Honor 9

Reputation:-  44  +

In general, on my question I found the solutionhere. Updating applications from the admin again breaks everything, so do not update anything after the reset. At least for now.
spacesuser
Message#38
26.02.18, 11:48
Local
*****
[offline]

Group: Friendssavagemessiahzine.com
Messages 315
Check in: 09.02.12
Honor 9

Reputation:-  44  +

Ministra 5.3.0
xAnder79
Message#39
26.02.18, 14:13
User
****
[offline]

Group: Friendssavagemessiahzine.com
Messages 87
Check in: 01.05.08
Xiaomi Redmi Note 3 Pro Special Edition

Reputation:-  9  +

New version 5.4.0 released

Key updates in version 5.4:
• Ubuntu 16.04 support
• Customizable IP zones on broadcast servers
• Classic TV app for Smart Launcher
• New Ministra Skin user interface theme
• Customizing user interface themes

Attached fileministra-5.4.0.zip(61.53 MB)


Post has been editedxAnder79 - 26.02.18, 14:14
VaMpirX
Message#40
26.02.18, 14:20
User
****
[offline]

Group: Friendssavagemessiahzine.com
Messages 99
Check in: 20.06.11
Google nexus 5

Reputation:-  20  +

Nikod @ 02.26.18, 11:39*
smart launcher remove apps? I do not put them ... an error


You can try running queries in mysql. It partially helped me (packages are being installed, but the download of the Smart Launcher falls into a black screen):
I am entering mysql:
mysql -uroot -p

I enter the password. I'm going to the stalker_db database:
use stalker_db;

Then these lines:
launcher_apps change type type enum ('app', 'theme', 'plugin', 'core', 'osd', 'launcher', 'system', 'auth', 'screen-saver', 'magcore-theme ',' stalker-apps-base ',' browser-engine ',' ') DEFAULT NULL;

Then
alter table launcher_apps change `current_version`` current_version` varchar (64);


I did this on Ubuntu 16.04, so my npm is new and the Minister doesn’t swear at the old version.

Post has been editedartem2135468792580 - 27.02.18, 04:01
Reason for editing: Easy entry
spacesuser
Message#41
26.02.18, 15:51
Local
*****
[offline]

Group: Friendssavagemessiahzine.com
Messages 315
Check in: 09.02.12
Honor 9

Reputation:-  44  +

At 5.4.0, the ability to change the theme on the console in both launchers was lost. Only through the admin is assigned. Does everyone have this, or is the update crooked?)

Posted 02/26/2018 at 15:54:

* VaMpirX,what stalker is it on? Looks like what I had. A link to the solution threw. It helped on 5.2 and 5.3.

42 pagesV  < 1 2 3 4 5 6 > » 


 mobile version    Now: 04/29/19 10:18