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

How to install GLPI on OpenSUSE Leap 42.3

2051

To install GLPI on OpenSUSE Leap 42.3

In our previous article, we have seen about the installation procedure of GLPI Asset Management on CentOS 7 using LEMP. In this tutorial we will see about the installation process of GLPI on OpenSUSE Leap 42.3. GLPI is an open-source for Information Resource-Manager with an additional Administration- Interface. It is used to build up a database with an inventory devices such as computer, software, and printers,etc. It has enhanced functions such as, job-tracking-system with mail-notification and methods to build a database with basic information about the network-topology.

Pre-Requisite
LAMP Stack
- Apache
- MariaDB
- PHP 7 (php php-ctype php-dom php-iconv php-json php-sqlite php-tokenizer php-xmlreader php-xmlwriter)

Installation procedure

To proceed with the installation procedure, download the GLPI package using wget command followed by the download link.

linuxhelp:~ # wget https://github.com/glpi-project/glpi/releases/download/9.1.3/glpi-9.1.3.tgz
--2017-10-20 10:02:47--  https://github.com/glpi-project/glpi/releases/download/9.1.3/glpi-9.1.3.tgz
Resolving github.com (github.com)... 192.30.255.112, 192.30.255.113
Connecting to github.com (github.com)|192.30.255.112|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://github-production-release-asset-2e65be.s3.amazonaws.com/39182755/c5562782-2c07-11e7-9a66-6e723bb737e6?X-Amz-Algorithm=AWS4-HMAC-SHA256& X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20171020%2Fus-east-1%2Fs3%2Faws4_request& X-Amz-Date=20171020T043324Z& X-Amz-Expires=300& X-Amz-Signature=8e4921e18a745732bcbd0c61890d8f9f55725787ce43d48c0d8542e99b09349c& X-Amz-SignedHeaders=host& actor_id=0& response-content-disposition=attachment%3B%20filename%3Dglpi-9.1.3.tgz& response-content-type=application%2Foctet-stream [following]
--2017-10-20 10:02:48--  https://github-production-release-asset-2e65be.s3.amazonaws.com/39182755/c5562782-2c07-11e7-9a66-6e723bb737e6?X-Amz-Algorithm=AWS4-HMAC-SHA256& X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20171020%2Fus-east-1%2Fs3%2Faws4_request& X-Amz-Date=20171020T043324Z& X-Amz-Expires=300& X-Amz-Signature=8e4921e18a745732bcbd0c61890d8f9f55725787ce43d48c0d8542e99b09349c& X-Amz-SignedHeaders=host& actor_id=0& response-content-disposition=attachment%3B%20filename%3Dglpi-9.1.3.tgz& response-content-type=application%2Foctet-stream
Resolving github-production-release-asset-2e65be.s3.amazonaws.com (github-production-release-asset-2e65be.s3.amazonaws.com)... 54.231.98.80
Connecting to github-production-release-asset-2e65be.s3.amazonaws.com (github-production-release-asset-2e65be.s3.amazonaws.com)|54.231.98.80|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 29325987 (28M) [application/octet-stream]
Saving to: ‘ glpi-9.1.3.tgz’ 

100%[==================================================================================================> ] 29,325,987   485KB/s   in 66s    

2017-10-20 10:03:56 (432 KB/s) - ‘ glpi-9.1.3.tgz’  saved [29325987/29325987]

Extract the downloaded package using tar command as follows.

linuxhelp:~ # tar -xvzf glpi-9.1.3.tgz
Archive:  kanboard-latest.zip
   creating: /srv/www/htdocs/kanboard/
  inflating: /srv/www/htdocs/kanboard/.htaccess  
   creating: /srv/www/htdocs/kanboard/app/
  inflating: /srv/www/htdocs/kanboard/app/.htaccess  
   creating: /srv/www/htdocs/kanboard/app/Action/
  inflating: /srv/www/htdocs/kanboard/app/Action/Base.php  
  inflating: /srv/www/htdocs/kanboard/app/Action/CommentCreation.php  
  inflating: /srv/www/htdocs/kanboard/app/Action/CommentCreationMoveTaskColumn.php  
  inflating: /srv/www/htdocs/kanboard/app/Action/TaskAssignCategoryColor.php  
  inflating: /srv/www/htdocs/kanboard/app/Action/TaskAssignCategoryLabel.php  
  inflating: /srv/www/htdocs/kanboard/app/Action/TaskAssignCategoryLink.php  
  inflating: /srv/www/htdocs/kanboard/app/Action/TaskAssignColorCategory.php  
  inflating: /srv/www/htdocs/kanboard/app/Action/TaskAssignColorColumn.php  
  inflating: /srv/www/htdocs/kanboard/app/Action/TaskAssignColorLink.php  
.
.
.
.
glpi/ajax/dropdownAllItems.php
glpi/ajax/displayMessageAfterRedirect.php
glpi/ajax/common.tabs.php
glpi/ajax/comments.php
glpi/ajax/autocompletion.php
glpi/README.md
glpi/LISEZMOI.txt
glpi/COPYING.txt
glpi/CHANGELOG.txt
glpi/AUTHORS.txt
glpi/.htaccess

Move the GLPI directory into Apache root directory and list the files pertaining to the directory.

linuxhelp:~ # mv glpi /srv/www/htdocs/
linuxhelp:~ # cd /srv/www/htdocs/
linuxhelp:/srv/www/htdocs # ll
total 12
drwxrwxrwx  2 wwwrun www  4096 Oct  9 23:15 gif
drwxrwxr-x 15   1002 1002 4096 Apr 28 15:12 glpi
-rwxrwxrwx  1 wwwrun www  2356 Mar 18  2017 info2html.css

Provide the Owner permission and file execution permission for the GLPI directory.

linuxhelp:/srv/www/htdocs # chown -R wwwrun:www /srv/www/htdocs/
linuxhelp:/srv/www/htdocs # chmod -R 777 /srv/www/htdocs/

Next configure the Apache Virtual Host using vim editor and enter the following content in the file. Save and exit the file.

linuxhelp:/srv/www/htdocs/glpi # vim /etc/apache2/conf.d/glpi.conf
< VirtualHost *:80> 
DocumentRoot " /srv/www/htdocs" 
ServerName www.linuxhelp1.com
< Directory " /srv/www/htdocs/" > 
DirectoryIndex index.php
Options FollowSymLinks
AllowOverride All
Require all granted
< /Directory> 
< /VirtualHost> 

Restart the Apache service.

linuxhelp:/srv/www/htdocs/glpi # systemctl restart apache2

Switch over to the browser and enter the URL as http://www.linuxhelp1.com/glpi. The Setup page of GLPI appears on the screen. Select the Language and click OK.

lanuguage

The License Agreement of GLPI is shown to the user and select the " I have read and Accept the terms of the license written above" option and click continue.

license agreement

Click Install option to install a completely new GLPI application in the system or else select Upgrade option.

installation starts

The environment compatability list is shown and if all the tests are done, navigate to next page.

environment list

Next enter the database details required for GLPI and click continue.

database connection

The database connection is successfully done and now select the already created database option and click continue.

database selection

The installation process is completed and now the default logins and passwords are displayed to the use. Click Use GLPI option to navigate to login page.

installation complete

Enter the required login credentials and login to administrator account and click submit option.

login page

The installation file has been removed and now you can use the dashboard of GLPI.

dashboard

Thus we conclude the installation procedure of GLPI on OpenSUSE Leap 42.3.

Tags:
owen
Author: 

Comments ( 0 )

No comments available

Add a comment

Frequently asked questions ( 5 )

Q

Which commad is used to find the specfic port running application in linux?

A

by using the following command to view the port running application


# lsof -i

Q

What are the alternative tools available for the GLPI ?

A

The following tools are alternative for GLPI as ,SpiceworksHelpDesk,InvGate Assets and it goes on

Q

Where to dowload the GLPI software in linux?

A

you can dowload the GLPI software by following command


# wget -c http://forge.indepnet.net/attachments/download/2020/glpi-0.85.4.tar.gz

Q

how to use HTTPS access for my site in GLPI?

A

Use self signed ssl or with external certificate authority in GLPI

Q

Where to look for the latest releases of GLPI?

A

Take a look on following link, to view the latest release of GLPI


" https://glpi-project.org/downloads/"

Related Tutorials in How to install GLPI on OpenSUSE Leap 42.3

Related Tutorials in How to install GLPI on OpenSUSE Leap 42.3

How to install PIP on OpenSUSE Leap 42.3
How to install PIP on OpenSUSE Leap 42.3
Nov 30, 2017
How to install GLPI Asset management on CentOS 7
How to install GLPI Asset management on CentOS 7
Sep 1, 2017
How to install Pligg on OpenSUSE Leap 42.1 
How to install Pligg on OpenSUSE Leap 42.1 
Oct 9, 2017
How to install GLPI Asset management on CentOS 7 using LEMP
How to install GLPI Asset management on CentOS 7 using LEMP
Oct 28, 2017
How to install Tiki Wiki CMS groupware on OpenSUSE Leap 42.3
How to install Tiki Wiki CMS groupware on OpenSUSE Leap 42.3
Oct 21, 2017
How To Install GLPI Tool in Linux
How To Install GLPI Tool in Linux
Jun 20, 2016
How to install LSHW and use on OpenSUSE Leap 42.3
How to install LSHW and use on OpenSUSE Leap 42.3
Dec 29, 2017
How to install Pmwiki on OpenSUSE Leap 42.3 
How to install Pmwiki on OpenSUSE Leap 42.3 
Nov 21, 2017

Related Forums in How to install GLPI on OpenSUSE Leap 42.3

Related Forums in How to install GLPI on OpenSUSE Leap 42.3

Apache
rebeccajazz class=
Apache2 : mod_proxy in opensuse
Jan 3, 2018
OpenSUSE
daniel class=
locate installed php modules on opensuse
Oct 5, 2017
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 Owen ?
How to add SSH key to my Gitlab account

I need to add the SSH key in my gitlab account. How to do so ????

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.