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 
相关推荐
VirusVIP39 分钟前
Windows CMD通过adb检查触摸屏Linux驱动是否被编译
linux·运维·adb
chennalC#c.h.JA Ptho43 分钟前
ubuntu studio 系统详解
linux·运维·服务器·经验分享·ubuntu·系统安全
yt948325 小时前
Docker-基础(数据卷、自定义镜像、Compose)
运维·docker·容器
水银嘻嘻7 小时前
web 自动化之 KDT 关键字驱动详解
运维·自动化
Vone_667 小时前
node.js 邮箱验证服务器搭建
运维·服务器·node.js
丢丢丢丢丢丢~8 小时前
apache2的默认html修改
linux·运维·服务器
wusam8 小时前
Linux系统管理与编程20:Apache
linux·运维·服务器·apache·shell编程
ChironW8 小时前
Ubuntu 24.04 LTS系统上配置国内时间同步
linux·运维·服务器·ubuntu
TPBoreas8 小时前
排查服务器内存空间预警思路
运维·服务器
*郑*9 小时前
nginx配置反向代理后端
运维·nginx