设为首页 收藏本站
查看: 1419|回复: 6

[经验分享] 构建LAMP网站平台的安装全过程

[复制链接]

尚未签到

发表于 2013-3-15 09:21:40 | 显示全部楼层 |阅读模式
本帖最后由 link 于 2013-3-15 09:24 编辑

准备实验环境:


两台虚拟机:


第一台做DNS服务器解析域名。


第二台做LAMP网站服务平台。


搭建DNS服务:


1、配置IP地址


[iyunv@localhost ~]# ifconfig
eth0      Link encap:Ethernet  HWaddr 00:0C:29:26:05:59  
          inet addr:1.1.1.1  Bcast:1.1.1.255  Mask:255.255.255.0
          inet6 addr: fe80::20c:29ff:fe26:559/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:35 errors:0 dropped:0 overruns:0 frame:0
          TX packets:76 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:7326 (7.1 KiB)  TX bytes:12588 (12.2 KiB)
          Interrupt:59 Base address:0x2024


lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:16436  Metric:1
          RX packets:12 errors:0 dropped:0 overruns:0 frame:0
          TX packets:12 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:900 (900.0 b)  TX bytes:900 (900.0 b)


2、安装BIND相关软件包


[iyunv@localhost ~]# mount -o loop /dev/cdrom /media/
[iyunv@localhost ~]# cd /media/Server/
[iyunv@localhost Server]# rpm -ivh bind-9.3.6-4.P1.el5_4.2.i386.rpm
error: failed to stat /media/RHEL_5.5 i386 DVD: 没有那个文件或目录
Preparing...                ########################################### [100%]
   1:bind                   ########################################### [100%]
[iyunv@localhost Server]# rpm -ivh caching-nameserver-9.3.6-4.P1.el5_4.2.i386.rpm
error: failed to stat /media/RHEL_5.5 i386 DVD: 没有那个文件或目录
Preparing...                ########################################### [100%]
   1:caching-nameserver     ########################################### [100%]
[iyunv@localhost Server]# rpm -ivh bind-chroot-9.3.6-4.P1.el5_4.2.i386.rpm
error: failed to stat /media/RHEL_5.5 i386 DVD: 没有那个文件或目录
Preparing...                ########################################### [100%]
   1:bind-chroot            ########################################### [100%]
[iyunv@localhost Server]# rpm -ivh bind-utils-9.3.6-4.P1.el5_4.2.i386.rpm
error: failed to stat /media/RHEL_5.5 i386 DVD: 没有那个文件或目录
Preparing...                ########################################### [100%]
        package bind-utils-9.3.6-4.P1.el5_4.2.i386 is already installed


3、通过模板修改主配置文件


[iyunv@localhost Server]# cd /var/named/chroot/etc/
[iyunv@localhost etc]# cp -p named.caching-nameserver.conf named.conf
[iyunv@localhost etc]# vim named.conf


options {
        listen-on port 53 { any; };
        listen-on-v6 port 53 { ::1; };
        directory       "/var/named";
        dump-file       "/var/named/data/cache_dump.db";
        statistics-file "/var/named/data/named_stats.txt";
        memstatistics-file "/var/named/data/named_mem_stats.txt";


        allow-query     { any; };
        allow-query-cache { any; };
};
logging {
        channel default_debug {
                file "data/named.run";
                severity dynamic;
        };
};
view localhost_resolver {
        match-clients      { any; };
        match-destinations { any; };
        recursion yes;
        include "/etc/named.rfc1912.zones";
};


4、修改区域文件


[iyunv@localhost etc]# vim named.rfc1912.zones


zone "" IN {
        type master;
        file "yunvn.com.zone";
        allow-update { none; };
};


zone "csdn.com" IN {
        type master;
        file "csdn.com.zone";
        allow-update { none; };
};


5、通过模板、修改正向解析文件(反向解析不用做。)


[iyunv@localhost etc]# cd /var/named/chroot/var/named/
[iyunv@localhost named]# cp -p localhost.zone yunvn.com.zone
[iyunv@localhost named]# vim yunvn.com.zone




$TTL    86400
@               IN SOA  yunvn.com.       root (
                                        42              ; serial (d. adams)
                                        3H              ; refresh
                                        15M             ; retry
                                        1W              ; expiry
                                        1D )            ; minimum


                IN NS           ns1.yunvn.com.
                IN MX 10        mail.yunvn.com.
ns1             IN A            1.1.1.1
mail            IN A            1.1.1.1
www             IN A            1.1.1.2


[iyunv@localhost named]# cp -p yunvn.com.zone csdn.com.zone
[iyunv@localhost named]# vim csdn.com.zone




$TTL    86400
@               IN SOA  csdn.com.       root (
                                        42              ; serial (d. adams)
                                        3H              ; refresh
                                        15M             ; retry
                                        1W              ; expiry
                                        1D )            ; minimum


                IN NS           ns1.csdn.com.
                IN MX 10        mail.csdn.com.
ns1             IN A            1.1.1.1
mail            IN A            1.1.1.1
www             IN A            1.1.1.2


6、重新启动服务


[iyunv@localhost named]# service named restart
停止 named:                                               [确定]
启动 named:                                               [确定]


7、去LAMP服务器上测试效果


[iyunv@localhost /]# ifconfig
eth0      Link encap:Ethernet  HWaddr 00:0C:29:63:9D:6B  
          inet addr:1.1.1.2  Bcast:1.1.1.255  Mask:255.255.255.0
          inet6 addr: fe80::20c:29ff:fe63:9d6b/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:56 errors:0 dropped:0 overruns:0 frame:0
          TX packets:131 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:9188 (8.9 KiB)  TX bytes:21947 (21.4 KiB)
          Interrupt:59 Base address:0x2024


lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:16436  Metric:1
          RX packets:42 errors:0 dropped:0 overruns:0 frame:0
          TX packets:42 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:3760 (3.6 KiB)  TX bytes:3760 (3.6 KiB)


[iyunv@localhost /]# vim /etc/resolv.conf


search yunvn.com
nameserver 1.1.1.1


[iyunv@localhost /]# nslookup
> www.yunvn.com
Server:         1.1.1.1
Address:        1.1.1.1#53


Name:   www.yunvn.com
Address: 1.1.1.2
> www.csdn.com
Server:         1.1.1.1
Address:        1.1.1.1#53


Name:   www.csdn.com
Address: 1.1.1.2


8、搭建完成。


搭建LAMP网站服务平台:


一、配置Apache服务:


1、查看IP地址:


2、安装Apache服务


[iyunv@localhost /]# mount -o loop /dev/cdrom /media/
[iyunv@localhost /]# cd /media/
[iyunv@localhost media]# tar -zxf httpd-2.2.16.tar.gz -C /usr/src/
[iyunv@localhost /]# cd /usr/src/httpd-2.2.16/
[iyunv@localhost httpd-2.2.16]# ls
ABOUT_APACHE  config.layout  httpd.spec      Makefile.win      ROADMAP
acinclude.m4  config.log     include         modules           server
Apache.dsw    config.nice    INSTALL         NOTICE            srclib
build         configure      InstallBin.dsp  NWGNUmakefile     support
BuildAll.dsp  configure.in   LAYOUT          os                test
BuildBin.dsp  docs           libhttpd.dsp    README            VERSIONING
buildconf     emacs-style    LICENSE         README.platforms
CHANGES       httpd.dsp      Makefile.in     README-win32.txt
[iyunv@localhost httpd-2.2.16]# ./configure \
> --prefix=/usr/local/apache2 \
> --enable-so \
> --enable-rewrite \
> --enable-ssl \
> --with-ssl=/usr/lib \
> --enable-auth-digest \
> --enable-cgi \
> --enable-suexec \
> --with-suexec-caller=daemon \
> --with-suexec-docroot=/usr/local/apache2/htdocs


config.status: creating support/dbmmanage
config.status: creating support/envvars-std
config.status: creating support/log_server_status
config.status: creating support/logresolve.pl
config.status: creating support/phf_abuse_log.cgi
config.status: creating support/split-logfile
config.status: creating build/rules.mk
config.status: creating build/pkg/pkginfo
config.status: creating build/config_vars.sh
config.status: creating include/ap_config_auto.h
config.status: executing default commands


[iyunv@localhost httpd-2.2.16]# make && make install


Installing header files
Installing build system files
Installing man pages and online manual
mkdir /usr/local/apache2/man
mkdir /usr/local/apache2/man/man1
mkdir /usr/local/apache2/man/man8
mkdir /usr/local/apache2/manual
make[1]: Leaving directory `/usr/src/httpd-2.2.16'


3、开启服务、测试网站是否工作


[iyunv@localhost httpd-2.2.16]# vim /usr/local/apache2/conf/httpd.conf


92 # This can often be determined automatically, but we recommend you specify
93 # it explicitly to prevent problems during startup.
94 #
95 # If your host doesn't have a registered DNS name, enter its IP address here    .
96 #
97 ServerName www.yunvn.com
98
99 #
100 # DocumentRoot: The directory out of which you will serve your
101 # documents. By default, all requests are taken from this directory, but
102 # symbolic links and aliases may be used to point to other locations.


[iyunv@localhost httpd-2.2.16]# /usr/local/apache2/bin/apachectl start

150741460.jpg

4、网站搭建完成。


二、配置Mysql:


1、rpm安装mysql到指定目录再用源码包安装。


[iyunv@localhost httpd-2.2.16]# mount -o loop /dev/cdrom /media/
[iyunv@localhost httpd-2.2.16]# cd /media/
[iyunv@localhost media]# ls
4discuzx15               mhash-0.9.9.9.tar.bz2
awstats-6.95.tar.gz      MySQL-community-5.1.50-1.rhel5.src.rpm
config.txt               php-5.3.3.tar.gz
Discuz_X1.5_SC_UTF8.zip  phpMyAdmin-3.3.6-all-languages.tar.gz
fish                     tuzki
httpd-2.2.16.tar.gz      wuwangwo_cc_jspvz
libmcrypt-2.5.8.tar.gz   绿色表情
mcrypt-2.6.8.tar.gz


[iyunv@localhost media]# rpm -ivh MySQL-community-5.1.50-1.rhel5.src.rpm
error: cannot create %sourcedir /usr/src/redhat/SOURCES
[iyunv@localhost media]# mkdir -p /usr/src/redhat/SOURCES
[iyunv@localhost media]# cd /usr/src/redhat/
[iyunv@localhost redhat]# chmod 777 SOURCES/


[iyunv@localhost media]# rpm -ivh MySQL-community-5.1.50-1.rhel5.src.rpm
   1:MySQL-community        warning: user mysqldev does not exist - using root
warning: group mysqldev does not exist - using root
warning: user mysqldev does not exist - using root
warning: group mysqldev does not exist - using root
########################################### [100%]


[iyunv@localhost media]# cd /usr/src/redhat/SOURCES/
[iyunv@localhost SOURCES]# ls
mysql-5.1.50.tar.gz
[iyunv@localhost SOURCES]# tar -zxf mysql-5.1.50.tar.gz -C /usr/src/


2、配置 编译 安装Mysql服务 (编译和安装都需要等待很长时间)


[iyunv@localhost mysql-5.1.50]# ./configure --prefix=/usr/local/mysql && make && make install


Making install in win
make[1]: Entering directory `/usr/src/mysql-5.1.50/win'
make[2]: Entering directory `/usr/src/mysql-5.1.50/win'
make[2]: Nothing to be done for `install-exec-am'.
make[2]: Nothing to be done for `install-data-am'.
make[2]: Leaving directory `/usr/src/mysql-5.1.50/win'
make[1]: Leaving directory `/usr/src/mysql-5.1.50/win'


编译成功


3、创建运行Mysql的系统用户和组


[iyunv@localhost mysql-5.1.50]# useradd -M -s /sbin/nologin mysql


4、建立配置文件


[iyunv@localhost mysql-5.1.50]# cp support-files/my-medium.cnf /etc/my.cnf


5、初始化数据库


[iyunv@localhost mysql-5.1.50]# /usr/local/mysql/bin/mysql_install_db --user=mysql


[iyunv@localhost mysql-5.1.50]# chown -R root.mysql /usr/local/mysql/
[iyunv@localhost mysql-5.1.50]# chown -R mysql /usr/local/mysql/var/


6、调整lib库路径


[iyunv@localhost mysql-5.1.50]# echo "/usr/local/mysql/lib/mysql/" >> /etc/ld.so.conf
[iyunv@localhost mysql-5.1.50]# ldconfig


7、使用mysql_safe脚本安全启动服务


[iyunv@localhost mysql-5.1.50]# /usr/local/mysql/bin/mysqld_safe --user=mysql &
[1] 6797
[iyunv@localhost mysql-5.1.50]# 130314 00:31:55 mysqld_safe Logging to '/usr/local/mysql/var/localhost.localdomain.err'.
130314 00:31:55 mysqld_safe Starting mysqld daemon with databases from /usr/local/mysql/var


8、将mysqld添加为系统服务


[iyunv@localhost mysql-5.1.50]# cp support-files/mysql.server /etc/init.d/mysqld
[iyunv@localhost mysql-5.1.50]# chmod +x /etc/init.d/mysqld
[iyunv@localhost mysql-5.1.50]# chkconfig --add mysqld
[iyunv@localhost mysql-5.1.50]# chkconfig mysqld on


9、设置Mysql的执行路径


[iyunv@localhost mysql-5.1.50]# export PATH=$PATH:/usr/local/mysql/bin/
[iyunv@localhost mysql-5.1.50]# echo "PATH=$PATH:/user/local/mysql/bin" >> /etc/profile


10、安装完成 登陆测试


[iyunv@localhost mysql-5.1.50]# mysql -u root
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.1.50-log Source distribution


Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
This software comes with ABSOLUTELY NO WARRANTY. This is free software,
and you are welcome to modify and redistribute it under the GPL v2 license


Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.


mysql>


三、配置PHP


1、配置PHP源码包


[iyunv@localhost media]# tar -zxf php-5.3.3.tar.gz -C /usr/src/
[iyunv@localhost media]# cd /usr/src/php-5.3.3/
[iyunv@localhost php-5.3.3]# ./configure \
> --prefix=/usr/local/php5 \
> --enable-mbstring \        
> --with-apxs2=/usr/local/apache2/bin/apxs \
> --with-mysql=/usr/local/mysql \
> --with-config-file-path=/usr/local/php5


+--------------------------------------------------------------------+
| License:                                                           |
| This software is subject to the PHP License, available in this     |
| distribution in the file LICENSE.  By continuing this installation |
| process, you are bound by the terms of this license agreement.     |
| If you do not agree with the terms of this license, you must abort |
| the installation process at this point.                            |
+--------------------------------------------------------------------+


Thank you for using PHP.


2、编译、安装PHP源码包


[iyunv@localhost php-5.3.3]# make && make install


Wrote PEAR system config file at: /usr/local/php5/etc/pear.conf
You may want to add: /usr/local/php5/lib/php to your php.ini include_path
/usr/src/php-5.3.3/build/shtool install -c ext/phar/phar.phar /usr/local/php5/bin
ln -s -f /usr/local/php5/bin/phar.phar /usr/local/php5/bin/phar
Installing PDO headers:          /usr/local/php5/include/php/ext/pdo/


3、复制php.ini配置文件


[iyunv@localhost php-5.3.3]# cp php.ini-production /usr/local/php5/php.ini


4、设置httpd.conf文件


[iyunv@localhost php-5.3.3]# vim /usr/local/apache2/conf/httpd.conf


50 #
51 # Example:
52 # LoadModule foo_module modules/mod_foo.so
53 LoadModule php5_module        modules/libphp5.so
54 #
55
56 <IfModule !mpm_netware_module>
57 <IfModule !mpm_winnt_module>
58 #


160 </Directory>
161
162 #
163 # DirectoryIndex: sets the file that Apache will serve if a directory
164 # is requested.
165 #
166 <IfModule dir_module>
167     DirectoryIndex index.php  index.html
168 </IfModule>
169
170 #


301     #
302     #AddEncoding x-compress .Z
303     #AddEncoding x-gzip .gz .tgz
304     #
305     # If the AddEncoding directives above are commented-out, then you
306     # probably should define those extensions to indicate media types:
307     #
308     AddType application/x-compress .Z
309     AddType application/x-gzip .gz .tgz
310     ADDType application/x-httpd-php .php
311      


[iyunv@localhost php-5.3.3]# /usr/local/apache2/bin/apachectl stop
[iyunv@localhost php-5.3.3]# /usr/local/apache2/bin/apachectl start


5、安装完成 测试PHP与Apache的协同工作


[iyunv@localhost php-5.3.3]# vim /usr/local/apache2/htdocs/test.php


<?php
phpinfo();
?>

150906235.jpg


6、安装完成  测试PHP与Mysql数据库的协同工作


[iyunv@localhost php-5.3.3]# vim /usr/local/apache2/htdocs/tesdb.php


<?php
$link=mysql_connect("localhost","test","");
if(!$link) echo "Fail !!";
else echo "Success !!";
mysql=close();
?>

150932121.jpg


运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-3972-1-1.html 上篇帖子: 用apache搭建web服务器 下篇帖子: apache设置域名绑定 以及绑定不起作用的排查. 安装 平台
0

尚未签到

发表于 2013-3-17 19:27:47 | 显示全部楼层
爱护环境,人人有病。

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

尚未签到

发表于 2013-5-16 10:18:56 | 显示全部楼层
沒有激情的亲吻,哪來床上的翻滾?

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

尚未签到

发表于 2013-5-17 18:14:56 | 显示全部楼层
穿别人的鞋,走自己的路,让他们找去吧。

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

尚未签到

发表于 2013-5-19 07:20:06 | 显示全部楼层
内练一口气,外练一口屁。

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

尚未签到

发表于 2013-5-20 15:16:06 | 显示全部楼层
谢谢楼主,共同发展

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

尚未签到

发表于 2013-5-21 22:13:11 | 显示全部楼层
生我之前谁是我,生我之后我是谁?

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表