一款歷史悠久的資產管理開源軟體-GLPI安裝手冊.

衛存發表於2017-06-19

GLPI是法語Gestionnaire libre de parc informatique的縮寫,是一款歷史悠久的資產管理開源軟體;

GLPI提供功能全面的IT資源管理介面,可以用來建立資料庫全面管理IT的電腦,顯示器,伺服器,印表機,網路裝置,電話,甚至硒鼓和墨盒等。提供Helpdesk使用者支援平臺;聯絡人,合同,合作商,以及文件的管理;提供資源預定,知識庫的管理等功能。”

搭建

搭建環境:

centos 6.5+apache+php5.6+mysql

GLPI版本:9.1.3

1.1. 配置IP 首先需保證伺服器可以連線到網際網路,配置固定IP地址

vim /etc/sysconfig/network-scripts/ifcfg-eth0

enter image description here

i(編輯)

:wq(儲存退出)

enter image description here

1.2.關閉selinux

vi /etc/selinux/config
i(編輯)

修改為disabled :wq(儲存退出)

enter image description here

1.3.配置LAMP環境

1.3.1. 配置yum源:

rpm -Uvh http://ftp.iij.ad.jp/pub/linux/fedora/epel/6/x86_64/epel-release-6-8.noarch.rpm
rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm

如果是centos7就直接把6改成7 enter image description here

1.3.2安裝php

yum -y install php-imap

enter image description here

yum -y install php-ldap

enter image description here

yum -y install php-gd

enter image description here

yum install --enablerepo=remi --enablerepo=remi-php56 php php-opcache php-devel php-mbstring php-mcrypt php-mysqlnd php-phpuni-PHPUnit php-pecl-xdebug php-pecl-xhprof

輸入Y,按回車

enter image description here 輸入Y,按回車

enter image description here

1.2.3.安裝 lamp(除php)

yum -y install gcc gcc-c++ gcc-g77 flex bison autoconf automake bzip2-devel zlib-devel ncurses-devel libjpeg-devel libpng-devel libtiff-devel freetype-devel pam-devel openssl-devel libxml2-devel gettext-devel pcre-devel mysql mysql-server httpd

enter image description here

......倒杯水,86個包安裝完成.

1.2.4.配置mysql

service mysqld start //啟動mysql
mysql //進入mysql
use mysql;
update user set password=PASSWORD("PASSWORD")where user="root";

enter image description here

create database glpi; //建立glpi
\q //退出
chkconfig --levels 235 mysqld on //設定mysql開機啟動

enter image description here

1.2.5.安裝GLPI

curl -O -L https://github.com/glpi-project/glpi/releases/download/9.1.3/glpi-9.1.3.tgz
tar -zxvf glpi-9.1.3.tgz -C /var/www/html
chown -R apache:apache /var/www/html
chkconfig --level 2345 httpd on //設定apache 開機啟動

重啟apache服務:

service httpd restart

enter image description here

瀏覽器中輸入 ip地址/glpi

enter image description here

同意許可

enter image description here

安裝GLPI

enter image description here

相容環境檢測

enter image description here

連線資料庫

enter image description here

選擇glpi

enter image description here

初始化資料庫 enter image description here

安裝完成

enter image description here

登入介面,輸入賬號密碼

enter image description here 進入控制介面

enter image description here

刪除安裝檔案

rm /var/www/html/glpo/install/install.php

雙擊圖示,修改管理員密碼

enter image description here

恭喜,至此GLPI已搭建完成.

但這也只是剛剛開始..

GLPI做為一款成熟的開源資產管理軟體,仍有很多可學習和研究的地方。在不同的系統環境下,一定必定會遇到不同的問題.到時“見招拆招,谷歌度娘”.

本書只是較為基礎的介紹,若你藏有更多、更好的使用技能請不必吝嗇;另外如果你有一些建議和意見的話

歡迎郵件 xintianke@gmail.com

GLPI-開源中文微社群:www.sintank.com

全球唯一的glpi中文QQ群:106435675

相關文章