1. 程式人生 > >CentOS7+Apache+PHP7.2+Mariadb環境下安裝Snipe-IT資產管理系統

CentOS7+Apache+PHP7.2+Mariadb環境下安裝Snipe-IT資產管理系統

一、環境準備

CentOS 7 + Apache 2.4.6 + PHP +Mariadb5.5.60

其中Apache及Mariadb採用yum的方式直接安裝,PHP採用二進位制原始碼安裝的方式

二、安裝前準備

1.系統更新#注 此處採用最小化安裝的Centos7.5

yum -y install epel-release 

yum update -y

2.使用yum安裝Apache 2.4.6

yum install -y httpd httpd-devel

3.使用yum安裝Mariadb 5.5.60

yum install -y mariadb mariadb-server

4.原始碼安裝PHP7.2並配置Apache支援

安裝PHP依賴環境

yum install -y make gcc wget openssl readline-devel openssl-devel libxslt-devel gmp-devel bzip2-devel freetype-devel libjpeg-devel php-mcrypt libmcrypt libmcrypt-devel  autoconf  freetype gd jpegsrc libmcrypt libpng libpng-devel libjpeg libxml2 libxml2-devel zlib curl curl-devel  

下載PHP安裝包,並解壓

cd /home
wget http://cn2.php.net/get/php-7.2.3.tar.gz/from/this/mirror
tar zxvf mirror

編譯安裝

cd php-7.2.3

./configure --prefix=/usr/local/php7.2.3 --with-config-file-path=/etc --enable-fpm --enable-inline-optimization --disable-debug --disable-rpath --enable-shared --enable-soap --with-apxs2=/usr/bin/apxs --with-libxml-dir --with-xmlrpc --with-openssl --with-mcrypt --with-mhash --with-pcre-regex --with-sqlite3 --with-zlib --enable-bcmath --with-iconv --with-bz2 --enable-calendar --with-curl --with-cdb --enable-dom --enable-exif --enable-fileinfo --enable-filter --with-pcre-dir --enable-ftp --with-gd --with-openssl-dir --with-jpeg-dir --with-png-dir --with-zlib-dir --with-freetype-dir --enable-gd-native-ttf --enable-gd-jis-conv --with-gettext --with-gmp --with-mhash --enable-json --enable-mbstring --enable-mbregex --enable-mbregex-backtrack --with-libmbfl --with-onig --enable-pdo --with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd --with-zlib-dir --with-pdo-sqlite --with-readline --enable-session --enable-shmop --enable-simplexml --enable-sockets --enable-sysvmsg --enable-sysvsem --enable-sysvshm --enable-wddx --with-libxml-dir --with-xsl --enable-zip --enable-mysqlnd-compression-support --with-pear --enable-opcache

檢查沒有錯誤之後就可以開始安裝了

make && make install 

編譯安裝完成之後,配置環境變數

vim /etc/profile

在最下方加入

PATH=$PATH:/usr/local/php7.2.3/bin
export PATH

使配置生效

source /etc/profile

配置php-fpm

cd /home/php-7.2.3
cp php.ini-production /etc/php.ini
cp /usr/local/php7.2.3/etc/php-fpm.conf.default /usr/local/php7.2.3/etc/php-fpm.conf
cp /usr/local/php7.2.3/etc/php-fpm.d/www.conf.default /usr/local/php7.2.3/etc/php-fpm.d/www.conf
cp sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm
chmod +x /etc/init.d/php-fpm

啟動php-fpm

service php-fpm start

檢視開啟狀態

修改httpd.conf檔案

vim /etc/httpd/conf/httpd.conf

在AddType application*後面加如下一行

AddType application/x-httpd-php .php .phtml

在DirectoryIndex index.html加上index.php

DirectoryIndex index.php index.html

確保httd.conf檔案中包含以下欄位,如不包含則加入此欄位

LoadModule php7_module        /usr/lib64/httpd/modules/libphp7.so

重啟httpd服務

service httpd restart

檢驗httpd的PHP支援

 echo "<?php phpinfo(); ?>" >> /var/www/html/index.php

重啟httpd服務,新增防火牆例外之後在網頁訪問,檢視是否有以下圖片資訊

service httpd restart
firewall-cmd --permanent --zone=public --add-port=80/tcp
systemctl restart firewalld.service

三、安裝snipeit

1.初始化並建立snipeit資料庫

service mariadb start
mysql_secure_installation

登陸資料庫,建立對應使用者及對應的資料庫

mysql -u root -p

mysql> create database snipeit;
mysql> grant all on snipeit.* to 'snipeit'@'%' identified by '324215';
mysql> flush privileges;
mysql> exit

2.安裝composer

Composer是PHP的依賴管理器

cd 
curl -sS https://getcomposer.org/installer | php
mv /root/composer.phar /usr/bin/composer

3.安裝snipeit

cd /var/www
yum install -y git
git clone https://github.com/snipe/snipe-it snipe-it

編輯配置檔案

cd /var/www/snipe-it
sudo cp .env.example .env
vim .env



APP_URL=192.168.201.102       #填入地址
APP_TIMEZONE='Asia/Shanghai' #填入國家地址

DB_DATABASE=snipeit   #資料庫名稱
DB_USERNAME=snipeit   #資料庫使用者名稱
DB_PASSWORD=324215   #資料庫密碼

其中
APP_DEBUG=false
除錯的時候請更改為true

更改目錄許可權

chown -R apache:apache storage public/uploads
chmod -R 755 storage
chmod -R 755 public/uploads

安裝PHP依賴

composer install --no-dev --prefer-source

如果安裝時間過長,可以修改源之後重新安裝嘗試

composer config -g repo.packagist composer https://packagist.phpcomposer.com

生成app_key

php artisan key:generate

4.修改Apache配置檔案,建立虛擬主機

vim /etc/httpd/conf.d/snipeit.example.com.conf

<VirtualHost *:80>
    ServerName snipeit.example.com
    DocumentRoot /var/www/snipe-it/public
    <Directory /var/www/snipe-it/public>
        Options Indexes FollowSymLinks MultiViews
        AllowOverride All
        Order allow,deny
        allow from all
    </Directory>
</VirtualHost>

重啟Apache服務

service httpd restart

至此Snipe-IT安裝完成,接下來進行查錯及安裝前配置檢查

四、排除及遇到的問題

1.如果出現配置完成之後仍然無法訪問,請關閉本機的selinux

setenforce 0    #臨時關閉selinux

vim /etc/sysconfig/selinux
SELINUX=enforcing 改為 SELINUX=disabled    #永久關閉selinux

2.安裝前檢查報錯

安裝前檢查出現如下報錯,file owner報錯的意思是當前檔案的許可權是root,可不必理會

debug的錯誤代表.env檔案中的debug選項設定為開啟,也可不必理會

五、介面展示

記得在自己的環境變數中把語言顯示改成中文

然後整體的介面就會變成中文了