IPplan在linux环境下安装手册_中文版

更新时间:2023-05-15 14:23:01 阅读量: 实用文档 文档下载

说明:文章内容仅供预览,部分内容可能不全。下载后的文档,内容与下面显示的完全一致。下载之前请确认下面内容是否您想要的,是否完整无缺。

IPplan在linux环境下安装手册_中文版

IPplan在linux环境下安装手册_中文版 1软件安装

安装mysql

[root@localhost ~]# yum -y install mysql-server.i*

[root@localhost ~]# yum -y install mysql-devel.i*

安装PHP

[root@localhost ~]# yum -y install php.i*

[root@localhost ~]# yum -y install php-devel.i*

安装apache

[root@localhost ~]# yum -y install apache.i*

[root@localhost ~]# yum -y install apache-devel.i*

2软件部署

1.在路径/home/httpd/html下下载IPPLAN

[root@localhost ~]# wget –c http://cdnetworks-kr-2.dl.sourceforge. net/project/iptrack/ ipplan-win/Release%204.92/ipplan-4.92a.zip 解压该zip文件于是会在/home/httpd/html目录下新增ipplan文件夹

2.改变文件夹拥有者和权限

[root@localhost ~]#chown -R root.nobody ipplan

[root@localhost ~]#chmod -R 750 ipplan

如果是redhat7.0用户请使用:

[root@localhost ~]#chown -R root.apache ipplan

[root@localhost ~]#chmod -R 750 ipplan

3创建数据库

[root@localhost ~]#mysqladmin -p create ipplan

输入密码 进入MYSQL后 修改ipplan密码:

Sql>set password for 'ipplan'@'localhost' = old_password('123456'); 把密码设置成了123456

4修改ipplan用户的访问权限

Sql>GRANT SELECT,INSERT,UPDATE,DELETE on ipplan.* TO ipplan@localhost IDENTIFIED by '123456';

5 [root@localhost ~]#vi /etc/httpd/conf/httpd.conf

IPplan在linux环境下安装手册_中文版

新增Alias /ipplan/ "/home/httpd/html/ipplan/"

<Directory "/home/httpd/html/ipplan">

Options None

AllowOverride None

Order allow,deny

Allow from all

</Directory>

重启httpd

[root@localhost ~]#service httpd restart

3修改配置文件

[root@localhost ~]#cd ipplan

[root@localhost ~]#pwd

/home/httpd/htm/ipplan

[root@localhost ipplan]# vi config.php

修改配置文件config.php

define("DBF_TYPE", 'maxsql');

define("DBF_HOST", 'localhost');

define("DBF_USER", 'ipplan');

define("DBF_NAME", 'ipplan');

define("DBF_PASSWORD", 'ipplan99');

将 define("DBF_PASSWORD", 'ipplan99');中的密码 ipplan99 修改为上面的123456密码

4生成SQL数据库表格

打开浏览器火狐键入http://localhost/ipplan/admin/install.php

或者你在自己的PC上输入 http://172.25.254.55/ipplan/admin/install.php

该地址172.25.254.55为你linux服务器网卡地址

IPplan在linux环境下安装手册_中文版

选择

点击go!

如果出现大量的sql语句表示表格建立成功 例如

CREATE TABLE area (

areaaddr INT UNSIGNED NOT NULL DEFAULT 0, descrip VARCHAR(80) NOT NULL,

areaindex BIGINT NOT NULL AUTO_INCREMENT,

customer SMALLINT UNSIGNED NOT NULL DEFAULT 0, PRIMARY KEY (areaindex)

)TYPE=INNODB;

ALTER TABLE area ADD UNIQUE INDEX area_customer (customer, descrip);

ALTER TABLE area ADD UNIQUE INDEX area_areaaddr (areaaddr, customer);

IPplan在linux环境下安装手册_中文版

5安装成功

在浏览器中键入http://172.25.254.55/ipplan/

本文来源:https://www.bwwdw.com/article/lpue.html

Top