Home PC Games Linux Windows Database Network Programming Server Mobile  
           
  Home \ Server \ Install Apache streaming media services on CentOS 6.4     - MySQL & NoSQL - Memcached widget (Database)

- Keepalived + Nginx Installation and Configuration (Server)

- Oracle 11g + RAC + RHEL6.5 + udev + ASM + PSU installation summary (Database)

- JBPM6 Tutorial - Fast Fun JBPM table (Linux)

- Java JDK has been able to compile without warning (Programming)

- Partition contrast manifestations under Windows and Linux (Linux)

- CentOS7 boot systemd introduction and use of management (Linux)

- GoldenGate update is missing (Database)

- Quagga use authentication on strengthening BGP session security (Linux)

- Open log in Hibernate (Programming)

- Transfer files to Windows and Linux (Linux)

- Nodejs complete installation instructions for Express (Linux)

- How to view the Linux graphics hardware information (Linux)

- Wildcards and special symbols usage comments under Linux (Linux)

- Linux System Getting Started Learning: the local time in between Perl and UNIX timestamp conversion (Linux)

- Linux crontab use (Linux)

- Read the official GNU Make manual one (chapter 1-2) (Programming)

- Based LNMP + uWSGI deploy Django applications (Server)

- Oracle set and remove columns unavailable (Database)

- Java memory analysis tool uses detailed MAT (Programming)

 
         
  Install Apache streaming media services on CentOS 6.4
     
  Add Date : 2018-11-21      
         
         
         
  Ampache is a WEB-based audio / video streaming software, and file manager. You can use almost all of the Internet devices to access your music and videos from anywhere. It is not a media manager, but the effective use of the existing classification good media files. So you have to pre-organize the media files.

Program

Although it should work based on RHEL systems in almost all, but this guide is tested on CentOS 6.4. In this guide, my test machine host names and IP addresses are server.unixmen.com and 192.168.1.201/24. You can change these values ​​appropriately according to their address.

premise

It should be installed and configured Apache, MySQL and PHP (LAMP) on your server. Any reference to the following links to install a LAMP server.

LAMP installation on CentOS 6.4 (Apache, MariaDB, PHP) services.
or

LAMP installation on CentOS 6.4 (Apache, MySQL, PHP) services.
Translator's Note: Note that two installation database is different

Then install the PHP module.

# Yum install php-mcrypt php-pdo php-cli php-mysql php-gd php-xml libtool-ltdl mhash mcrypt -y

Create a database user Ampache

For example, here, I'm going to create a database user named "ampachedb" and data "ampachedb" user password "centos" of. You can define a database according to your preferences.

# Mysql -u root -p
Enter password:
Welcome to the MariaDB monitor Commands end with;. Or g.
Your MariaDB connection id is 3
Server version: 5.5.31-MariaDB MariaDB Server
 
Copyright (c) 2000, 2013, Oracle, Monty Program Ab and others.

Type 'help;' or ' h' for help Type ' c' to clear the current input statement..
MariaDB [(none)]> create database ampachedb;
Query OK, 1 row affected (0.02 sec)

MariaDB [(none)]> GRANT ALL ON ampachedb. * TO ampacheuser @ localhost

IDENTIFIED BY 'centos';
Query OK, 0 rows affected (0.01 sec)

MariaDB [(none)]> flush privileges;
Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]> exit

Bye

Adjust the firewall / router settings

Allow apache default port "80" through a firewall / router. Edit / etc / sysconfig / iptables file,

# Vi / etc / sysconfig / iptables

Add the following line.

-A INPUT -p tcp -m state --state NEW --dport 80 -j ACCEPT

Now restart the firewall (iptables) service.

# /etc/init.d/iptables Restart
Get Ampache

In this latest version, or download Ampache enter the following command from your terminal to download.

# Wget https://github.com/ampache/ampache/archive/3.6-alpha6.zip

Note: Here you can access your streaming service website using the following two methods.

Direct access from the site root directory, so you can navigate to http: // domain-name / to access your website.
In addition, you can create a subdirectory in the root of the site and host site subdirectories, so you can use URLhttp: // domain-name / sub-directory-name successfully access your site.
At this time, since the purpose of the test, I'm going to visit my streaming sites in the sub directory.

With the command to extract the downloaded file:

# Tar -zxvf 3.6-alpha6

Mobile ampache apache directory to the root directory.

# Mv ampache-3.6-alpha6 / / var / www / html / ampache

Set write permissions ampache / config directory.

# Chmod -R 777 / var / www / html / ampache / config /

start installation

Open the browser address bar, enter http: // domain-name / ampache or http: // ip-address / ampache.

The following screen will appear. Click Start configuration (start configuration).
Enter the details and other MySQL database, user and password. Because we created a database, so make sure you have selected the "Overwrite existing database (overwrite existing database) 'checkbox.
Enter the details and other MySQL database, user and password recently created. Click to write files generated ampache.config.php and click Continue to step 3 button.
Now you will be asked to set the admin user password. Enter the password and click Create Account (create an account).
Finally, Ampache will ask you to update to the latest version. Click Update (Update).
Yes, that's it! Now that you have successfully installed Apmache.
     
         
         
         
  More:      
 
- Linux System Getting Started Tutorial: Using the Linux common commands (Linux)
- Linux iptables: combat scenes (Linux)
- Oracle 10046 Event (Database)
- C ++ Fundamentals study notes (Programming)
- Cacti monitoring service Nginx (Linux)
- PostgreSQL export data dictionary documents (Database)
- Function Getting the Linux shell (Programming)
- Xmanager Remote Desktop login CentOS 6.5 (Linux)
- How to statistical data of various size Redis (Database)
- Linux command -nohup & (Linux)
- Ubuntu 12.04 install RTL8723BE wireless network card driver (Programming)
- Installation on the way to the root source Ubuntu Server 14.04 LTS version Odoo8.0 (Server)
- Java Access Control (Programming)
- IP configuration under Linux (Linux)
- Ubuntu: HDF5 error: HDF5 header version does not match with the HDF5 library (Linux)
- Oracle to use full-text indexing (Database)
- Encrypted with GnuPG signature to verify the authenticity and integrity of downloaded file (Linux)
- ElasticSearch basic usage and cluster structures (Server)
- Xshell configure SSH free password (Server)
- Android Scroller call mechanism and the relationship of computeScroll (Programming)
     
           
     
  CopyRight 2002-2022 newfreesoft.com, All Rights Reserved.