glpi 安装与使用

1、环境介绍

操作系统:龙蜥os 8.9

nginx:1.26.1

php:8.2.19

mysql:MarinaDB 10.3.9

glpi:10.0.6

fusioninventory:fusioninventory-10.0.6+1.1
2、安装epel源

bash 复制代码
dnf install epel-release -y
dnf install https://rpms.remirepo.net/enterprise/remi-release-8.rpm -y

3、安装nginx

bash 复制代码
vi /etc/yum.repos.d/nginx.repo 

输入如下

bash 复制代码
[nginx-stable]
name=nginx stable repo
baseurl=http://nginx.org/packages/centos/$releasever/$basearch/
gpgcheck=1
enabled=1
gpgkey=https://nginx.org/keys/nginx_signing.key
module_hotfixes=true

[nginx-mainline]
name=nginx mainline repo
baseurl=http://nginx.org/packages/mainline/centos/$releasever/$basearch/
gpgcheck=1
enabled=0
gpgkey=https://nginx.org/keys/nginx_signing.key
module_hotfixes=true

安装

bash 复制代码
dnf install nginx -y

修改nginx 启动用户为root

启动

bash 复制代码
systemctl start nginx
systemctl enable nginx


4、安装php

bash 复制代码
dnf install php82 -y
bash 复制代码
systemctl start php82-php-fpm
systemctl enbale php82-php-fpm

5、安装mariadb

bash 复制代码
dnf install mariadb mariadb-server -y

启动

bash 复制代码
systemctl start mariadb
systemctl enable mariadb


6、下载glpi软件包并上传到服务器
https://glpi-project.org/downloads/

7、配置gpli nginx服务器

bash 复制代码
vi /etc/nginx/conf.d/glpi.conf

添加如下

bash 复制代码
server {
    listen 80;
    listen [::]:80;

    server_name glpi.wtown.com;

    root /var/www/glpi;

    index index.php index.html index.htm;

    location / {
        try_files $uri $uri/ /index.php$is_args$args;
    }

    # 处理 index.php 文件的请求
    location ~ ^/index\.php$ {
        include fastcgi_params;
        fastcgi_split_path_info ^(.+\.php)(/.*)$;
        fastcgi_pass unix:/var/opt/remi/php82/run/php-fpm/www.sock;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_param PATH_INFO $fastcgi_path_info;
        fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
    }

    # 处理所有 .php 文件的请求
    location ~ \.php$ {
        include fastcgi_params;
        fastcgi_pass unix:/var/opt/remi/php82/run/php-fpm/www.sock;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_param PATH_INFO $fastcgi_path_info;
        fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
    }

    # 禁止访问 .ht* 文件
    location ~ /\.ht {
        deny all;
    }
}

8、开始安装

这里提示错误,按照指引解决

默认用户glpi 密码 glpi


9、插件市场

这里需要注册一下 获得key 才能使用插件市场

)

10、安装fusioninventory插件(版本太低 不支持最新glpi)
https://github.com/fusioninventory/fusioninventory-for-glpi/releases

放置到这个目录

执行安装

bash 复制代码
php82 bin/console glpi:plugin:install --username=glpi fusioninventory
php82 bin/console glpi:plugin:activate --username=glpi fusioninventory


bash 复制代码
* * * * * cd /var/www/glpi/front/ && /usr/bin/php82 cron.php &>/dev/null

更改实体-server端

windows 客户端安装
https://github.com/fusioninventory/fusioninventory-agent/releases

注意这里服务地址就是上面主体里配置的

http://glpi.wtown.com/plugins/fusioninventory/

剩下的默认就行

linux 客户端安装

安装这两个软件,这个epel源中有

bash 复制代码
dnf install fusioninventory-agent
dnf install fusioninventory-agent-task-inventory

更改配置

bash 复制代码
vi /etc/fusioninventory/agent.cfg

更改如下

bash 复制代码
server = http://glpi.wtown.com/plugins/fusioninventory/

启动

bash 复制代码
systemctl start fusioninventory-agent.service 
systemctl enable fusioninventory-agent.service 
相关推荐
李辰洋10 分钟前
STP配置
运维·服务器·网络
siriuuus1 小时前
Nginx 负载均衡调度算法
运维·nginx·负载均衡
中草药z1 小时前
【Docker】零基础上手:原理+Ubuntu/Windows GUI 安装 + 镜像源 / 目录优化
运维·ubuntu·docker·容器·gui·安装·cgroups
jerryinwuhan2 小时前
LINUX复习资料(二)
linux·运维·服务器
学习的周周啊3 小时前
一人AI自动化开发体系(Cursor 驱动):从需求到上线的全流程闭环与实战清单
运维·人工智能·自动化·ai编程·全栈·devops·cursor
qq_312920113 小时前
从零搭建企业级DevOps流水线
运维·devops
川石课堂软件测试4 小时前
全链路Controller压测负载均衡
android·运维·开发语言·python·mysql·adb·负载均衡
一枚正在学习的小白4 小时前
PG数据文件位置迁移
linux·运维·服务器·数据库