- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
nginx安装配置集成weblogic(20131107更新红色背景内容)
简介
Nginx(发音同 engine x)是一款轻量级的Web 服务器/反向代理服务器及电子邮件(IMAP/POP3)代理服务器,并在一个BSD-like 协议下发行。由俄罗斯的程序设计师Igor Sysoev所开发,供俄国大型的入口网站及搜索引擎Rambler(俄文:Рамблер)使用。其特点是占有内存少,并发能力强,事实上nginx的并发能力确实在同类型的网页服务器中表现较好,中国大陆使用nginx网站用户有:新浪、网易、 腾讯等。/cn/
yum配置
将光盘内容拷贝到/mnt/redhat5.5目录下
[root@localhost redhat5.5]# cp -fr /media/RHEL_5.5\ x86_64\ DVD/* /mnt/redhat5.5 #把光盘未见拷贝至root根目录下的mnt文件下的redhat5.5中createrepo(linux下的创建仓库的软件包[root@localhost redhat5.5]# rpm -qa |grep createrepo #如果装了显示版本号;未装则结果为空
1)安装createrepo
[root@localhost redhat5.5]# cd Server/
[root@localhost Server]# pwd
/mnt/redhat5.5/Server
[root@localhost Server]# rpm -ivh ./createrepo-0.4.11-3.el5.noarch.rpm
warning: ./createrepo-0.4.11-3.el5.noarch.rpm: Header V3 DSA signature: NOKEY, key IDPreparing... ########################################### [100%]
1:createrepo ########################################### [100%]
[root@localhost Server]#
检查安装结果
[root@localhost Server]# rpm -qa |grep createrepo
createrepo-0.4.11-3.el5
创建YUM仓库
[root@localhost Server]# createrepo -g /mnt/redhat5.5/Server/repodata/comps-rhel5-server-core.xml /mnt/redhat5.5/Server
[root@localhost Server]# createrepo -g /mnt/redhat5.5/VT/repodata/comps-rhel5-vt.xml /mnt/redhat5.5/VT/
[root@localhost Server]# createrepo -g /mnt/redhat5.5/Cluster/repodata/comps-rhel5-cluster.xml /mnt/redhat5.5/Cluster/
[root@localhost Server]#createrepo -g /mnt/redhat5.5/ClusterStorage/repodata/comps-rhel5-cluster-st.xml /mnt/redhat5.5/ClusterStorage/
创建本地yum客户端的repo文件
[root@localhost yum.repos.d]# cd /etc/yum.repos.d/
[root@localhost yum.repos.d]# vi local.repo
内容如下:
[local]
name=hntl
baseurl=file:///mnt/redhat5.5/Server
gpgcheck=0
enabled=1
[VT]
name=VT
baseurl=file:///mnt/redhat5.5/VT
gpgcheck=0
[Cluster]
name= Cluster
baseurl=file:///mnt/redhat5.5/Cluster
gpgcheck=0
[CS]
name= ClusterStorage
baseurl=file:///mnt/redhat5.5/ClusterStorage
gpgcheck=0
Yum 安装验证
[root@localhost yum.repos.d]# yum install samba
以下命令自己学习
1.使用Y
文档评论(0)