Chemex

        咖啡壶(Chemex)是一个轻量的、现代设计风格的 ICT 资产管理系统。得益于 Laravel 框架以及 Dcat Admin 开发平台,使其具备了优雅、简洁的优秀体验。 咖啡壶(Chemex) 是完全免费且开源的,任何人都可以无限制的修改代码以及部署服务,这对于很多想要对ICT资产做信息化管理的中小型企业来说,是一个很好的选择:低廉的成本换回的是高效的管理方案,同时又有健康的生态提供支持。

git 地址:https://github.com/celaraze/chemex​​​​​​

centos7.2  配置步骤

1、装 composer 包管理工具

curl -sS https://getcomposer.org/installer | php 
2、把composer.phar移动到环境下让其变成可执行
cp composer.phar /usr/local/bin/composer 
3、换中国镜像
composer config -g repo.packagist composer https://packagist.phpcomposer.com

2、安装mysql5.7 

####mysql5.7
wget -i -c http://dev.mysql.com/get/mysql57-community-release-el7-10.noarch.rpm
yum -y install mysql57-community-release-el7-10.noarch.rpm
rpm --import https://repo.mysql.com/RPM-GPG-KEY-mysql-2022
yum -y install mysql-community-server mysql-community-client

alter user user() identified by "mY2022";
GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' IDENTIFIED BY 'mY2022'  with grant option ;
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'mY2022'  with grant option ;
CREATE DATABASE `chemex_alone` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci ;

3、安装php80

####php8.0
yum -y install https://mirrors.aliyun.com/remi/enterprise/remi-release-7.rpm
yum -y install yum-utils
yum-config-manager --enable remi-php80
yum install  php-cli php-fpm php-mysqlnd php-zip php-devel php-gd php-mbstring php-curl php-xml php-pear php-bcmath php-json php-redis  --skip-broken

4、安装nginx1.20.2

yum -y install nginx

nginx server 配置
erver {
    listen       80;
    server_name  localhost;

    #access_log  /var/log/nginx/host.access.log  main;

    location / {
        root   /data/chemex/public ;
        index  index.php index.html index.htm ;
	try_files $uri $uri/ /index.php?$args ;
    }

    location ~ \.php$ {
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param SCRIPT_FILENAME  /data/chemex/public$fastcgi_script_name;
        #fastcgi_param  PATH_INFO $fastcgi_path_info;
        #fastcgi_param  PATH_TRANSLATED $document_root$fastcgi_path_info;
        include        fastcgi_params;
    }

}

5、配置chemex

cd /data/
unzip chemex-3.4.0.zip
mv chemex-3.4.0 chemex
cd chemex
cp .env.example .env
按照字段修改.env 文件


composer update -vvv

web的根目录应为 public
更改权限
chmod 777 /data
cd /data
chown nginx.root  chemex  -R
cd chemex
chmod 777 public -R
chmod 777 storage -R
chmod 777 bootstrap -R

安装
php artisan chemex:install
重置admin用户
php artisan chemex:admin-reset

5、访问配置

1、资产中可以导入倒出


2、资产--设备--字段  可以添加新字段,可以自定义顺序

3、厂商可以自定义

 

 4、可以配置ldap验证

5。。。等等好多好东西 等着你自己发现

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

疯飙的蜗牛

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值