QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 498|回复: 1

新手求救!!! 安装CVS问题! 请高手指点!! (郁闷!)

[复制链接]
发表于 2004-3-11 20:20:53 | 显示全部楼层 |阅读模式
login时出错显示:

[root@YTH /]# cvs -d :pserver:[email protected]:/home/cvsroot login
Logging in to :pserver:[email protected]:2401/home/cvsroot
CVS password:
cvs [login aborted]: unrecognized auth response from 192.168.30.147: Usage: cvs [cvs-options] command [command-options-and-arguments]
[root@YTH /]#

请问高手怎样解决??? 望高手给于指点!!! 我是菜鸟,请给解释的详悉些,万分感谢!!!
谢谢!!!

安装过程如下:

redhat 9.0 gnome 完全安装 4.8G

下载完之后安装的步骤:
图形界面下解包 cvs-1.11.13.tar.bz2
# cd cvs-1.11
#./configure
# make
# make install

检查 /etc/services 已启动

在 /etc/xinetd.d 目录下创建一个文件cvs
vi /etc/xinetd.d/cvs
内容为:
service cvspserver
{
socket_type = stream
wait = no
user = root
env = HOME=
server = /usr/bin/cvs
server-tags = --allow-root=/home/cvsroot pserver
}

从图形界面 系统设置->用户和组群
添加 组 cvs 用户 cvsroot 主目录为/home/cvsroot

chown -R cvsroot /home/cvsroot

然后
vi /etc/profile
修改为:

# /etc/profile

# System wide environment and startup programs, for login setup
# Functions and aliases go in /etc/bashrc

pathmunge () {
if ! echo $PATH | /bin/egrep -q "(^|icon_smile.gif$1($|icon_smile.gif" ; then
if [ "$2" = "after" ] ; then
PATH=$PATH:$1
else
PATH=$1:$PATH
fi
fi
}

# Path manipulation
if [ `id -u` = 0 ]; then
pathmunge /sbin
pathmunge /usr/sbin
pathmunge /usr/local/sbin
fi

pathmunge /usr/X11R6/bin after

unset pathmunge

# No core files by default
ulimit -S -c 0 > /dev/null 2>&1

USER="`id -un`"
LOGNAME=$USER
MAIL="/var/spool/mail/$USER"
CVSROOT=":pserver:[email protected]:/home/cvsroot"

HOSTNAME=`/bin/hostname`
HISTSIZE=1000

if [ -z "$INPUTRC" -a ! -f "$HOME/.inputrc" ]; then
INPUTRC=/etc/inputrc
fi
export PATH USER LOGNAME MAIL HOSTNAME HISTSIZE INPUTRC CVSROOT

for i in /etc/profile.d/*.sh ; do
if [ -r "$i" ]; then
. $i
fi
done

unset i

重启 xinetd:
/etc/init.d/xinetd restart

然后
cvs -d /home/cvsroot init

以上都显示成功
 楼主| 发表于 2004-3-11 22:09:11 | 显示全部楼层
没有人愿意帮我吗??? 伤心...........
回复

使用道具 举报

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

本版积分规则

GMT+8, 2024-11-17 16:00 , Processed in 0.041416 second(s), 15 queries .

© 2021 Powered by Discuz! X3.5.

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