歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux基礎 >> Linux教程 >> CentOS 6.0安裝GLPI 0.78總結

CentOS 6.0安裝GLPI 0.78總結

日期:2017/2/28 15:57:51   编辑:Linux教程
GLPI 是一個信息資源管理器運行在linux下。你可以用它來給你公司建立一個資產清單(計算機,軟件,打印機、、、)數據庫。它的增強的功能可以是管理員的日常工作簡單化,例如 帶有郵件提醒功能的工作跟蹤系統等。它最首要的功能包括:1)所有技術資源精確的資產清單。資產的所有屬性將被存儲在同一個數據中。2)管理流程、維護工 作的歷史。這是一個動態的應用,它直接連把需要發出支持請求的用戶和技術人員連接起來.

1.首先在vmware上安裝好CentOS6.0 base基本包系統

2. 安裝install.sh腳本
#!/bin/bash
PATH=/root/glpi:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin
export PATH

yum -y install make gcc gcc-c++ glibc-devel glibc-headers autoconf automake bzip2-devel zlib-devel ncurses-devel libjpeg-devel libpng-devel libtiff-devel freetype-devel pam-devel openssl-devel libXpm libX11libxml2-devel gettext-devel pcre-devel mysql mysql-server httpd php php-devel php-gd php-pecl-zip php-mysql php-devel php-pear php-imap php-ldap php-odbc php-xml php-xmlrpc mod_perl httpd mysql mysql-server php-mysql perl mod_perl perl-XML-Simple perl-Compress-Zlib perl-DBI perl-DBD-MySQL perl-Net-IP php-mbstring

chkconfig mysqld on
service mysqld start
mysqladmin -uroot password 123456

sh 1&&sh 2&&sh 3&&sh 4&&sh 5&&sh 6

[root@localhost glpi]# ls
1 3 5 Apache-DBI-1.05.tar.gz glpi-0.78.tar.gz OCSNG_UNIX_SERVER-1.3.2-linvinus-with-utf8_patch.tar.gz test.txt
2 4 6 Digest-SHA1-2.02.tar.gz install.sh SOAP-Lite-0.69.tar.gz XML-Entities-1.0000.tar.gz
[root@localhost glpi]# cat 1
#!/bin/bash
PATH=/root/glpi:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin
export PATH

tar -zxvf Digest-SHA1-2.02.tar.gz
cd Digest-SHA1-2.02
perl Makefile.PL
make test
make
make install

[root@localhost glpi]# cat 2
#!/bin/bash
PATH=/root/glpi:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin
export PATH

tar -zxvf Apache-DBI-1.05.tar.gz
cd Apache-DBI-1.05
perl Makefile.PL
make test
make
make install

[root@localhost glpi]# cat 3
#!/bin/bash
PATH=/root/glpi:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin
export PATH

tar -zxvf SOAP-Lite-0.69.tar.gz
cd SOAP-Lite-0.69
perl Makefile.PL
make
make test
make install

[root@localhost glpi]# cat 4
#!/bin/bash
PATH=/root/glpi:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin
export PATH

tar -zxvf XML-Entities-1.0000.tar.gz
cd XML-Entities
perl Makefile.PL
make
make test
make install

[root@localhost glpi]# cat 5
#!/bin/bash
PATH=/root/glpi:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin
export PATH

tar -zxvf OCSNG_UNIX_SERVER-1.3.2-linvinus-with-utf8_patch.tar.gz
cd ocsinventory-server-1.3.2/
sh setup.sh

[root@localhost glpi]# cat 6
#!/bin/bash
PATH=/root/glpi:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin
export PATH

tar -zxvf glpi-0.78.tar.gz
cp -rf glpi/* /var/www/html/
chmod 777 -R /var/www/html/config/
chmod 777 -R /var/www/html/files/
echo "extension=mbstring.so" >>/etc/php.ini
mysql -uroot -p123456 -e "create database glpi;"
service httpd restart
rm -rf Digest-SHA1-2.02 Apache-DBI-1.05 SOAP-Lite-0.69 XML-Entities ocsinventory-server-1.3.2 glpi


3.安裝方法直接用ssh上傳到/root目錄解壓tar -zxvf然後sh install.sh 一路回車即可,下面是安裝信息。

Loaded plugins: fastestmirror
Determining fastest mirrors
* base: mirrors.163.com
* extras: mirrors.163.com
* updates: mirrors.163.com
Setting up Install Process
Package 1:make-3.81-19.el6.i686 already installed and latest version
Package gcc-4.4.6-3.el6.i686 already installed and latest version
Package gcc-c++-4.4.6-3.el6.i686 already installed and latest version
Package glibc-devel-2.12-1.47.el6_2.5.i686 already installed and latest version
Package glibc-headers-2.12-1.47.el6_2.5.i686 already installed and latest version
Package autoconf-2.63-5.1.el6.noarch already installed and latest version
Package automake-1.11.1-1.2.el6.noarch already installed and latest version
Package bzip2-devel-1.0.5-7.el6_0.i686 already installed and latest version
Package zlib-devel-1.2.3-27.el6.i686 already installed and latest version
Package ncurses-devel-5.7-3.20090208.el6.i686 already installed and latest version
Package libjpeg-devel-6b-46.el6.i686 already installed and latest version
Package 2:libpng-devel-1.2.46-1.el6_1.i686 already installed and latest version
Package libtiff-devel-3.9.4-1.el6_0.3.i686 already installed and latest version
Package freetype-devel-2.3.11-6.el6_1.8.i686 already installed and latest version
Package pam-devel-1.1.1-10.el6.i686 already installed and latest version
Package openssl-devel-1.0.0-20.el6_2.1.i686 already installed and latest version
Package libXpm-3.5.8-2.el6.i686 already installed and latest version
No package libX11libxml2-devel available.
Package gettext-devel-0.17-16.el6.i686 already installed and latest version
Package pcre-devel-7.8-3.1.el6.i686 already installed and latest version
Package mysql-5.1.52-1.el6_0.1.i686 already installed and latest version
Package mysql-server-5.1.52-1.el6_0.1.i686 already installed and latest version
Package httpd-2.2.15-15.el6.centos.i686 already installed and latest version
Package php-5.3.3-3.el6_2.5.i686 already installed and latest version
Package php-devel-5.3.3-3.el6_2.5.i686 already installed and latest version
Package php-gd-5.3.3-3.el6_2.5.i686 already installed and latest version
Package php-common-5.3.3-3.el6_2.5.i686 already installed and latest version
Package php-mysql-5.3.3-3.el6_2.5.i686 already installed and latest version
Package php-devel-5.3.3-3.el6_2.5.i686 already installed and latest version
Package 1:php-pear-1.9.4-4.el6.noarch already installed and latest version
Package php-imap-5.3.3-3.el6_2.5.i686 already installed and latest version
Package php-ldap-5.3.3-3.el6_2.5.i686 already installed and latest version
Package php-odbc-5.3.3-3.el6_2.5.i686 already installed and latest version
Package php-xml-5.3.3-3.el6_2.5.i686 already installed and latest version
Package php-xmlrpc-5.3.3-3.el6_2.5.i686 already installed and latest version
Package mod_perl-2.0.4-10.el6.i686 already installed and latest version
Package httpd-2.2.15-15.el6.centos.i686 already installed and latest version
Package mysql-5.1.52-1.el6_0.1.i686 already installed and latest version
Package mysql-server-5.1.52-1.el6_0.1.i686 already installed and latest version
Package php-mysql-5.3.3-3.el6_2.5.i686 already installed and latest version
Package 4:perl-5.10.1-119.el6_1.1.i686 already installed and latest version
Package mod_perl-2.0.4-10.el6.i686 already installed and latest version
Package perl-XML-Simple-2.18-6.el6.noarch already installed and latest version
Package perl-Compress-Zlib-2.020-119.el6_1.1.i686 already installed and latest version
Package perl-DBI-1.609-4.el6.i686 already installed and latest version
Package perl-DBD-MySQL-4.013-3.el6.i686 already installed and latest version
Package perl-Net-IP-1.25-13.el6.noarch already installed and latest version
Package php-mbstring-5.3.3-3.el6_2.5.i686 already installed and latest version
Nothing to do
Starting mysqld: [ OK ]
Digest-SHA1-2.02/
Digest-SHA1-2.02/README
Digest-SHA1-2.02/MANIFEST
Digest-SHA1-2.02/fip180-1.html
Digest-SHA1-2.02/SHA1.pm
Digest-SHA1-2.02/typemap
Digest-SHA1-2.02/fip180-1.gif
Digest-SHA1-2.02/t/
Digest-SHA1-2.02/t/badfile.t
Digest-SHA1-2.02/t/sha1.t
Digest-SHA1-2.02/Changes
Digest-SHA1-2.02/Makefile.PL
Digest-SHA1-2.02/SHA1.xs
Checking if your kit is complete...
Looks good
Writing Makefile for Digest::SHA1
cp SHA1.pm blib/lib/Digest/SHA1.pm
/usr/bin/perl /usr/share/perl5/ExtUtils/xsubpp -typemap /usr/share/perl5/ExtUtils/typemap -typemap typemap SHA1.xs > SHA1.xsc && mv SHA1.xsc SHA1.c
gcc -c -D_REENTRANT -D_GNU_SOURCE -fno-strict-aliasing -pipe -fstack-protector -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m32 -march=i686 -mtune=atom -fasynchronous-unwind-tables -DVERSION=\"2.02\" -DXS_VERSION=\"2.02\" -fPIC "-I/usr/lib/perl5/CORE" SHA1.c
Running Mkbootstrap for Digest::SHA1 ()
chmod 644 SHA1.bs
rm -f blib/arch/auto/Digest/SHA1/SHA1.so
gcc -shared -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m32 -march=i686 -mtune=atom -fasynchronous-unwind-tables -L/usr/local/lib SHA1.o -o blib/arch/auto/Digest/SHA1/SHA1.so \
\

chmod 755 blib/arch/auto/Digest/SHA1/SHA1.so
cp SHA1.bs blib/arch/auto/Digest/SHA1/SHA1.bs
chmod 644 blib/arch/auto/Digest/SHA1/SHA1.bs
PERL_DL_NONLAZY=1 /usr/bin/perl "-MExtUtils::Command::MM" "-e" "test_harness(0, 'blib/lib', 'blib/arch')" t/*.t
t/badfile.t .. ok
t/sha1.t ..... ok
All tests successful.
Files=2, Tests=7, 0 wallclock secs ( 0.01 usr 0.01 sys + 0.00 cusr 0.01 csys = 0.03 CPU)
Result: PASS
Manifying blib/man3/Digest::SHA1.3pm
Files found in blib/arch: installing files in blib/lib into architecture dependent library tree
Appending installation info to /usr/lib/perl5/perllocal.pod
Apache-DBI-1.05
Apache-DBI-1.05/lib
Apache-DBI-1.05/Changes
Apache-DBI-1.05/traces.txt
Apache-DBI-1.05/t
Apache-DBI-1.05/MANIFEST
Apache-DBI-1.05/eg
Apache-DBI-1.05/TODO
Apache-DBI-1.05/Makefile.PL
Apache-DBI-1.05/README
Apache-DBI-1.05/META.yml
Apache-DBI-1.05/eg/startup.pl
Apache-DBI-1.05/t/10mysql.t
Apache-DBI-1.05/lib/Apache
Apache-DBI-1.05/lib/Apache/AuthDBI.pm
Apache-DBI-1.05/lib/Apache/DBI.pm
Checking if your kit is complete...
Looks good
Writing Makefile for Apache::DBI
cp lib/Apache/DBI.pm blib/lib/Apache/DBI.pm
cp lib/Apache/AuthDBI.pm blib/lib/Apache/AuthDBI.pm
PERL_DL_NONLAZY=1 /usr/bin/perl "-MExtUtils::Command::MM" "-e" "test_harness(0, 'blib/lib', 'blib/arch')" t/*.t
t/10mysql.t ..
Dubious, test returned 2 (wstat 512, 0x200)
No subtests run

Test Summary Report
-------------------
t/10mysql.t (Wstat: 512 Tests: 0 Failed: 0)
Non-zero exit status: 2
Parse errors: No plan found in TAP output
Files=1, Tests=0, 0 wallclock secs ( 0.00 usr + 0.01 sys = 0.01 CPU)
Result: FAIL
Manifying blib/man3/Apache::DBI.3pm
Manifying blib/man3/Apache::AuthDBI.3pm
Manifying blib/man3/Apache::DBI.3pm
Manifying blib/man3/Apache::AuthDBI.3pm
Appending installation info to /usr/lib/perl5/perllocal.pod
SOAP-Lite-0.69/
SOAP-Lite-0.69/lib/
SOAP-Lite-0.69/lib/XMLRPC/
SOAP-Lite-0.69/lib/XMLRPC/Transport/
SOAP-Lite-0.69/lib/XMLRPC/Transport/TCP.pm
SOAP-Lite-0.69/lib/XMLRPC/Transport/POP3.pm
SOAP-Lite-0.69/lib/XMLRPC/Transport/HTTP.pm
SOAP-Lite-0.69/lib/XMLRPC/Lite.pm
SOAP-Lite-0.69/lib/XMLRPC/Test.pm
SOAP-Lite-0.69/lib/SOAP/
SOAP-Lite-0.69/lib/SOAP/Transport/
SOAP-Lite-0.69/lib/SOAP/Transport/JABBER.pm
SOAP-Lite-0.69/lib/SOAP/Transport/MAILTO.pm
SOAP-Lite-0.69/lib/SOAP/Transport/HTTP.pm
SOAP-Lite-0.69/lib/SOAP/Transport/LOCAL.pm
SOAP-Lite-0.69/lib/SOAP/Transport/POP3.pm
SOAP-Lite-0.69/lib/SOAP/Transport/FTP.pm
SOAP-Lite-0.69/lib/SOAP/Transport/MQ.pm
SOAP-Lite-0.69/lib/SOAP/Transport/IO.pm
SOAP-Lite-0.69/lib/SOAP/Transport/TCP.pm
SOAP-Lite-0.69/lib/SOAP/Lite.pm
SOAP-Lite-0.69/lib/SOAP/Data.pm
SOAP-Lite-0.69/lib/SOAP/Test.pm
SOAP-Lite-0.69/lib/SOAP/Schema.pm
SOAP-Lite-0.69/lib/SOAP/Server.pm
SOAP-Lite-0.69/lib/SOAP/Utils.pm
SOAP-Lite-0.69/lib/SOAP/Client.pm
SOAP-Lite-0.69/lib/SOAP/Fault.pm
SOAP-Lite-0.69/lib/SOAP/Transport.pm
SOAP-Lite-0.69/lib/SOAP/Header.pm
SOAP-Lite-0.69/lib/SOAP/Packager.pm
SOAP-Lite-0.69/lib/SOAP/Deserializer.pm
SOAP-Lite-0.69/lib/SOAP/Trace.pm
SOAP-Lite-0.69/lib/SOAP/Constants.pm
SOAP-Lite-0.69/lib/SOAP/Serializer.pm
SOAP-Lite-0.69/lib/SOAP/SOM.pm
SOAP-Lite-0.69/lib/Apache/
SOAP-Lite-0.69/lib/Apache/SOAP.pm
SOAP-Lite-0.69/lib/Apache/XMLRPC/
SOAP-Lite-0.69/lib/Apache/XMLRPC/Lite.pm
SOAP-Lite-0.69/lib/OldDocs/
SOAP-Lite-0.69/lib/OldDocs/SOAP/
SOAP-Lite-0.69/lib/OldDocs/SOAP/Transport/
SOAP-Lite-0.69/lib/OldDocs/SOAP/Transport/HTTP.pm
SOAP-Lite-0.69/lib/OldDocs/SOAP/Transport/FTP.pm
SOAP-Lite-0.69/lib/OldDocs/SOAP/Transport/JABBER.pm
SOAP-Lite-0.69/lib/OldDocs/SOAP/Transport/IO.pm
SOAP-Lite-0.69/lib/OldDocs/SOAP/Transport/MQ.pm
SOAP-Lite-0.69/lib/OldDocs/SOAP/Transport/LOCAL.pm
SOAP-Lite-0.69/lib/OldDocs/SOAP/Transport/TCP.pm
SOAP-Lite-0.69/lib/OldDocs/SOAP/Transport/POP3.pm
SOAP-Lite-0.69/lib/OldDocs/SOAP/Transport/MAILTO.pm
SOAP-Lite-0.69/lib/OldDocs/SOAP/Lite.pm
SOAP-Lite-0.69/lib/IO/
SOAP-Lite-0.69/lib/IO/SessionSet.pm
SOAP-Lite-0.69/lib/IO/SessionData.pm
SOAP-Lite-0.69/lib/XML/
SOAP-Lite-0.69/lib/XML/Parser/
SOAP-Lite-0.69/lib/XML/Parser/Lite.pm
SOAP-Lite-0.69/lib/UDDI/
SOAP-Lite-0.69/lib/UDDI/Lite.pm
SOAP-Lite-0.69/Changes
SOAP-Lite-0.69/examples/
SOAP-Lite-0.69/examples/XMLRPC/
SOAP-Lite-0.69/examples/XMLRPC/xmlrpc.cgi
SOAP-Lite-0.69/examples/XMLRPC/simple1.pl
SOAP-Lite-0.69/examples/XMLRPC/xmlrpc.daemon
SOAP-Lite-0.69/examples/XMLRPC/mod_xmlrpc.htaccess
SOAP-Lite-0.69/examples/server/
SOAP-Lite-0.69/examples/server/soap.cgi
SOAP-Lite-0.69/examples/server/soap.mod_cgi
SOAP-Lite-0.69/examples/server/soap.daemon.forkafterprocessing
SOAP-Lite-0.69/examples/server/soap.daemon.forkonaccept
SOAP-Lite-0.69/examples/server/soap.io
SOAP-Lite-0.69/examples/server/soap.tcp
SOAP-Lite-0.69/examples/server/soap.pop3
SOAP-Lite-0.69/examples/server/soap.asp
SOAP-Lite-0.69/examples/server/soap_perl.asp
SOAP-Lite-0.69/examples/server/soap.fcgi
SOAP-Lite-0.69/examples/server/soap.daemon
SOAP-Lite-0.69/examples/server/soap.jabber
SOAP-Lite-0.69/examples/server/mod_soap.htaccess
SOAP-Lite-0.69/examples/server/soap.vbs
SOAP-Lite-0.69/examples/server/soap.mq
SOAP-Lite-0.69/examples/server/Apache.pm
SOAP-Lite-0.69/examples/chat.pl
SOAP-Lite-0.69/examples/UDDI/
SOAP-Lite-0.69/examples/UDDI/syntax2.pl
SOAP-Lite-0.69/examples/UDDI/simple1.pl
SOAP-Lite-0.69/examples/UDDI/syntax1.pl
SOAP-Lite-0.69/examples/UDDI/inquire1.pl
SOAP-Lite-0.69/examples/UDDI/simple2.pl
SOAP-Lite-0.69/examples/UDDI/publish1.pl
SOAP-Lite-0.69/examples/UDDI/syntax3.pl
SOAP-Lite-0.69/examples/My/
SOAP-Lite-0.69/examples/My/SessionIterator.pm
SOAP-Lite-0.69/examples/My/PingPong.pm
SOAP-Lite-0.69/examples/My/Examples.pm
SOAP-Lite-0.69/examples/My/PersistentIterator.pm
SOAP-Lite-0.69/examples/My/Chat.pm
SOAP-Lite-0.69/examples/My/Parameters.pm
SOAP-Lite-0.69/examples/oneliners
SOAP-Lite-0.69/examples/customschema.pl
SOAP-Lite-0.69/examples/JABBER/
SOAP-Lite-0.69/examples/JABBER/jabclient.pl
SOAP-Lite-0.69/examples/JABBER/jabserver.pl
SOAP-Lite-0.69/examples/iterator.pl
SOAP-Lite-0.69/examples/COM/
SOAP-Lite-0.69/examples/COM/SOAP-Lite-COM-standalone.ctrl
SOAP-Lite-0.69/examples/COM/states.vbs
SOAP-Lite-0.69/examples/COM/soap.asp
SOAP-Lite-0.69/examples/COM/remote.vba
SOAP-Lite-0.69/examples/COM/soap.vbs
SOAP-Lite-0.69/examples/COM/xmlrpc.vbs
SOAP-Lite-0.69/examples/COM/local.vbs
SOAP-Lite-0.69/examples/COM/SOAP-Lite-COM-minimal.ctrl
SOAP-Lite-0.69/examples/COM/remote.cs
SOAP-Lite-0.69/examples/COM/hashecho.vbs
SOAP-Lite-0.69/examples/COM/soap_perl.asp
SOAP-Lite-0.69/examples/COM/states.html
SOAP-Lite-0.69/examples/COM/temper.vbs
SOAP-Lite-0.69/examples/COM/service.vbs
SOAP-Lite-0.69/examples/COM/remote.xls
SOAP-Lite-0.69/examples/COM/remote.vbs
SOAP-Lite-0.69/examples/COM/states.pl
SOAP-Lite-0.69/examples/COM/states.vba
SOAP-Lite-0.69/examples/COM/make-com-standalone.bat
SOAP-Lite-0.69/examples/COM/README
SOAP-Lite-0.69/examples/COM/hash.vbs
SOAP-Lite-0.69/examples/COM/states.xls
SOAP-Lite-0.69/examples/COM/make-com-minimal.bat
SOAP-Lite-0.69/examples/pingpong.pl
SOAP-Lite-0.69/examples/inline.daemon
SOAP-Lite-0.69/examples/joke.pl
SOAP-Lite-0.69/examples/soapmark.pl
SOAP-Lite-0.69/examples/SOAP/
SOAP-Lite-0.69/examples/SOAP/simple2.pl
SOAP-Lite-0.69/examples/SOAP/simple1.pl
SOAP-Lite-0.69/examples/SOAP/simple3.pl
SOAP-Lite-0.69/examples/SOAP/Transport/
SOAP-Lite-0.69/examples/SOAP/Transport/HTTP/
SOAP-Lite-0.69/examples/SOAP/Transport/HTTP/Daemon/
SOAP-Lite-0.69/examples/SOAP/Transport/HTTP/Daemon/ForkOnAccept.pm
SOAP-Lite-0.69/examples/SOAP/Transport/HTTP/Daemon/ForkAfterProcessing.pm
SOAP-Lite-0.69/examples/forms/
SOAP-Lite-0.69/examples/forms/style.html
SOAP-Lite-0.69/examples/forms/style.cgi
SOAP-Lite-0.69/examples/compress.pl
SOAP-Lite-0.69/examples/WSDL/
SOAP-Lite-0.69/examples/WSDL/dynamic3.pl
SOAP-Lite-0.69/examples/WSDL/dynamic2.pl
SOAP-Lite-0.69/examples/WSDL/stub2.pl
SOAP-Lite-0.69/examples/WSDL/stub3.pl
SOAP-Lite-0.69/examples/WSDL/dynamic1.pl
SOAP-Lite-0.69/examples/WSDL/dynamic4.pl
SOAP-Lite-0.69/examples/WSDL/stub1.pl
SOAP-Lite-0.69/examples/terraserver.pl
SOAP-Lite-0.69/examples/cookie.pl
SOAP-Lite-0.69/examples/tcpclient.pl
SOAP-Lite-0.69/examples/cookieauth.pl
SOAP-Lite-0.69/examples/XML/
SOAP-Lite-0.69/examples/XML/customxml.pl
SOAP-Lite-0.69/examples/oo-apache.pl
SOAP-Lite-0.69/examples/weblog.pl
SOAP-Lite-0.69/examples/authentication.pl
SOAP-Lite-0.69/examples/parametersbyname.pl
SOAP-Lite-0.69/examples/soapsmtp.pl
SOAP-Lite-0.69/examples/getdom.pl
SOAP-Lite-0.69/examples/MQ/
SOAP-Lite-0.69/examples/MQ/mqserver.pl
SOAP-Lite-0.69/examples/MQ/mqclient.pl
SOAP-Lite-0.69/examples/autoexamples.pl
SOAP-Lite-0.69/examples/allclients.pl
SOAP-Lite-0.69/examples/google.pl
SOAP-Lite-0.69/examples/fullsearch.pl
SOAP-Lite-0.69/bin/
SOAP-Lite-0.69/bin/stubmaker.pl
SOAP-Lite-0.69/bin/XMLRPCsh.pl
SOAP-Lite-0.69/bin/SOAPsh.pl
SOAP-Lite-0.69/t/
SOAP-Lite-0.69/t/22-interop_apache.t
SOAP-Lite-0.69/t/28-uddi_search.t
SOAP-Lite-0.69/t/38-packager.t
SOAP-Lite-0.69/t/06-modules.t
SOAP-Lite-0.69/t/04-attach.t
SOAP-Lite-0.69/t/15-daemon.t
SOAP-Lite-0.69/t/08-schema.t
SOAP-Lite-0.69/t/14-cgi_apache.t
SOAP-Lite-0.69/t/27-xmlparserlite.t
SOAP-Lite-0.69/t/25-uddi.t
SOAP-Lite-0.69/t/23-ppm.t
SOAP-Lite-0.69/t/02-payload.t
SOAP-Lite-0.69/t/21-public.t
SOAP-Lite-0.69/t/36-leaks.t
SOAP-Lite-0.69/t/05-customxml.t
SOAP-Lite-0.69/t/29-uddi_publishing.t
SOAP-Lite-0.69/t/01-core.t
SOAP-Lite-0.69/t/07-xmlrpc_payload.t
SOAP-Lite-0.69/t/26-xmlrpc.t
SOAP-Lite-0.69/t/03-server.t
SOAP-Lite-0.69/t/24-wsdl.t
SOAP-Lite-0.69/t/19-apachesoap.t
SOAP-Lite-0.69/t/11-cgi.t
SOAP-Lite-0.69/t/37-mod_xmlrpc.t
SOAP-Lite-0.69/t/16-tcp.t
SOAP-Lite-0.69/t/12-cgi_https.t
SOAP-Lite-0.69/t/TEST.pl
SOAP-Lite-0.69/t/17-mod_soap.t
SOAP-Lite-0.69/t/13-mod_perl.t
SOAP-Lite-0.69/ReleaseNotes.txt
SOAP-Lite-0.69/README
SOAP-Lite-0.69/META.yml
SOAP-Lite-0.69/Makefile.PL
SOAP-Lite-0.69/MANIFEST
We are about to install SOAP::Lite and for your convenience will provide
you with list of modules and prerequisites, so you'll be able to choose
only modules you need for your configuration.

XMLRPC::Lite, UDDI::Lite, and XML::Parser::Lite are included by default.
Installed transports can be used for both SOAP::Lite and XMLRPC::Lite.

Press <enter> to see the detailed list.
Feature Prerequisites Install?
----------------------------- ---------------------------- --------
Core Package [*] URI always
[*] MIME::Base64
[*] XML::Parser (v2.23)
Client HTTP support [*] LWP::UserAgent [ yes ]
Client HTTPS support [ ] Crypt::SSLeay [ no ]
Client SMTP/sendmail support [ ] MIME::Lite [ no ]
Client FTP support [*] IO::File [ yes ]
[*] Net::FTP
Standalone HTTP server [*] HTTP::Daemon [ yes ]
Apache/mod_perl server [ ] Apache [ no ]
FastCGI server [ ] FCGI [ no ]
POP3 server [ ] MIME::Parser [ no ]
[*] Net::POP3
IO server [*] IO::File [ yes ]
MQ transport support [ ] MQSeries [ no ]
JABBER transport support [ ] Net::Jabber [ no ]
MIME messages [ ] MIME::Parser [ no ]
DIME messages [ ] IO::Scalar (v2.105) [ no ]
[ ] DIME::Tools (v0.03)
[ ] Data::UUID (v0.11)
SSL Support for TCP Transport [ ] IO::Socket::SSL [ no ]
Compression support for HTTP [*] Compress::Zlib [ yes ]
MIME interoperability w/ Axis [ ] MIME::Parser (v6.106) [ no ]
--- An asterix '[*]' indicates if the module is currently installed.
Do you want to proceed with this configuration? [yes]

cp lib/XMLRPC/Transport/POP3.pm blib/lib/XMLRPC/Transport/POP3.pm
cp lib/XMLRPC/Lite.pm blib/lib/XMLRPC/Lite.pm
cp lib/SOAP/Serializer.pm blib/lib/SOAP/Serializer.pm
cp lib/OldDocs/SOAP/Lite.pm blib/lib/OldDocs/SOAP/Lite.pm
cp lib/OldDocs/SOAP/Transport/HTTP.pm blib/lib/OldDocs/SOAP/Transport/HTTP.pm
cp lib/IO/SessionData.pm blib/lib/IO/SessionData.pm
cp lib/SOAP/Client.pm blib/lib/SOAP/Client.pm
cp lib/SOAP/SOM.pm blib/lib/SOAP/SOM.pm
cp lib/XMLRPC/Test.pm blib/lib/XMLRPC/Test.pm
cp lib/SOAP/Header.pm blib/lib/SOAP/Header.pm
cp lib/OldDocs/SOAP/Transport/MQ.pm blib/lib/OldDocs/SOAP/Transport/MQ.pm
cp lib/OldDocs/SOAP/Transport/FTP.pm blib/lib/OldDocs/SOAP/Transport/FTP.pm
cp lib/OldDocs/SOAP/Transport/JABBER.pm blib/lib/OldDocs/SOAP/Transport/JABBER.pm
cp lib/SOAP/Transport/TCP.pm blib/lib/SOAP/Transport/TCP.pm
cp lib/IO/SessionSet.pm blib/lib/IO/SessionSet.pm
cp lib/OldDocs/SOAP/Transport/IO.pm blib/lib/OldDocs/SOAP/Transport/IO.pm
cp lib/SOAP/Transport/HTTP.pm blib/lib/SOAP/Transport/HTTP.pm
cp lib/OldDocs/SOAP/Transport/LOCAL.pm blib/lib/OldDocs/SOAP/Transport/LOCAL.pm
cp lib/SOAP/Lite.pm blib/lib/SOAP/Lite.pm
cp lib/SOAP/Transport/LOCAL.pm blib/lib/SOAP/Transport/LOCAL.pm
cp lib/SOAP/Fault.pm blib/lib/SOAP/Fault.pm
cp lib/OldDocs/SOAP/Transport/MAILTO.pm blib/lib/OldDocs/SOAP/Transport/MAILTO.pm
cp lib/SOAP/Transport/FTP.pm blib/lib/SOAP/Transport/FTP.pm
cp bin/SOAPsh.pl blib/script/SOAPsh.pl
/usr/bin/perl -MExtUtils::MY -e 'MY->fixin(shift)' -- blib/script/SOAPsh.pl
cp bin/stubmaker.pl blib/script/stubmaker.pl
/usr/bin/perl -MExtUtils::MY -e 'MY->fixin(shift)' -- blib/script/stubmaker.pl
cp bin/XMLRPCsh.pl blib/script/XMLRPCsh.pl
/usr/bin/perl -MExtUtils::MY -e 'MY->fixin(shift)' -- blib/script/XMLRPCsh.pl
Manifying blib/man1/SOAPsh.pl.1
Manifying blib/man1/stubmaker.pl.1
Manifying blib/man1/XMLRPCsh.pl.1
Manifying blib/man3/SOAP::Packager.3pm
Manifying blib/man3/XML::Parser::Lite.3pm
Manifying blib/man3/SOAP::Data.3pm
Manifying blib/man3/XMLRPC::Transport::TCP.3pm
Manifying blib/man3/OldDocs::SOAP::Transport::TCP.3pm
Manifying blib/man3/OldDocs::SOAP::Transport::POP3.3pm
Manifying blib/man3/Apache::SOAP.3pm
Manifying blib/man3/SOAP::Test.3pm
Manifying blib/man3/SOAP::Transport.3pm
Manifying blib/man3/Apache::XMLRPC::Lite.3pm
Manifying blib/man3/XMLRPC::Transport::HTTP.3pm
Manifying blib/man3/SOAP::Transport::POP3.3pm
Manifying blib/man3/SOAP::Deserializer.3pm
Manifying blib/man3/SOAP::Trace.3pm
Manifying blib/man3/SOAP::Schema.3pm
Manifying blib/man3/SOAP::Server.3pm
Manifying blib/man3/UDDI::Lite.3pm
Manifying blib/man3/SOAP::Utils.3pm
Manifying blib/man3/SOAP::Constants.3pm
Manifying blib/man3/XMLRPC::Transport::POP3.3pm
Manifying blib/man3/XMLRPC::Lite.3pm
Manifying blib/man3/SOAP::Serializer.3pm
Manifying blib/man3/OldDocs::SOAP::Lite.3pm
Manifying blib/man3/OldDocs::SOAP::Transport::HTTP.3pm
Manifying blib/man3/SOAP::Client.3pm
Manifying blib/man3/SOAP::SOM.3pm
Manifying blib/man3/XMLRPC::Test.3pm
Manifying blib/man3/SOAP::Header.3pm
Manifying blib/man3/OldDocs::SOAP::Transport::FTP.3pm
Manifying blib/man3/OldDocs::SOAP::Transport::MQ.3pm
Manifying blib/man3/OldDocs::SOAP::Transport::JABBER.3pm
Manifying blib/man3/OldDocs::SOAP::Transport::IO.3pm
Manifying blib/man3/OldDocs::SOAP::Transport::LOCAL.3pm
Manifying blib/man3/SOAP::Lite.3pm
Manifying blib/man3/OldDocs::SOAP::Transport::MAILTO.3pm
Manifying blib/man3/SOAP::Fault.3pm
PERL_DL_NONLAZY=1 /usr/bin/perl "-MExtUtils::Command::MM" "-e" "test_harness(0, 'blib/lib', 'blib/arch')" t/01-core.t t/02-payload.t t/03-server.t t/04-attach.t t/05-customxml.t t/06-modules.t t/07-xmlrpc_payload.t t/08-schema.t
t/01-core.t ............ ok
t/02-payload.t ......... ok
t/03-server.t .......... ok
t/04-attach.t .......... skipped: Could not find MIME::Parser - is MIME::Tools installed? Aborting.
t/05-customxml.t ....... ok
t/06-modules.t ......... ok
t/07-xmlrpc_payload.t .. ok
t/08-schema.t .......... ok
All tests successful.
Files=8, Tests=306, 1 wallclock secs ( 0.03 usr 0.02 sys + 0.35 cusr 0.06 csys = 0.46 CPU)
Result: PASS
Appending installation info to /usr/lib/perl5/perllocal.pod
XML-Entities/
XML-Entities/t/
XML-Entities/t/01-xml-entities.t
XML-Entities/t/00-xml-entities-data.t
XML-Entities/t/02-unicode.t
XML-Entities/bin/
XML-Entities/bin/download-entities.pl
XML-Entities/lib/
XML-Entities/lib/XML/
XML-Entities/lib/XML/Entities/
XML-Entities/lib/XML/Entities/Data.pm
XML-Entities/lib/XML/Entities/Data.pod
XML-Entities/lib/XML/Entities.pm
XML-Entities/README
XML-Entities/Changes
XML-Entities/Build.PL
XML-Entities/Makefile.PL
XML-Entities/META.yml
XML-Entities/MANIFEST
Checking if your kit is complete...
Looks good
Warning: prerequisite Test::More 0 not found.
Writing Makefile for XML::Entities
cp lib/XML/Entities/Data.pod blib/lib/XML/Entities/Data.pod
cp lib/XML/Entities/Data.pm blib/lib/XML/Entities/Data.pm
cp lib/XML/Entities.pm blib/lib/XML/Entities.pm
cp bin/download-entities.pl blib/script/download-entities.pl
/usr/bin/perl -MExtUtils::MY -e 'MY->fixin(shift)' -- blib/script/download-entities.pl
Manifying blib/man1/download-entities.pl.1
Manifying blib/man3/download-entities.pl.3pm
Manifying blib/man3/XML::Entities::Data.3pm
Manifying blib/man3/XML::Entities.3pm
PERL_DL_NONLAZY=1 /usr/bin/perl "-MExtUtils::Command::MM" "-e" "test_harness(0, 'blib/lib', 'blib/arch')" t/*.t
t/00-xml-entities-data.t .. Can't locate Test/More.pm in @INC (@INC contains: /root/glpi/XML-Entities/blib/lib /root/glpi/XML-Entities/blib/arch /usr/local/lib/perl5 /usr/local/share/perl5 /usr/lib/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib/perl5 /usr/share/perl5 .) at t/00-xml-entities-data.t line 5.
BEGIN failed--compilation aborted at t/00-xml-entities-data.t line 5.
t/00-xml-entities-data.t .. Dubious, test returned 2 (wstat 512, 0x200)
No subtests run
t/01-xml-entities.t ....... Can't locate Test/More.pm in @INC (@INC contains: /root/glpi/XML-Entities/blib/lib /root/glpi/XML-Entities/blib/arch /usr/local/lib/perl5 /usr/local/share/perl5 /usr/lib/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib/perl5 /usr/share/perl5 .) at t/01-xml-entities.t line 6.
BEGIN failed--compilation aborted at t/01-xml-entities.t line 6.
t/01-xml-entities.t ....... Dubious, test returned 2 (wstat 512, 0x200)
No subtests run
t/02-unicode.t ............ Can't locate Test/More.pm in @INC (@INC contains: /root/glpi/XML-Entities/blib/lib /root/glpi/XML-Entities/blib/arch /usr/local/lib/perl5 /usr/local/share/perl5 /usr/lib/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib/perl5 /usr/share/perl5 .) at t/02-unicode.t line 5.
BEGIN failed--compilation aborted at t/02-unicode.t line 5.
t/02-unicode.t ............ Dubious, test returned 2 (wstat 512, 0x200)
No subtests run

Test Summary Report
-------------------
t/00-xml-entities-data.t (Wstat: 512 Tests: 0 Failed: 0)
Non-zero exit status: 2
Parse errors: No plan found in TAP output
t/01-xml-entities.t (Wstat: 512 Tests: 0 Failed: 0)
Non-zero exit status: 2
Parse errors: No plan found in TAP output
t/02-unicode.t (Wstat: 512 Tests: 0 Failed: 0)
Non-zero exit status: 2
Parse errors: No plan found in TAP output
Files=3, Tests=0, 0 wallclock secs ( 0.01 usr + 0.01 sys = 0.02 CPU)
Result: FAIL
Failed 3/3 test programs. 0/0 subtests failed.
make: *** [test_dynamic] Error 2
Manifying blib/man1/download-entities.pl.1
Manifying blib/man3/download-entities.pl.3pm
Manifying blib/man3/XML::Entities::Data.3pm
Manifying blib/man3/XML::Entities.3pm
Appending installation info to /usr/lib/perl5/perllocal.pod
ocsinventory-server-1.3.2/
ocsinventory-server-1.3.2/setup.sh
ocsinventory-server-1.3.2/etc/
ocsinventory-server-1.3.2/etc/ocsinventory/
ocsinventory-server-1.3.2/etc/ocsinventory/ocsinventory-reports.conf
ocsinventory-server-1.3.2/etc/ocsinventory/ocsinventory-server.conf
ocsinventory-server-1.3.2/etc/logrotate.d/
ocsinventory-server-1.3.2/etc/logrotate.d/ocsinventory-server
ocsinventory-server-1.3.2/binutils/
ocsinventory-server-1.3.2/binutils/soap-client.pl
ocsinventory-server-1.3.2/binutils/soap-client.README
ocsinventory-server-1.3.2/binutils/ipdiscover-util.pl
ocsinventory-server-1.3.2/binutils/ocsinventory-injector.pl
ocsinventory-server-1.3.2/binutils/ocsinventory-log.pl
ocsinventory-server-1.3.2/binutils/ocs-errors
ocsinventory-server-1.3.2/binutils/ocsinventory-injector.README
ocsinventory-server-1.3.2/binutils/ocsinventory-log.README
ocsinventory-server-1.3.2/binutils/create-release-tarball.sh
ocsinventory-server-1.3.2/binutils/ipdiscover-util.README
ocsinventory-server-1.3.2/dtd/
ocsinventory-server-1.3.2/dtd/prolog_reply.dtd
ocsinventory-server-1.3.2/dtd/inventory_reply.dtd
ocsinventory-server-1.3.2/dtd/update_request.dtd
ocsinventory-server-1.3.2/dtd/update_reply.dtd
ocsinventory-server-1.3.2/dtd/Interface/
ocsinventory-server-1.3.2/dtd/Interface/get_computers_V1-request.dtd
ocsinventory-server-1.3.2/dtd/file_request.dtd
ocsinventory-server-1.3.2/dtd/prolog_request.dtd
ocsinventory-server-1.3.2/dtd/inventory_request.dtd
ocsinventory-server-1.3.2/README
ocsinventory-server-1.3.2/ChangeLog-ocsreports
ocsinventory-server-1.3.2/ocsreports/
ocsinventory-server-1.3.2/ocsreports/rules_redistrib.php
ocsinventory-server-1.3.2/ocsreports/js/
ocsinventory-server-1.3.2/ocsreports/js/slider.js
ocsinventory-server-1.3.2/ocsreports/js/timer.js
ocsinventory-server-1.3.2/ocsreports/js/datetimepicker.js
ocsinventory-server-1.3.2/ocsreports/js/range.js
ocsinventory-server-1.3.2/ocsreports/pass.php
ocsinventory-server-1.3.2/ocsreports/tele_stats.php
ocsinventory-server-1.3.2/ocsreports/tele_affect.php
ocsinventory-server-1.3.2/ocsreports/files/
ocsinventory-server-1.3.2/ocsreports/files/oui.txt
ocsinventory-server-1.3.2/ocsreports/files/ocsbase.sql
ocsinventory-server-1.3.2/ocsreports/dbconfig.inc.php
ocsinventory-server-1.3.2/ocsreports/css/
ocsinventory-server-1.3.2/ocsreports/css/onglets.css
ocsinventory-server-1.3.2/ocsreports/css/winclassic.css
ocsinventory-server-1.3.2/ocsreports/css/boxsizing.htc
ocsinventory-server-1.3.2/ocsreports/css/ocsreports.css
ocsinventory-server-1.3.2/ocsreports/local.php
ocsinventory-server-1.3.2/ocsreports/opt_param.php
ocsinventory-server-1.3.2/ocsreports/uploadfile.php
ocsinventory-server-1.3.2/ocsreports/tele_compress.php
ocsinventory-server-1.3.2/ocsreports/req.class.php
ocsinventory-server-1.3.2/ocsreports/opt_download.php
ocsinventory-server-1.3.2/ocsreports/group_show.php
ocsinventory-server-1.3.2/ocsreports/index.php
ocsinventory-server-1.3.2/ocsreports/admin_attrib.php
ocsinventory-server-1.3.2/ocsreports/download.php
ocsinventory-server-1.3.2/ocsreports/preferences.php
ocsinventory-server-1.3.2/ocsreports/machine.php
ocsinventory-server-1.3.2/ocsreports/footer.php
ocsinventory-server-1.3.2/ocsreports/opt_ipdiscover.php
ocsinventory-server-1.3.2/ocsreports/all_soft.php
ocsinventory-server-1.3.2/ocsreports/doublons.php
ocsinventory-server-1.3.2/ocsreports/ipcsv.php
ocsinventory-server-1.3.2/ocsreports/opt_suppr.php
ocsinventory-server-1.3.2/ocsreports/console.php
ocsinventory-server-1.3.2/ocsreports/admin_language.php
ocsinventory-server-1.3.2/ocsreports/donnees.php
ocsinventory-server-1.3.2/ocsreports/image/
ocsinventory-server-1.3.2/ocsreports/image/imprimante_d.png
ocsinventory-server-1.3.2/ocsreports/image/imprimante.png
ocsinventory-server-1.3.2/ocsreports/image/deconnexion.png
ocsinventory-server-1.3.2/ocsreports/image/modif_anul_v2.png
ocsinventory-server-1.3.2/ocsreports/image/recherche_a.png
ocsinventory-server-1.3.2/ocsreports/image/delete_all.png
ocsinventory-server-1.3.2/ocsreports/image/memoire.png
ocsinventory-server-1.3.2/ocsreports/image/stockage_a.png
ocsinventory-server-1.3.2/ocsreports/image/disque_a.png
ocsinventory-server-1.3.2/ocsreports/image/modem_d.png
ocsinventory-server-1.3.2/ocsreports/image/video.png
ocsinventory-server-1.3.2/ocsreports/image/peripherique.png
ocsinventory-server-1.3.2/ocsreports/image/proch16.png
ocsinventory-server-1.3.2/ocsreports/image/paquets_d.png
ocsinventory-server-1.3.2/ocsreports/image/spec_a.png
ocsinventory-server-1.3.2/ocsreports/image/administration.png
ocsinventory-server-1.3.2/ocsreports/image/codes_a.png
ocsinventory-server-1.3.2/ocsreports/image/pack.png
ocsinventory-server-1.3.2/ocsreports/image/peripherique_a.png
ocsinventory-server-1.3.2/ocsreports/image/aide_a.png
ocsinventory-server-1.3.2/ocsreports/image/up.png
ocsinventory-server-1.3.2/ocsreports/image/peripherique_d.png
ocsinventory-server-1.3.2/ocsreports/image/slot_a.png
ocsinventory-server-1.3.2/ocsreports/image/Gest_admin1.png
ocsinventory-server-1.3.2/ocsreports/image/bios_a.png
ocsinventory-server-1.3.2/ocsreports/image/processeur_a.png
ocsinventory-server-1.3.2/ocsreports/image/adm_a.png
ocsinventory-server-1.3.2/ocsreports/image/modif_valid_v2.png
ocsinventory-server-1.3.2/ocsreports/image/controleur.png
ocsinventory-server-1.3.2/ocsreports/image/regconfig.png
ocsinventory-server-1.3.2/ocsreports/image/modif_a.png
ocsinventory-server-1.3.2/ocsreports/image/prec16.png
ocsinventory-server-1.3.2/ocsreports/image/red.png
ocsinventory-server-1.3.2/ocsreports/image/repartition.png
ocsinventory-server-1.3.2/ocsreports/image/connexion.png
ocsinventory-server-1.3.2/ocsreports/image/oeil.png
ocsinventory-server-1.3.2/ocsreports/image/port_d.png
ocsinventory-server-1.3.2/ocsreports/image/norm_left.gif
ocsinventory-server-1.3.2/ocsreports/image/dictionnaire.png
ocsinventory-server-1.3.2/ocsreports/image/reseau_d.png
ocsinventory-server-1.3.2/ocsreports/image/memoire_d.png
ocsinventory-server-1.3.2/ocsreports/image/local.png
ocsinventory-server-1.3.2/ocsreports/image/controleur_d.png
ocsinventory-server-1.3.2/ocsreports/image/paquets.png
ocsinventory-server-1.3.2/ocsreports/image/modif_valid.png
ocsinventory-server-1.3.2/ocsreports/image/securite.png
ocsinventory-server-1.3.2/ocsreports/image/fond.png
ocsinventory-server-1.3.2/ocsreports/image/ttmachinesred.png
ocsinventory-server-1.3.2/ocsreports/image/repartition_a.png
ocsinventory-server-1.3.2/ocsreports/image/configuration_a.png
ocsinventory-server-1.3.2/ocsreports/image/ttmachines.png
ocsinventory-server-1.3.2/ocsreports/image/banner-ocs.png
ocsinventory-server-1.3.2/ocsreports/image/utilisateur OK.png
ocsinventory-server-1.3.2/ocsreports/image/bios_d.png
ocsinventory-server-1.3.2/ocsreports/image/slot_d.png
ocsinventory-server-1.3.2/ocsreports/image/ttlogiciels_a.png
ocsinventory-server-1.3.2/ocsreports/image/pass_a.png
ocsinventory-server-1.3.2/ocsreports/image/reseau_a.png
ocsinventory-server-1.3.2/ocsreports/image/rien_a.png
ocsinventory-server-1.3.2/ocsreports/image/bios.png
ocsinventory-server-1.3.2/ocsreports/image/norm_left_on.gif
ocsinventory-server-1.3.2/ocsreports/image/imprimante_a.png
ocsinventory-server-1.3.2/ocsreports/image/adm.png
ocsinventory-server-1.3.2/ocsreports/image/spec.png
ocsinventory-server-1.3.2/ocsreports/image/recurrence.png
ocsinventory-server-1.3.2/ocsreports/image/local_a.png
ocsinventory-server-1.3.2/ocsreports/image/modem_a.png
ocsinventory-server-1.3.2/ocsreports/image/son.png
ocsinventory-server-1.3.2/ocsreports/image/processeur_d.png
ocsinventory-server-1.3.2/ocsreports/image/mail.gif
ocsinventory-server-1.3.2/ocsreports/image/ttlogiciels.png
ocsinventory-server-1.3.2/ocsreports/image/logiciels_d.png
ocsinventory-server-1.3.2/ocsreports/image/groups_a.png
ocsinventory-server-1.3.2/ocsreports/image/securite_a.png
ocsinventory-server-1.3.2/ocsreports/image/prec24.png
ocsinventory-server-1.3.2/ocsreports/image/port_a.png
ocsinventory-server-1.3.2/ocsreports/image/test.jpg
ocsinventory-server-1.3.2/ocsreports/image/disque_d.png
ocsinventory-server-1.3.2/ocsreports/image/moniteur_a.png
ocsinventory-server-1.3.2/ocsreports/image/recherche.png
ocsinventory-server-1.3.2/ocsreports/image/groups.png
ocsinventory-server-1.3.2/ocsreports/image/norm_right.gif
ocsinventory-server-1.3.2/ocsreports/image/processeur.png
ocsinventory-server-1.3.2/ocsreports/image/compress.png
ocsinventory-server-1.3.2/ocsreports/image/archives.png
ocsinventory-server-1.3.2/ocsreports/image/norm_right.gif.png
ocsinventory-server-1.3.2/ocsreports/image/agent_a.png
ocsinventory-server-1.3.2/ocsreports/image/regconfig_a.png
ocsinventory-server-1.3.2/ocsreports/image/logiciels.png
ocsinventory-server-1.3.2/ocsreports/image/modif_anul.png
ocsinventory-server-1.3.2/ocsreports/image/stat.png
ocsinventory-server-1.3.2/ocsreports/image/utilisateurs.png
ocsinventory-server-1.3.2/ocsreports/image/administration_a.png
ocsinventory-server-1.3.2/ocsreports/image/stockage_d.png
ocsinventory-server-1.3.2/ocsreports/image/doublons.png
ocsinventory-server-1.3.2/ocsreports/image/dictionnaire_a.png
ocsinventory-server-1.3.2/ocsreports/image/codes.png
ocsinventory-server-1.3.2/ocsreports/image/activer.png
ocsinventory-server-1.3.2/ocsreports/image/utilisateurs_a.png
ocsinventory-server-1.3.2/ocsreports/image/logo OCS-ng-48.png
ocsinventory-server-1.3.2/ocsreports/image/modem.png
ocsinventory-server-1.3.2/ocsreports/image/norm_right_on.gif
ocsinventory-server-1.3.2/ocsreports/image/son_d.png
ocsinventory-server-1.3.2/ocsreports/image/registre_a.png
ocsinventory-server-1.3.2/ocsreports/image/archive.png
ocsinventory-server-1.3.2/ocsreports/image/modif.png
ocsinventory-server-1.3.2/ocsreports/image/modif_all.png
ocsinventory-server-1.3.2/ocsreports/image/blanc.png
ocsinventory-server-1.3.2/ocsreports/image/rien.png
ocsinventory-server-1.3.2/ocsreports/image/disque.png
ocsinventory-server-1.3.2/ocsreports/image/logiciels_a.png
ocsinventory-server-1.3.2/ocsreports/image/norm_right_on.gif.png
ocsinventory-server-1.3.2/ocsreports/image/ttaff.png
ocsinventory-server-1.3.2/ocsreports/image/cal.gif
ocsinventory-server-1.3.2/ocsreports/image/pack_a.png
ocsinventory-server-1.3.2/ocsreports/image/reseau.png
ocsinventory-server-1.3.2/ocsreports/image/modif_tab.png
ocsinventory-server-1.3.2/ocsreports/image/ttmachines_a.png
ocsinventory-server-1.3.2/ocsreports/image/label.png
ocsinventory-server-1.3.2/ocsreports/image/doublons_a.png
ocsinventory-server-1.3.2/ocsreports/image/down.png
ocsinventory-server-1.3.2/ocsreports/image/son_a.png
ocsinventory-server-1.3.2/ocsreports/image/utilisateurs_.png
ocsinventory-server-1.3.2/ocsreports/image/ttmachinesred_a.png
ocsinventory-server-1.3.2/ocsreports/image/utilisateurOK_a.png
ocsinventory-server-1.3.2/ocsreports/image/suppv.png
ocsinventory-server-1.3.2/ocsreports/image/stockage.png
ocsinventory-server-1.3.2/ocsreports/image/fond_orig.png
ocsinventory-server-1.3.2/ocsreports/image/aide.png
ocsinventory-server-1.3.2/ocsreports/image/video_a.png
ocsinventory-server-1.3.2/ocsreports/image/moniteur.png
ocsinventory-server-1.3.2/ocsreports/image/port.png
ocsinventory-server-1.3.2/ocsreports/image/slot.png
ocsinventory-server-1.3.2/ocsreports/image/proch24.png
ocsinventory-server-1.3.2/ocsreports/image/message.gif
ocsinventory-server-1.3.2/ocsreports/image/moniteur_d.png
ocsinventory-server-1.3.2/ocsreports/image/imprimer.png
ocsinventory-server-1.3.2/ocsreports/image/supp.png
ocsinventory-server-1.3.2/ocsreports/image/registre.png
ocsinventory-server-1.3.2/ocsreports/image/agent.png
ocsinventory-server-1.3.2/ocsreports/image/pass.png
ocsinventory-server-1.3.2/ocsreports/image/controleur_a.png
ocsinventory-server-1.3.2/ocsreports/image/paquets_a.png
ocsinventory-server-1.3.2/ocsreports/image/configuration.png
ocsinventory-server-1.3.2/ocsreports/image/label_a.png
ocsinventory-server-1.3.2/ocsreports/image/registre_d.png
ocsinventory-server-1.3.2/ocsreports/image/memoire_a.png
ocsinventory-server-1.3.2/ocsreports/image/video_d.png
ocsinventory-server-1.3.2/ocsreports/image/recurrence_a.png
ocsinventory-server-1.3.2/ocsreports/image/interdit.jpg
ocsinventory-server-1.3.2/ocsreports/image/Gest_admin2.png
ocsinventory-server-1.3.2/ocsreports/opt_prolog.php
ocsinventory-server-1.3.2/ocsreports/dico.php
ocsinventory-server-1.3.2/ocsreports/label.php
ocsinventory-server-1.3.2/ocsreports/tele_activate.php
ocsinventory-server-1.3.2/ocsreports/resultats.php
ocsinventory-server-1.3.2/ocsreports/languages/
ocsinventory-server-1.3.2/ocsreports/languages/italian.png
ocsinventory-server-1.3.2/ocsreports/languages/english.png
ocsinventory-server-1.3.2/ocsreports/languages/turkish.png
ocsinventory-server-1.3.2/ocsreports/languages/russian.txt
ocsinventory-server-1.3.2/ocsreports/languages/german.txt
ocsinventory-server-1.3.2/ocsreports/languages/polish.png
ocsinventory-server-1.3.2/ocsreports/languages/turkish.txt
ocsinventory-server-1.3.2/ocsreports/languages/polish.txt
ocsinventory-server-1.3.2/ocsreports/languages/spanish.png
ocsinventory-server-1.3.2/ocsreports/languages/german.png
ocsinventory-server-1.3.2/ocsreports/languages/slovenian.txt
ocsinventory-server-1.3.2/ocsreports/languages/french.txt
ocsinventory-server-1.3.2/ocsreports/languages/french.png
ocsinventory-server-1.3.2/ocsreports/languages/italian.txt
ocsinventory-server-1.3.2/ocsreports/languages/hungarian.txt
ocsinventory-server-1.3.2/ocsreports/languages/brazilian_portuguese.txt
ocsinventory-server-1.3.2/ocsreports/languages/spanish.txt
ocsinventory-server-1.3.2/ocsreports/languages/brazilian_portuguese.png
ocsinventory-server-1.3.2/ocsreports/languages/hungarian.png
ocsinventory-server-1.3.2/ocsreports/languages/russian.png
ocsinventory-server-1.3.2/ocsreports/languages/portuguese.txt
ocsinventory-server-1.3.2/ocsreports/languages/portuguese.png
ocsinventory-server-1.3.2/ocsreports/languages/english.txt
ocsinventory-server-1.3.2/ocsreports/languages/slovenian.png
ocsinventory-server-1.3.2/ocsreports/server_redistrib.php
ocsinventory-server-1.3.2/ocsreports/libraries/
ocsinventory-server-1.3.2/ocsreports/libraries/zip.lib.php
ocsinventory-server-1.3.2/ocsreports/ajout_maj.php
ocsinventory-server-1.3.2/ocsreports/favicon.ico
ocsinventory-server-1.3.2/ocsreports/security.php
ocsinventory-server-1.3.2/ocsreports/reqRegistre.php
ocsinventory-server-1.3.2/ocsreports/users.php
ocsinventory-server-1.3.2/ocsreports/tele_package.php
ocsinventory-server-1.3.2/ocsreports/tele_actives.php
ocsinventory-server-1.3.2/ocsreports/header.php
ocsinventory-server-1.3.2/ocsreports/popup_rules_redistribution.php
ocsinventory-server-1.3.2/ocsreports/groups.php
ocsinventory-server-1.3.2/ocsreports/opt_frequency.php
ocsinventory-server-1.3.2/ocsreports/confiGale.php
ocsinventory-server-1.3.2/ocsreports/install.php
ocsinventory-server-1.3.2/ocsreports/donAdmini.php
ocsinventory-server-1.3.2/ocsreports/fichierConf.class.php
ocsinventory-server-1.3.2/ocsreports/multicritere.php
ocsinventory-server-1.3.2/ocsreports/cvs.php
ocsinventory-server-1.3.2/ocsreports/tele_massaffect.php
ocsinventory-server-1.3.2/ocsreports/ipdiscover.php
ocsinventory-server-1.3.2/ocsreports/require/
ocsinventory-server-1.3.2/ocsreports/require/function_table_html.php
ocsinventory-server-1.3.2/ocsreports/require/function_rules.php
ocsinventory-server-1.3.2/ocsreports/require/function_server.php
ocsinventory-server-1.3.2/ocsreports/require/function_opt_param.php
ocsinventory-server-1.3.2/ocsreports/require/function_dico.php
ocsinventory-server-1.3.2/ocsreports/require/function_config_generale.php
ocsinventory-server-1.3.2/ocsreports/blacklist.php
ocsinventory-server-1.3.2/Apache/
ocsinventory-server-1.3.2/Apache/MANIFEST
ocsinventory-server-1.3.2/Apache/Ocsinventory/
ocsinventory-server-1.3.2/Apache/Ocsinventory/Server/
ocsinventory-server-1.3.2/Apache/Ocsinventory/Server/System.pm
ocsinventory-server-1.3.2/Apache/Ocsinventory/Server/Modperl2.pm
ocsinventory-server-1.3.2/Apache/Ocsinventory/Server/Inventory/
ocsinventory-server-1.3.2/Apache/Ocsinventory/Server/Inventory/Capacities.pm
ocsinventory-server-1.3.2/Apache/Ocsinventory/Server/Inventory/Update.pm
ocsinventory-server-1.3.2/Apache/Ocsinventory/Server/Inventory/Export.pm
ocsinventory-server-1.3.2/Apache/Ocsinventory/Server/Inventory/Data.pm
ocsinventory-server-1.3.2/Apache/Ocsinventory/Server/Inventory/Filter.pm
ocsinventory-server-1.3.2/Apache/Ocsinventory/Server/Inventory/Cache.pm
ocsinventory-server-1.3.2/Apache/Ocsinventory/Server/Inventory/Update/
ocsinventory-server-1.3.2/Apache/Ocsinventory/Server/Inventory/Update/Hardware.pm
ocsinventory-server-1.3.2/Apache/Ocsinventory/Server/Inventory/Update/AccountInfos.pm
ocsinventory-server-1.3.2/Apache/Ocsinventory/Server/Constants.pm
ocsinventory-server-1.3.2/Apache/Ocsinventory/Server/System/
ocsinventory-server-1.3.2/Apache/Ocsinventory/Server/System/Config.pm
ocsinventory-server-1.3.2/Apache/Ocsinventory/Server/Communication/
ocsinventory-server-1.3.2/Apache/Ocsinventory/Server/Communication/Session.pm
ocsinventory-server-1.3.2/Apache/Ocsinventory/Server/Communication.pm
ocsinventory-server-1.3.2/Apache/Ocsinventory/Server/Modperl1.pm
ocsinventory-server-1.3.2/Apache/Ocsinventory/Server/Inventory.pm
ocsinventory-server-1.3.2/Apache/Ocsinventory/Server/Capacities/
ocsinventory-server-1.3.2/Apache/Ocsinventory/Server/Capacities/Registry.pm
ocsinventory-server-1.3.2/Apache/Ocsinventory/Server/Capacities/Notify.pm
ocsinventory-server-1.3.2/Apache/Ocsinventory/Server/Capacities/Example.pm
ocsinventory-server-1.3.2/Apache/Ocsinventory/Server/Capacities/Ipdiscover.pm
ocsinventory-server-1.3.2/Apache/Ocsinventory/Server/Capacities/Update.pm
ocsinventory-server-1.3.2/Apache/Ocsinventory/Server/Capacities/Download/
ocsinventory-server-1.3.2/Apache/Ocsinventory/Server/Capacities/Download/Inventory.pm
ocsinventory-server-1.3.2/Apache/Ocsinventory/Server/Capacities/Filter.pm
ocsinventory-server-1.3.2/Apache/Ocsinventory/Server/Capacities/Download.pm
ocsinventory-server-1.3.2/Apache/Ocsinventory/Server/Duplicate.pm
ocsinventory-server-1.3.2/Apache/Ocsinventory/Server/Groups.pm
ocsinventory-server-1.3.2/Apache/Ocsinventory/SOAP.pm
ocsinventory-server-1.3.2/Apache/Ocsinventory/Interface/
ocsinventory-server-1.3.2/Apache/Ocsinventory/Interface/Internals.pm
ocsinventory-server-1.3.2/Apache/Ocsinventory/Interface/History.pm
ocsinventory-server-1.3.2/Apache/Ocsinventory/Interface/Updates.pm
ocsinventory-server-1.3.2/Apache/Ocsinventory/Interface/Database.pm
ocsinventory-server-1.3.2/Apache/Ocsinventory/Interface/Ipdiscover.pm
ocsinventory-server-1.3.2/Apache/Ocsinventory/Interface/Extensions.pm
ocsinventory-server-1.3.2/Apache/Ocsinventory/Interface/Inventory.pm
ocsinventory-server-1.3.2/Apache/Ocsinventory/Interface/Config.pm
ocsinventory-server-1.3.2/Apache/Ocsinventory/Map.pm
ocsinventory-server-1.3.2/Apache/Ocsinventory/Interface.pm
ocsinventory-server-1.3.2/Apache/Changes
ocsinventory-server-1.3.2/Apache/Ocsinventory.pm
ocsinventory-server-1.3.2/Apache/INSTALL
ocsinventory-server-1.3.2/Apache/LICENSE
ocsinventory-server-1.3.2/Apache/Makefile.PL
ocsinventory-server-1.3.2/ChangeLog-server
ocsinventory-server-1.3.2/LICENSE.txt

+----------------------------------------------------------+
| |
| Welcome to OCS Inventory NG Management server setup ! |
| |
+----------------------------------------------------------+

CAUTION: If upgrading Communication server from OCS Inventory NG 1.0 RC2 and
previous, please remove any Apache configuration for Communication Server!

Do you wish to continue ([y]/n)?
Assuming Communication server 1.0 RC2 or previous is not installed
on this computer.

Starting OCS Inventory NG Management server setup from folder /root/glpi/ocsinventory-server-1.3.2
Storing log in file /root/glpi/ocsinventory-server-1.3.2/ocs_server_setup.log

+----------------------------------------------------------+
| Checking for database server properties... |
+----------------------------------------------------------+

Your MySQL client seems to be part of MySQL version 5.1.
Your computer seems to be running MySQL 4.1 or higher, good ;-)

Which host is running database server [localhost] ?
OK, database server is running on host localhost ;-)

On which port is running database server [3306] ?
OK, database server is running on port 3306 ;-)


+----------------------------------------------------------+
| Checking for Apache web server daemon... |
+----------------------------------------------------------+

Where is Apache daemon binary [/usr/sbin/httpd] ?
+----------------------------------------------------------+
| Checking for Apache main configuration file... |
+----------------------------------------------------------+

Where is Apache main configuration file [/etc/httpd/conf/httpd.conf] ?
OK, using Apache main configuration file /etc/httpd/conf/httpd.conf ;-)


+----------------------------------------------------------+
| Checking for Apache user account... |
+----------------------------------------------------------+

Which user account is running Apache web server [apache] ?
OK, Apache is running under user account apache ;-)


+----------------------------------------------------------+
| Checking for Apache group... |
+----------------------------------------------------------+

Which user group is running Apache web server [apache] ?
OK, Apache is running under users group apache ;-)


+----------------------------------------------------------+
| Checking for Apache Include configuration directory... |
+----------------------------------------------------------+

Setup found Apache Include configuration directory in
/etc/httpd/conf.d/.
Setup will put OCS Inventory NG Apache configuration in this directory.
Where is Apache Include configuration directory [/etc/httpd/conf.d/] ?
OK, Apache Include configuration directory /etc/httpd/conf.d/ found ;-)


+----------------------------------------------------------+
| Checking for PERL Interpreter... |
+----------------------------------------------------------+

Found PERL Intrepreter at </usr/bin/perl> ;-)
Where is PERL Intrepreter binary [/usr/bin/perl] ?
OK, using PERL Intrepreter /usr/bin/perl ;-)


Do you wish to setup Communication server on this computer ([y]/n)?
+----------------------------------------------------------+
| Checking for Make utility... |
+----------------------------------------------------------+

OK, Make utility found at </usr/bin/make> ;-)

+----------------------------------------------------------+
| Checking for Apache mod_perl version... |
+----------------------------------------------------------+

Checking for Apache mod_perl version 1.99_22 or higher
Found that mod_perl version 1.99_22 or higher is available.
OK, Apache is using mod_perl version 1.99_22 or higher ;-)

+----------------------------------------------------------+
| Checking for Communication server log directory... |
+----------------------------------------------------------+

Communication server can create detailled logs. This logs can be enabled
by setting interger value of LOGLEVEL to 1 in Administration console
menu Configuration.
Where to put Communication server log directory [/var/log/ocsinventory-server] ?
OK, Communication server will put logs into directory /var/log/ocsinventory-server ;-)


+----------------------------------------------------------+
| Checking for required Perl Modules... |
+----------------------------------------------------------+

Checking for DBI PERL module...
Found that PERL module DBI is available.
Checking for Apache::DBI PERL module...
Found that PERL module Apache::DBI is available.
Checking for DBD::mysql PERL module...
Found that PERL module DBD::mysql is available.
Checking for Compress::Zlib PERL module...
Found that PERL module Compress::Zlib is available.
Checking for XML::Simple PERL module...
Found that PERL module XML::Simple is available.
Checking for Net::IP PERL module...
Found that PERL module Net::IP is available.

+----------------------------------------------------------+
| Checking for optional Perl Modules... |
+----------------------------------------------------------+

Checking for SOAP::Lite PERL module...
Found that PERL module SOAP::Lite is available.
Checking for XML::Entities PERL module...
Found that PERL module XML::Entities is available.


+----------------------------------------------------------+
| OK, looks good ;-) |
| |
| Configuring Communication server Perl modules... |
+----------------------------------------------------------+

Checking if your kit is complete...
Looks good
Writing Makefile for Apache::Ocsinventory

+----------------------------------------------------------+
| OK, looks good ;-) |
| |
| Preparing Communication server Perl modules... |
+----------------------------------------------------------+


+----------------------------------------------------------+
| OK, prepare finshed ;-) |
| |
| Installing Communication server Perl modules... |
+----------------------------------------------------------+


+----------------------------------------------------------+
| OK, Communication server Perl modules install finished;-)|
| |
| Creating Communication server log directory... |
+----------------------------------------------------------+

Creating Communication server log directory /var/log/ocsinventory-server.

Fixing Communication server log directory files permissions.
Configuring logrotate for Communication server.
/root/glpi/ocsinventory-server-1.3.2
Removing old communication server logrotate file /etc/logrotate.d/ocsinventory-NG
Writing communication server logrotate to file /etc/logrotate.d/ocsinventory-server


+----------------------------------------------------------+
| OK, Communication server log directory created ;-) |
| |
| Now configuring Apache web server... |
+----------------------------------------------------------+

To ensure Apache loads mod_perl before OCS Inventory NG Communication Server,
Setup can name Communication Server Apache configuration file
'z-ocsinventory-server.conf' instead of 'ocsinventory-server.conf'.
Do you allow Setup renaming Communication Server Apache configuration file
to 'z-ocsinventory-server.conf' ([y]/n) ?
OK, using 'z-ocsinventory-server.conf' as Communication Server Apache configuration file
Removing old communication server configuration to file /etc/httpd/conf.d//ocsinventory.conf
Writing communication server configuration to file /etc/httpd/conf.d//z-ocsinventory-server.conf

+----------------------------------------------------------+
| OK, Communication server setup sucessfully finished ;-) |
| |
| Please, review /etc/httpd/conf.d//z-ocsinventory-server.conf
| to ensure all is good. Then restart Apache daemon. |
+----------------------------------------------------------+


Do you wish to setup Administration Server (Web Administration Console)
on this computer ([y]/n)?
+----------------------------------------------------------+
| Checking for Administration Server directories... |
+----------------------------------------------------------+

CAUTION: Setup now install files in accordance with Filesystem Hierarchy
Standard. So, no file is installed under Apache root document directory
(Refer to Apache configuration files to locate it).
If you're upgrading from OCS Inventory NG Server 1.01 and previous, YOU
MUST REMOVE (or move) directories 'ocsreports' and 'download' from Apache
root document directory.
If you choose to move directory, YOU MUST MOVE 'download' directory to
Administration Server writable/cache directory (by default
/var/lib/ocsinventory-reports), especialy if you use deployement feature.

Do you wish to continue ([y]/n)?
Assuming directories 'ocsreports' and 'download' removed from
Apache root document directory.

Where to copy Administration Server static files for PHP Web Console
[/usr/share/ocsinventory-reports] ?
OK, using directory /usr/share/ocsinventory-reports to install static files ;-)
Where to create writable/cache directories for deployement packages and
IPDiscover [/var/lib/ocsinventory-reports] ?


Communication server can create detailled logs. This logs can be enabled
by setting interger value of LOGLEVEL to 1 in Administration console
menu Configuration.
Where to put Communication server log directory [/var/log/ocsinventory-server] ?

.......省略
Stopping httpd: [ OK ]
Starting httpd: httpd: Could not reliably determine the server's fully qualified domain name, using localhost.localdomain for ServerName
[ OK ]
4.安裝好之後客戶端windows xp直接打開ie 輸入http://ip就會進入安裝界面

650) this.width=650;">

5.同意許可繼續

650) this.width=650;">

6.選擇設施因為第一次安裝。

650) this.width=650;">

7.步驟一檢查目錄權限因為腳本中已經chmod 777了所以這裡直接繼續即可。

650) this.width=650;">

8.步驟一輸入localhost,mysql user root 密碼在腳本中123456具體密碼難度可以自己設置。

650) this.width=650;">

9.步驟2測試連接數據庫,因為在腳本中已經創建了glpi,所以這裡選擇glpi,如果沒有可以直接用web來創建一個。

650) this.width=650;">

10.步驟3初始化數據庫繼續。

650) this.width=650;">

11.第4部設施完成了以下為常用的用戶和密碼。

650) this.width=650;">

12.點擊使用glpi 進入身份驗證界面輸入glpi glpi即可。

650) this.width=650;">

13.這個是進入的界面裡面有許多選項大家自己慢慢研究。

650) this.width=650;">總結剛開始是用手動安裝的遇到的問題如下:

1.剛開始因為yum -y 沒裝make所以不能make

2.yum -y install的時候因為沒裝 php-mbstring ,所以在web安裝的時候出現

650) this.width=650;">

3.因為網上的一些資料並不是很完整,所以遇到很多問題,在perl的時候或者make test的時候經常出現問題。

4.其實有些make test的時候出現問題並沒有什麼關系,剛開始還以為會出現問題。其實有些是可以忽略的。

為了方便大家所以自己寫了一個全自動安裝的腳本,對於一些部署網站的網友有幫助。

Copyright © Linux教程網 All Rights Reserved