- 浏览: 160438 次
- 性别:
- 来自: 大连->北京
文章分类
最新评论
-
netkongjian:
不错的界面控件知识,感谢分享!
界面测试 -
Tu_Bie:
赞一个。
servlet实现文件上传 -
心惶惶呀:
...
ORACLE和SQL语法区别归纳 -
ccfangle:
:idea:
我出现的原因是:标签重复了~
The content of element type "struts-config" must match 解决方案 -
zxl10059:
嗯,写的不错可以考虑自己写一个分页类page基本就可以明白是怎 ...
MySQL分页
1 、安装完 CentOS 5.3 之后,首先要保证可以上网,安装完 SSH ,并且打开。
2 、设置软件源
1 )、 CentOS 的网络源配置文件是:
/etc/yum.repos.d/ 下的 CentOS-Base.repo
本文提供其 5.3 版本的:网通,电信,第三方,163 源各一个
配置方法一般是:
① . 进入到repos.d 目录
$ cd
/etc/yum.repos.d
$ ls -l
总计 24
-rw-r--r-- 1 root root 802 2009-09-02
CentOS-Base.repo
-rw-r--r-- 1 root root 626 03-17 09:30 CentOS-Media.repo
② . 备份原来的源
$ mv CentOS-Base.repo CentOS-Base.repo.backup
③ . 用下面的内容,重新生成CentOS-Base.repo
④ .$ yum update
2 )、广泛应用的 CentOS 的软件源
① . 国内某大学源(电信网通皆可使用)
[base]
name=CentOS-5 – Base
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever5&arch=$basearch&repo=os
#baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/
baseurl=http://ftp.sjtu.edu.cn/centos/5.3/os/$basearch/
gpgcheck=1
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos6
#released updates
[update]
name=CentOS-5 – Updates
#mirrorlist=http://mirrorlist.centos.org/?release=4&arch=$basearch&repo=updates
baseurl=http://ftp.sjtu.edu.cn/centos/5.3/updates/$basearch/
gpgcheck=1
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos5
#packages used/produced in the build but not released
[addons]
name=CentOS-5 – Addons
#mirrorlist=http://mirrorlist.centos.org/?release=4&arch=$basearch&repo=addons
baseurl=http://ftp.sjtu.edu.cn/centos/5.3/addons/$basearch/
② . 国内电信源
# CentOS-Base.repo
#
# This file uses a new mirrorlist system developed by Lance Davis for CentOS.
# The mirror system uses the connecting IP address of the client and the
# update status of each mirror to pick mirrors that are updated to and
# geographically close to the client. You should use this for CentOS
updates
# unless you are manually picking other mirrors.
#
# If the mirrorlist= does not work for you, as a fall back you can try the
# remarked out baseurl= line instead.
#
#
[base]
name=CentOS-$releasever – Base
baseurl=http://centos.ustc.edu.cn/centos/$releasever/os/$basearch/
gpgcheck=1
gpgkey=http://centos.ustc.edu.cn/centos/RPM-GPG-KEY-CentOS-5
#released updates
[updates]
name=CentOS-$releasever – Updates
baseurl=http://centos.ustc.edu.cn/centos/$releasever/updates/$basearch/
gpgcheck=1
gpgkey=http://centos.ustc.edu.cn/centos/RPM-GPG-KEY-CentOS-5
#packages used/produced in the build but not released
[addons]
name=CentOS-$releasever – Addons
baseurl=http://centos.ustc.edu.cn/centos/$releasever/addons/$basearch/
gpgcheck=1
gpgkey=http://centos.ustc.edu.cn/centos/RPM-GPG-KEY-CentOS-5
#additional packages that may be useful
[extras]
name=CentOS-$releasever – Extras
baseurl=http://centos.ustc.edu.cn/centos/$releasever/extras/$basearch/
gpgcheck=1
gpgkey=http://centos.ustc.edu.cn/centos/RPM-GPG-KEY-CentOS-5
#additional packages that extend functionality of existing packages
[centosplus]
name=CentOS-$releasever – Plus
baseurl=http://centos.ustc.edu.cn/centos/$releasever/centosplus/$basearch/
gpgcheck=1
enabled=0
gpgkey=http://centos.ustc.edu.cn/centos/RPM-GPG-KEY-CentOS-5
③ . 第三方源配置
在服务器构建的过程中,我们将要用到的一些工具不存在于CentOS 中yum 的官方库中,所以需要定义yum 的非官方库文件,让一些必需的工具通过yum 也能够安装。
[root@bestcar ~]#
vi /etc/yum.repos.d/dag.repo ←
建立dag.repo
,定义非官方库,内容如下5
行:
[dag]
name=Dag RPM Repository for Red Hat Enterprise Linux
baseurl=http://apt.sw.be/redhat/el$releasever/en/$basearch/dag
gpgcheck=1
enabled=1
[root@bestcar ~]# rpm –import
http://dag.wieers.com/rpm/packages/RPM-GPG-KEY.dag.txt ←
导入非官方库的GPG
或者有下面这种方式
#
设置rpmforge
源
rpm -Uhv http://apt.sw.be/redhat/el5/en/i386/rpmforge/RPMS/rpmforge-release-0.3.6-1.el5.rf.i386.rpm
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY*
④ .163 的源也还不错,网易网聚人的力量,确实是我们的好朋友
#
添加163
源
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.save
mv /etc/yum.repos.d/CentOS-Media.repo /etc/yum.repos.d/CentOS-Media.repo.save
cp /etc/yum.repos.d/CentOS-Base.repo.save /etc/yum.repos.d/163.repo
sed -i "s/mirror.centos.org/mirrors.163.com/g"
/etc/yum.repos.d/163.repo
sed -i "s/^mirrorlist/#mirrorlist/g" /etc/yum.repos.d/163.repo
sed -i "s/^#baseurl/baseurl/g" /etc/yum.repos.d/163.repo
3 )、问题
在配置过程中,有可能会出现
GPG key retrieval failed: [Errno 14] HTTP Error 404: Not Found
这个问题,这时只要修改 repo 使所有的 gpgcheck=0 就可以了。
3 、安装版本服务器 ---CVS
1 )、检查 CVS 软件默认是否安装好了。
通过使用 rpm –qi cvs 来查看
2 )、如果没有安装,那么就需要安装
① . 软件管理器 yum 的安装方式
yum install cvs
3) 、 创建用户和用户组
root
用户下执行以下命令:
#adduser cvsbestcar
#passwd cvsbestcar 输入新密码
这里创建了 bestcar 这个用户,同时创建了 bestcar 这个用户组。
4 )、 创建 CVS 资源库的根目录
root
用户下执行:
#mkdir /bestcar
此处可改为你想要的
cvsroot
路径
#chown cvsbestcar.cvsbestcar
/bestcar
把
cvs
根目录的所属用户设置为
cvsbestcar
,所属组设为
cvsbestcar
。
5) 、 初始化 cvs 资源库
#su – cvsbestcar 切换到 cvsbestcar 这个用户
#cvs -d /bestcar init
在 / bestcar 目录下会生成 CVSROOT 这个子目录
<!-- [if gte vml 1]><v:shape id="_x0000_i1027" type="#_x0000_t75" style='width:415.5pt;height:112.5pt'> <v:imagedata src="file:///C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\msohtml1\10\clip_image003.png" o:title=""/> </v:shape><![endif]--><!-- [if !vml]--><!-- [endif]-->
6) 、 修改环境变量 CVSROOT
#exit
从 cvsbestcar 用户退回到 root 用户,只有 root 用户才有权限修改 /etc/profile
#vim /etc/profile
编辑 /etc/profile 文件,在末尾加上以下两句:
CVSROOT=/cvsroot
export CVSROOT
#source /etc/profile
更新环境变量,此时系统已经认识 $CVSROOT 这样的环境变量
#echo $CVSROOT
检查是否设置成功,如果出现自己设置的路径,表示成功。
7 )、修改服务器配置
在 /etc/xinetd.d/ 下找到 cvs 文件,修改成下面这样
service cvspserver
{
port
= 2401
socket_type
= stream
protocol
= tcp
wait
= no
user
= root
passenv
= PATH
server
= /usr/bin/cvs
env
= HOME=/bestcar
server_args
= -f --allow-root=/bestcar pserver
# bind
= 127.0.0.1
}
<!-- [if gte vml 1]><v:shape id="_x0000_i1028" type="#_x0000_t75" style='width:414.75pt;height:206.25pt'> <v:imagedata src="file:///C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\msohtml1\10\clip_image005.png" o:title=""/> </v:shape><![endif]--><!-- [if !vml]--><!-- [endif]-->
8 )、 启动 cvs 服务
# /etc/rc.d/init.d/xinetd restart 重启动 xinetd 服务,需要注意,这个服务 centos5 默认并不安装,需要定制安装一下。
# netstat -lnp|grep 2401
tcp 0 0 0.0.0.0:2401 0.0.0.0:* LISTEN xxxxxx/xinetd
则说明 cvs 服务器已经运行。
PS. 如果发现没有输出,那么就证明配置有问题,可通过如下方式:
① . 将第七步里面的disable=yes 更改成disable=no
② . #/etc/rc.d/init.d/xinetd restart
③ . 通过 chkconfig --list 查看运行状态
<!-- [if gte vml 1]><v:shape id="_x0000_i1029" type="#_x0000_t75" style='width:387pt;height:227.25pt'> <v:imagedata src="file:///C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\msohtml1\10\clip_image007.png" o:title=""/> </v:shape><![endif]--><!-- [if !vml]--><!-- [endif]-->
④ . 通过进程是看不到的,因为你的是通过 xinitd 来运行 ,也就是只有当客户端连接这个端口时 cvs 才会启动,所以通常是通过 netstat -an | less 来查看端口的状态的。
<!-- [if gte vml 1]><v:shape id="_x0000_i1026" type="#_x0000_t75" style='width:415.5pt;height:187.5pt'> <v:imagedata src="file:///C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\msohtml1\10\clip_image009.png" o:title=""/> </v:shape><![endif]--><!-- [if !vml]--><!-- [endif]-->
9 )、 注意要打开防火墙的 2401 端口,否则客户端还是连不上这个 cvs 的服务器。
10 )、 增加新用户。
用 root
#cd /
#chmod -R 775 cvsroot 让 cvsroot 组的所有成员都可以对 cvs 资源库目录的读写权限
#useradd -g cvsroot user0 创建新用户 user0 ,并且将其添加进入 cvsroot 用户组
#passwd user0 设置好密码
11 )、客户端连接
在客户端安装 CVS ,服务器端的 IP 为: 192.168.12.241 ,然后在客户端输入
cvs -d :pserver:user0@192.168.12.241/bestcar login
① . 错误提示为/bestcar /CVSROOT/config: Permission denied
自己本身的用户 user0 已经加入到组中,并且组对 /bestcar 文件可读可写
② . 错误提示为:
cvs login: CVS password file /home/wq/.cvspass does not exist - creating a new file
该问题就是在客户端登录时要在 HOME 目录下有个 .cvspass 的文件即可。因此,解决方法就是在 /home/wq/ 下 :
发表评论
-
为嘛BIOS将MBR读入0x7C00地址处(x86平台下)
2012-11-27 14:06 1766对于很多人来讲0x7C00这个地址是很神秘的,不知道这是 ... -
挖个坑,通过一个bug学习scsi~
2012-10-23 15:55 1354开始来点前期准备的知识,主要关于Linux的I/O 路线 ... -
Solaris下如何查看boot_archive以及制作定制版boot_archive
2012-10-23 15:53 909从标题可以得知,分为两步,首先是查看,继而是修改定制。 ... -
vim系列教程(1)基础操作
2011-11-27 20:49 1082总结下本人平时所使用的各种工具以及语言的快速入门教程以及 ... -
code2pdf
2011-06-29 12:10 994http://www.code2pdf.com http:/ ... -
fs/timerfd.c内核分析
2011-05-03 12:20 2854/* * fs/timerfd.c * ... -
Perl在vim下的一些基本SYNTAX设置
2010-10-09 13:58 1871perl 的语法高亮有一些 ... -
ubuntu 10.04 电子科技大学源 校园网推荐
2010-06-12 10:59 2253电子科技大学源(校园网推荐,快) deb http:// ... -
Linux环境变量设置--总结
2009-10-20 09:27 30661、引言 在 linux系统 ... -
Linux下的脚本语言--Perl和Python Intro
2009-10-15 10:26 3241到Linux下的脚本语言, ... -
Unix 哲学
2009-09-24 09:51 883Unix 哲学: 一:小即是美。 二:让程序只做好一件事 ... -
发一张我的桌面
2009-08-24 11:07 853我的Linux下的桌面,纯属娱乐.... -
Debian/Ubuntu的NFS配置
2009-08-21 17:07 1595Debian/Ubuntu的NFS配置 简介 :NFS(Net ... -
ubuntu 镜像的制作
2009-07-20 16:08 3750Ubuntu Customization Kit 简称 UCK ... -
Linux 由浅入深
2009-07-16 22:44 9461.掌握至少50个以上的常用命令。(GOT) 2.熟悉Gno ... -
Debian 安装Flash插件
2009-07-12 09:15 3754下载install_flash_player_10_linux ... -
Debian 源的设置
2009-07-11 20:57 1640Debian 源的设置 作者:Hily 原始链接:http: ... -
嵌入式Linux游戏开发一
2009-06-22 14:13 14831、引言 Linux由于其具有内核强大且稳定,易于扩展 ... -
ubuntu 9.04更新源
2009-05-06 09:33 127131.sudo gedit /etc/apt/sources.l ... -
Linux 下mysql的卸载
2009-04-15 14:41 2393前段时间安装了Mysql,但是有些问题,就想把他卸载了, ...
相关推荐
CentOS 5.3 配置 DNS 详解 CentOS 5.3 配置 DNS 需要安装相应的软件包,包括 bind、bind-libs、...CentOS 5.3 配置 DNS 需要安装相应的软件包,配置 named.conf 文件,添加解析区域的配置文件,并重启 DNS 服务器。
CentOS 5.3 是一个基于 Red Hat Enterprise Linux (RHEL) 的开源操作系统,它为用户提供了一个稳定、安全且高度可定制的服务器环境。这个版本在2009年发布,作为CentOS系列的一个重要里程碑,它带来了许多改进和更新...
CentOS是一款基于Red Hat Enterprise Linux源代码再编译的开源操作系统,它提供了与RHEL高度兼容的稳定环境,被广泛应用于服务器领域。 【描述】中提到的"此文件由wdlinux收集,整理了centos5.3至5.8DVD版32_64位...
以下是在CentOS 5.3版本上挂载NTFS驱动器的详细步骤: 1. **安装内核补丁**: 在进行NTFS挂载之前,首先需要确保你的系统内核支持NTFS。通过运行`uname -a`命令来查看当前系统的内核版本。例如,如果你的内核版本...
centos5.3_64镜像包,安装包,ISO镜像
LINUX操作系统_CentOS5.3_超详细的安装图文教程.doc
### CentOS 5.3 管理指南知识点详解 #### 一、课程介绍与目标 - **课程背景:** - 本课程旨在为学员提供一套全面的基础工具、技能及实践,以帮助他们掌握配置、保护及维护 Linux 服务器的能力。 - **目标受众:*...
阿里云服务器centos+apache+php5.3+mysql+Zend Guard Loader+memcached+ftp环境搭建笔记
在CentOS 5.3系统下配置vsftpd(Very Secure FTP Daemon)以创建并管理新的FTP用户是一项关键的IT技能,尤其对于那些负责维护服务器和确保数据安全的专业人士而言。下面将详细介绍如何在CentOS 5.3环境中通过vsftpd...
CentOS 5 CVS 安装与配置 在本文中,我们将一步一步地指导您如何在 CentOS 5 中安装和配置 CVS(Concurrent Versions System),并且介绍用户管理的相关知识。 安装 CVS 首先,我们需要安装 CVS 软件包。使用以下...
至于提供的资源,"CentOS5.3 Linux 编译安装 mysql-6.0.10-alpha 视频教程.avi" 可能是一个详细的视频指南,可以帮助你更直观地了解每个步骤。"访问脚本之家.html" 和 "服务器常用软件.html" 可能包含更多关于服务器...
"CentOS 7配置yum源" CentOS 7 配置 yum 源是 Linux 运维中的一项重要任务。yum 源是 CentOS 操作系统中的一种软件包管理器,负责管理和安装软件包。正确配置 yum 源可以提高软件包的安装速度和可靠性。 配置 yum...
在所有组件都正确安装和配置后,你的 CentOS 5.3 服务器就准备好了运行 PHP 和 MySQL 应用。你可以通过访问服务器的 IP 地址测试 Apache 和 PHP 是否正常工作,例如创建一个简单的 `info.php` 文件来显示 PHP 信息。...
总结,安装JDK 1.5在CentOS 5.3上的步骤包括:下载JDK安装文件,上传并执行安装程序,卸载旧的alternatives设置,更新环境变量,使用alternatives配置新的Java和javac软链接,并选择新的Java版本作为默认。...
本文将详细讲解如何在CentOS7系统中配置本地YUM源。 首先,你需要一个包含所有所需软件包的本地仓库。通常,你可以从官方网站或其他可靠的来源下载完整的CentOS7 ISO镜像,或者从网络上下载完整的软件包仓库。这些...
按照ispCP的官方文档继续安装过程,包括配置数据库、设置Web服务、安装Apache或Nginx等Web服务器,以及配置ispCP的管理面板。 14. **测试与优化** 安装完成后,测试ispCP的功能是否正常工作,并根据需要进行性能...
资料用截图显示出centos5.3的安装步骤