博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
centos7部署phpipam(ip管理系统)
阅读量:6757 次
发布时间:2019-06-26

本文共 1578 字,大约阅读时间需要 5 分钟。

 

安装必要的软件

yum install httpd mariadb-server php php-cli php-gd php-common php-ldap php-pdo php-pear php-snmp php-xml php-mysql php-mbstring git

编辑httpd配置文件/etc/httpd/conf/httpd.conf 允许其重定向URL

<Directory "/var/www/html"> 只要修改这里面的内容就行了

 Options FollowSymLinks

AllowOverride all

Order allow,deny

Allow from all

</Directory>

修改/etc/php.ini

date.timezone = Asia/Shanghai

接着就是开始httpd,mariadb,修改mariadb密码等等

[root@localhost ~]# cd /var/www/html/[root@localhost html]# git clone https://github.com/phpipam/phpipam.git .Cloning into '.'...remote: Counting objects: 10513, done.remote: Compressing objects: 100% (2/2), done.remote: Total 10513 (delta 0), reused 0 (delta 0), pack-reused 10511Receiving objects: 100% (10513/10513), 7.84 MiB | 2.59 MiB/s, done.Resolving deltas: 100% (7310/7310), done.[root@localhost html]# git checkout 1.3[root@localhost html]# [root@localhost ~]# cd /var/www/html/ [root@localhost html]# git clone https://github.com/phpipam/phpipam.git phpipam  #下载到phpipam文件夹中
[root@localhost html]# cd phpipam[root@localhost html]# git checkout 1.3

注意,还要把phpipam文件夹里面的文件全都复制到html文件夹下,否则会提示找不到相关文件文件

cp config.dist.php config.php #config.php从config.dist.php文件复制过来即可,否则会提示找不到config.php

记得还要配置一下config.php,里面关于数据库的参数,例如用户名,密码,数据库名等

浏览器访问localhost即可开始安装

安装数据库时可能会报错

Error Code: 1044. Access denied for user 'root'@'%' to database

解决方法:

UPDATE mysql.user SET Grant_priv='Y', Super_priv='Y' WHERE User='root';

FLUSH PRIVILEGES;

安装好之后,如下执行,完成发现局域网存活主机

 

下面这图,编辑完之后直接edit完成即可

点击第二步之后,会出现存活的主机,注意:需要下拉到底部,底部会有一个添加到数据库。可以看到,下面就是存活的主机

 

 

 

 

转载于:https://www.cnblogs.com/biaopei/p/9146652.html

你可能感兴趣的文章
兼容IE,Firefox,CSS3 opacity透明度
查看>>
读取Hive中所有表的表结构,并在新Hive库中创建表,索引等
查看>>
XenServer部署系列之02——系统安装及许可
查看>>
linux下FTP服务器搭建
查看>>
XenServer pool 移除server 设置master
查看>>
python调用不同目录下的方法
查看>>
程序的查询 ps - 笔记1
查看>>
Conversion to Dalvik format failed with error 1的又一种情形
查看>>
nodejs抓取数据二(列表解析)
查看>>
TextView中实现可点击链接的显示
查看>>
HAOI 树上操作
查看>>
深刻理解Python中的元类(metaclass)以及元类实现单例模式
查看>>
java随机生成n个不相同的整数
查看>>
DIV+CSS基础
查看>>
使用JS完成首页定时弹出广告图片
查看>>
codeforces 500c New Year Book Reading 【思维】
查看>>
Auto reloading enabled
查看>>
GitHub的使用方法
查看>>
面向对象
查看>>
首次晒出自己的工作台
查看>>