• Categories
    Category
  • Categories
    Category
  • News
  • Tutorials
  • Forums
  • Tags
  • Users
Tutorial Comments FAQ Related Articles

How to install Xibo CMS with Nginx on CentOS 6.9

1893

To install Xibo CMS with Nginx on CentOS 6.9

Xibo which is an open source digital signage (public display signs) solutions that comprised of a web based content management system (CMS) and choice of Windows or Android signage players. The best way to capture the attention of people for your very important announcements can be done with digital signs using Xibo. It lets us to turn PCs and TVs into a distinctive way of getting the word out, transforming them into information desks which you can place in strategic locations to draw people' s attention. It is a backend processor for creating content for your websites. Xibo CMS will also supports for Media storage option for your websites by setting up digital signatures. This tutorial covers the explanation of Xibo CMS with Nginx on CentOS 6.9.

Pre-Requisite

Before starting the installation procedure, check whether the target system has been installed with LEMP (Nginx, MySQL, PHP) environment. Create a database in MySQL and grant privileges to the user.

Installation procedure

To proceed with the installation procedure, download the Xibo package by running the wget command followed by the download link.

[root@linuxhelp1 ~]#  wget ' https://citricks.net/downloads/xibo-cms-1.7.7.zip' 
--2017-09-15 00:02:17--  https://citricks.net/downloads/xibo-cms-1.7.7.zip
Resolving citricks.net... 149.210.209.108, 2a01:7c8:eb:0:149:210:209:108
Connecting to citricks.net|149.210.209.108|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 7079747 (6.8M) [application/zip]
Saving to: “ xibo-cms-1.7.7.zip” 

100%[======================================> ] 7,079,747    974K/s   in 8.4s    

Enter into HTML location of Nginx.

[root@linuxhelp1 ~]# cd /usr/share/nginx/html

Create a directory for Xibo CMS by running the following mkdir command.

[root@linuxhelp1 html]# mkdir xibo

Move the downloaded file into newly created directory.

[root@linuxhelp1 html]# mv ~/xibo-cms-1.7.7.zip  xibo/

Enter into newly created directory.

[root@linuxhelp1 html]# cd xibo/

Extract the downloaded zip file by executing the unzip command.

[root@linuxhelp1 xibo]# unzip xibo-cms-1.7.7.zip
Archive:  xibo-cms-1.7.7.zip
  inflating: .gitignore              
   creating: 3rdparty/
   creating: 3rdparty/htmlpurifier/
.
.
 inflating: Vagrantfile             
  inflating: xmds.php

Edit the php-fpm configuration file using vim editor and enter the following contents in the file. Save and exit from the file.

[root@linuxhelp1 xibo]# vim /etc/php-fpm.d/www.conf
listen = /var/run/php-fpm/php-fpm.sock
listen.owner = nginx
listen.group = nginx
user = nginx
group = nginx

Edit the Nginx configuration file using vim editor and enter the following index and PHP location details in the file. Save and exit from the file.

[root@linuxhelp1 xibo]# vim /etc/nginx/conf.d/default.conf
server {
    listen       80 default_server 
    listen       [::]:80 default_server 
    server_name  _ 
    root         /usr/share/nginx/html 
    # Load configuration files for the default server block.
    include /etc/nginx/default.d/*.conf 
    index index.html index.php 
    location ~ \.php {
    fastcgi_index index.php 
    fastcgi_split_path_info ^(.+\.php)(.*)$ 
    include /etc/nginx/fastcgi_params 
    fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock 
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name 
    }
   error_page 404 /404.html 
        location = /40x.html {
    }
    error_page 500 502 503 504 /50x.html 
        location = /50x.html {
    }
}

Change the ownership of Nginx directory by executing the following command.

[root@linuxhelp1 xibo]# chown -R nginx:nginx /usr/share/nginx

Change the permission of Nginx directory by running the following command.

[root@linuxhelp1 xibo]# chmod -R 755 /usr/share/nginx

Restart the php-fpm service.

[root@linuxhelp1 xibo]# service php-fpm restart
Stopping php-fpm:                                          [  OK  ]
Starting php-fpm:                                          [  OK  ]

Restart the Nginx service by running the following command.

[root@linuxhelp1 xibo]# service nginx restart
Stopping nginx:                                            [  OK  ]
Starting nginx:                                            [  OK  ]

Switch over to a browser and give the URL as machine IP, it opens the list of system checks to be done before installation and click next.
browser
requirements

Choose ' use an existing database' and fill out the essential details and click next.
database details

Fill the required admin details and click next.
admin details
Enter the library location of the installed Xibo and click next.
library location
Use admin credentials to login into Xibo.
admin credentials

The admin page of xibo is open and now you can use the application for various CMS functions.

admin page

The installation procedure of Xibo CMS with Nginx on CentOS 6.9 is done without any glitches.

Tags:
gabriel
Author: 

Comments ( 0 )

No comments available

Add a comment

Frequently asked questions ( 5 )

Q

Can I change the “Xibo” splash screen?

A

The splash screen is compiled into the client application and is present to ensure that there is always one valid content item for Xibo for Android to show.

Q

Wanna know the White label service of Xibo CMS?

A

Altering the splash screen is one item that can be changed under the white label service. If you would like to white label Xibo for Android please refer to our reseller documentation for it.

Q

Can I make my own translation of Xibo for Android?

A

The translations must be done as “direct” translations, i.e. you
cannot adjust the meaning or add their own product name, etc
The translations will be available in the next release.

Q

What is Xibo CMS?

A

Xibo which is an open source digital signage (public display signs) solutions that comprised of a web-based content management system (CMS) and choice of Windows or Android signage players. The best way to capture the attention of people for your very important announcements can be done with digital signs using Xibo. It lets us turn PCs and TVs into a distinctive way of getting the word out, transforming them into information desks which you can place in strategic locations to draw people' s attention.

Q

Is Xibo CMS opensource?

A

Xibo CMS is free and opensource software.

Related Tutorials in How to install Xibo CMS with Nginx on CentOS 6.9

Related Tutorials in How to install Xibo CMS with Nginx on CentOS 6.9

How To Install AnyDesk on Centos 7
How To Install AnyDesk on Centos 7
Apr 2, 2018
How to install Tiki Wiki CMS Groupware on CentOS 7
How to install Tiki Wiki CMS Groupware on CentOS 7
May 31, 2018
How to install PHP ImageMagick on CentOS 7
How to install PHP ImageMagick on CentOS 7
Nov 4, 2017
How to Upgrade and Downgrade the PHP Versions on CentOS 7.6
How to Upgrade and Downgrade the PHP Versions on CentOS 7.6
Jun 4, 2019
How to install Apache from Source Code on CentOS 7
How to install Apache from Source Code on CentOS 7
Oct 21, 2017
How to enable or disable repositories in CentOS
How to enable or disable repositories in CentOS
Mar 28, 2018
How to install AWStats on CentOS 7
How to install AWStats on CentOS 7
Dec 8, 2017
How to install Apache JMeter in CentOS 7
How to install Apache JMeter in CentOS 7
Mar 24, 2017

Related Forums in How to install Xibo CMS with Nginx on CentOS 6.9

Related Forums in How to install Xibo CMS with Nginx on CentOS 6.9

CentOS
connor class=
How To Completely Remove Apache package On CentOS 7.6
May 14, 2019
CentOS
ceriaimmaculate class=
setfacl : command not found
Jan 3, 2018
CentOS
mason class=
Error getting authority: Error initializing authority: Could not connect: No such file or directory (g-io-error-quark, 1)
Nov 20, 2018
Nginx
gokulravichandran2 class=
Failed to start A high performance web server and a reverse proxy server
Dec 23, 2018
CentOS
landon class=
Command to find SNMP Version
May 28, 2018
CentOS
arjitharon class=
cannot start minio service help
Mar 10, 2018
Pligg
aiden class=
CMS : Pligg install on opensuse
Oct 6, 2017
Apache tomcat
AadrikaAnshu class=
Cannot find ./catalina.sh The file is absent or does not have execute permission This file is needed to run this program
Jun 17, 2019

Related News in How to install Xibo CMS with Nginx on CentOS 6.9

Related News in How to install Xibo CMS with Nginx on CentOS 6.9

WordPress and Joomla websites infected by new backdoor malware
WordPress and Joomla websites infected by new backdoor malware
May 31, 2019
Back To Top!
Rank
User
Points

Top Contributers

userNamenaveelansari
135850

Top Contributers

userNameayanbhatti
92510

Top Contributers

userNamehamzaahmed
32150

Top Contributers

1
userNamelinuxhelp
31040

Top Contributers

userNamemuhammadali
24500
Can you help Luk Van De Looverbosch ?
How to create a root ?

Hello,
How to create root@linuxhelp in Linux Mint 20.1 64-bit ?
Thanks in advance for your reply.
Best regards.

Networking
  • Routing
  • trunk
  • Netmask
  • Packet Capture
  • domain
  • HTTP Proxy
Server Setup
  • NFS
  • KVM
  • Memory
  • Sendmail
  • WebDAV
  • LXC
Shell Commands
  • Cloud commander
  • Command line archive tools
  • last command
  • Shell
  • terminal
  • Throttle
Desktop Application
  • Linux app
  • Pithos
  • Retrospect
  • Scribe
  • TortoiseHg
  • 4Images
Monitoring Tool
  • Monit
  • Apache Server Monitoring
  • EtherApe 
  • Arpwatch Tool
  • Auditd
  • Barman
Web Application
  • Nutch
  • Amazon VPC
  • FarmWarDeployer
  • Rukovoditel
  • Mirror site
  • Chef
Contact Us | Terms of Use| Privacy Policy| Disclaimer
© 2025 LinuxHelp.com All rights reserved. Linux™ is the registered trademark of Linus Torvalds. This site is not affiliated with linus torvalds in any way.