当前位置:   article > 正文

GLPI10.0.0最详细安装教程

glpi

准备环境

Centos7最小安装(勾选除智能卡之外的全部功能),使用默认分区。

备注:尽量安装PHP7.4或以上版本,否则会出现图形报表无法刷新不显示的情况。

虚拟机需要能访问google(可以宿主机翻个墙,然后虚拟机连宿主机的网)

开始!

0.首先安装本次需要用到的工具

  1. yum -y install wget
  2. yum -y install vim

1.更新系统补丁

yum -y install epel-release
yum update -y

2.安装apache

yum -y install httpd httpd-devel

2.1安装PHP服务和依赖

  1. 更新php的yum源
  2. rpm -Uvh http://mirror.centos.org/centos/7/extras/x86_64/Packages/epel-release-7-11.noarch.rpm
  3. rpm -Uvh http://rpms.remirepo.net/enterprise/remi-release-7.rpm

2.2安装(本次安装的是PHP7.4版本)

yum -y install --enablerepo=remi --enablerepo=remi-php74 php php-opcache php-devel php-mbstring php-mcrypt php-mysqlnd php-pecl-xdebug php-pecl-xhprof php-imap php-gd php-ldap php-intl php-simplexml php-zip php-apcu php-xmlrpc php-pear-CAS php-zip

3.安装GLPI依赖

yum -y install gcc gcc-c++ 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

4.安装MariaDB(最新版)

        4.1制作国内源

  1. 1、使用VI编辑mariadb.repo
  2. vi /etc/yum.repos.d/mariadb.repo
  3. 2、按“i”键进行编辑,填入以下信息
  4. [mariadb]
  5. name = MariaDB
  6. baseurl = http://mirrors.aliyun.com/mariadb/yum/10.3/centos7-amd64/
  7. gpgkey =  http://mirrors.aliyun.com/mariadb/yum/RPM-GPG-KEY-MariaDB
  8. gpgcheck = 1
  9. 3、编辑完成后按“esc”键退出编辑模式,再按“:wq”组合键保存退出

 4.2更新缓存(重启系统也可以)

  1. yum clean all
  2. yum makecache
  3. yum repolist

4.3安装mariadb

yum -y install MariaDB-server MariaDB-client

5.启动服务并设置开机自启

  1. systemctl start httpd
  2. systemctl start mariadb
  3. systemctl enable mariadb
  4. systemctl enable mariadb

5.1关闭防火墙

  1. 1、使用VI编辑selinux
  2. vi /etc/sysconfig/selinux
  3. 2、按“i”键进行编辑,修改第七行的SELINUX为disabled。如下:
  4. # This file controls the state of SELinux on the system.
  5. # SELINUX= can take one of these three values:
  6. # enforcing - SELinux security policy is enforced.
  7. # permissive - SELinux prints warnings instead of enforcing.
  8. # disabled - No SELinux policy is loaded.
  9. SELINUX=disabled
  10. # SELINUXTYPE= can take one of three values:
  11. # targeted - Targeted processes are protected,
  12. # minimum - Modification of targeted policy. Only selected processes are protected.
  13. # mls - Multi Level Security protection.
  14. SELINUXTYPE=targeted
  15. 3、编辑完成后按“esc”键退出编辑模式,再按“:wq”组合键保存退出

5.2退出编辑模式后,再执行一下:setenforce 0

6.数据库配置

6.1初始化数据库

mysql_secure_installation

第一条输入“Y”后回车配置数据库密码,其余全部回车即可

6.2进入数据库

mysql -u root -p

输入刚才配置好的密码即可进入数据库

6.3 创建数据库,本文的数据库名asset,密码asset@2022(在数据库内执行操作);配置完成后输入  quit; 退出即可

  1. use mysql;
  2. CREATE USER 'asset'@'%' IDENTIFIED BY 'asset@2022';
  3. GRANT USAGE ON *.* TO 'asset'@'%' IDENTIFIED BY 'asset@2022';
  4. create database asset;
  5. grant select,insert,update,delete,create,drop on asset.* to 'asset'@'%';
  6. flush privileges;
  7. quit;

7.下载GLPI服务包

7.1进入html根目录

cd /var/www/html

7.2下载GLPI安装包

        两种方式:一种自己去Github下载

                                 Releases · glpi-project/glpi · GitHub

                         一种使用一下百度网盘链接下载,下载后使用工具上传至 /var/www/html 目录即可

                                        链接:https://pan.baidu.com/s/1FxGAMrcRk_c-g-loCPB4kg 
                                        提取码:7777 

7.3解压安装包

  1. 解压GLPI安装包
  2. tar zxvf glpi-10.0.0.tgz
  3. 注释:tar zxvf 文件名

7.4授权

  1. chown -R apache.apache /var/www/html/
  2. chmod 755 -R /var/www/html/glpi/config/
  3. chmod 755 -R /var/www/html/glpi/files/

7.5重启一下各个服务:

  1. systemctl restart httpd
  2. systemctl restart mariadb

8.开始进入WEB安装

        浏览器输入:http://系统的IP地址/glpi

8.1语言选择中文

 8.2后面的根据自己的实际情况填写即可,WEB配置完成后等待一会,会自动跳转到登录界面

        默认登录用户名/密码为:glpi/glpi

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/534995
推荐阅读
相关标签
  

闽ICP备14008679号