centos安装svn,centos客户端运用svn
场景:
操作如下:
搭建svn服务器:192.168.43.130
1.安装subversion
2.创建本地仓库
mkdir /haha/svn/something
svnadmin create /haha/svn/something
3.会发现something下已经有配置文件,cd /haha/svn/something/conf路径下
都要改其配置文件:
第一个passwd:设置账号和密码(不用useradd创建)
第二个:authz认证及权限安排
其中,方括号内部分可有多种写法:
[/]:表示根目录及以下,根目录是svnserve启动时指定的,[/]表示对全部版本库设置权限;
[repos:/]:表示对版本库repos设置权限;
[repos:/sadoc]:表示对版本库repos中的sadoc项目设置权限;
[repos:/sadoc/oldboy]:表示对版本库repos中的sadoc项目的oldboy目录设置权限;
权限主体可以是用户、用户组或*,用户组在前面加@,*表示全部用户;
权限可以是w、r、wr和空,空表示没有任何权限;
authz中每个参数都要顶格写,开头不能有空格;
对于组,要以@开头,而用户不需要;
第三个配置文件(重要):svnserve.conf
### This filecontrols the configuration of the svnserve daemon, if you
### use it toallow access to this repository. (If youonly allow
### access throughhttp: and/or file: URLs, then this file is
### irrelevant.)
### Visithttp://subversion.apache.org/ for more information.
[general]
### Theanon-access and auth-access options control access to the
### repository forunauthenticated (a.k.a. anonymous) users and
### authenticatedusers, respectively.
### Valid valuesare "write", "read", and "none".
### Setting thevalue to "none" prohibits both reading and writing;
###"read" allows read-only access, and "write" allows complete
### read/writeaccess to the repository.
### The samplesettings below are the defaults and specify that anonymous
### users haveread-only access to the repository, while authenticated
### users haveread and write access to the repository.
anon-access = none
auth-access =write
### Thepassword-db option controls the location of the password
### databasefile. Unless you specify a path startingwith a /,
### the file'slocation is relative to the directory containing
### thisconfiguration file.
### If SASL isenabled (see below), this file will NOT be used.
### Uncomment theline below to use the default password file.
password-db =/haha/svn/something/conf/passwd
### The authz-dboption controls the location of the authorization
### rules forpath-based access control. Unless youspecify a path
### starting witha /, the file's location is relative to the the
### directorycontaining this file. If you don'tspecify an
### authz-db, nopath-based access control is done.
### Uncomment theline below to use the default authorization file.
authz-db =/haha/svn/something/conf/authz
### This optionspecifies the authentication realm of the repository.
### If tworepositories have the same authentication realm, they should
### have the samepassword database, and vice versa. Thedefault realm
### isrepository's uuid.
realm = /haha/svn/
### Theforce-username-case option causes svnserve to case-normalize
### usernamesbefore comparing them against the authorization rules in the
### authz-db file configuredabove. Valid values are"upper" (to upper-
### case theusernames), "lower" (to lowercase the usernames), and
###"none" (to compare usernames as-is without case conversion, which
"svnserve.conf"61L, 3121C
4.svnserve可以启动
systemctl starts svnserve
systemctl enable svnserve
5.启动svn版本库
svnserve -dr/haha/svn
检查:ps -ef |grep svn或者netstat -ntpl查看3690端口是否开启
+++++++++++++++++++++++++++++++++++
客户端Centos7上:192.168.43.129
1.安装subversion
2.创建一个本地存放svn的地方:mkdir /localdisk/svn
3.把130的something库弄到本地。
命令:svn checkout svn://192.168.43.130/something
之后再/localdisk/svn/下,会发现有something目录
在这something目录下,创建
代码提交三步:
1.svn add 文件名 把文件提交到暂存区
2.svn commit -m“备注” 把文件上传到服务器上,并且备注129文件
3.验证服务器130上的svn账号
4.以后服务器上用命令更新svn
svn update
5.在130上会发现/haha/svn/something下面还有个something,文件就在这里面
centos安装svn,centos客户端运用svn的更多相关文章
- 转: CentOS 安装 SVN1.8 客户端
from: http://blog.csdn.net/clementad/article/details/46898091 CentOS 安装SVN客户端 标签: subversionrpmcent ...
- centos安装zendstudio centos系统
查看centos系统32或64位命令(位数):在终端中执行“getconf LONG_BIT”命令并回车键确定 安装zend studio : 1. 首先安装好Java环境yum -y install ...
- CentOS 7.4 初次手记:第二章 CentOS安装步骤
第二章 CentOS安装步骤... 18 第一节 下载... 18 第二节 分区参考... 18 第三节 安装... 19 I Step 1:引导... 19 II Step 2:配置... 20 I ...
- centos 安装PGSQL
centos 安装PGSQLCentOS下yum安装PostgreSQL目录 1 Configure YUM repository2 Install PGDG RPM file3 Install Po ...
- CentOS安装TortoiseSVN svn 客户端
CentOS安装TortoiseSVN svn 客户端 一.CentOS安装TortoiseSVN yum install -y subversion 二.SVN客户端命令 1.查看帮助 命令:s ...
- centos安装svn
原文链接:http://blog.csdn.net/liuyuan_jq/article/details/2110814 1.SVN简介由于前些年在版本的管理上采用的都是CVS系统,总体上而言还是很优 ...
- Centos 安装SVN
Centos 安装SVN centos(我这里使用的是CentOS7)下yum命令即可方便的完成安装 $ sudo yum install subversion 测试安装是否成功: $ svnser ...
- 阿里云centos安装svn和submin
概述 没有找到可以让团队方便使用的云盘,暂时搭建一个svn凑合用一下 svn有三种安装方式 安装方式 服务程序 服务协议 用户和密码 授权 系统配置 svn独立安装 svnserve svn pass ...
- 阿里云服务器Linux CentOS安装配置(二)yum安装svn
阿里云服务器Linux CentOS安装配置(二)yum安装svn 1.secureCRT连接服务器 2.先创建一个文件夹,用来按自己的习惯来,用来存放数据 mkdir /data 3.yum安装sv ...
- CentOS 7安装SVN以及高版本SVN
安装 CentOS 7 下yum命令即可方便的完成安装 $ sudo yum install subversion 测试安装是否成功: $ svnserve --version 建立版本库 创建svn ...
随机推荐
- Navicat Premium 15 linux 安装与激活 ArchLinux 2021
查看了很多教程花了半小时才弄好可真不容易 参考https://github.com/orginly/navicat-keygen 下载地址 http://www.navicat.com.cn/down ...
- Fiddler抓包后转成jmeter脚本
Fiddler的安装及使用 1.安装:无特别需要注意事项 2.使用: (1)目前我使用的是Fiddler 4版本,打开页面如下 (2)如下图,在界面右侧找到Filters tabs,根据需要进行设置, ...
- NVIDIA Tensor Cores解析
NVIDIA Tensor Cores解析 高性能计算机和人工智能前所未有的加速 Tensor Cores支持混合精度计算,动态调整计算以加快吞吐量,同时保持精度.最新一代将这些加速功能扩展到各种工作 ...
- [NOIP1998 提高组] 拼数
题目描述 设有 n 个正整数 a1-an,将它们联接成一排,相邻数字首尾相接,组成一个最大的整数. 输入格式 第一行有一个整数,表示数字个数 n. 第二行有 n 个整数,表示给出的 n 个整数 a_ ...
- Spring Cloud05: Zuul 服务网关
一.什么是Zuul 服务网关 Zuul 是 Netflix 提供的⼀个开源的 API ⽹关服务器,是客户端和⽹站后端所有请求的中间层,对外开放 ⼀个 API,将所有请求导⼊统⼀的⼊⼝,屏蔽了服务端的具 ...
- Java线程池底层源码分享和相关面试题(持续更新)
线程池各个参数讲解 public ThreadPoolExecutor(int corePoolSize, //线程池核心工作线程数量,比如newFixedThreadPool中可以自定义的线程数量就 ...
- 二、部署监控服务器-Zabbix Server
二.部署监控服务器-Zabbix Server 1)源码安装Zabbix Server 多数源码包都是需要依赖包的,zabbix也- 样,源码编译前需要先安装相关依赖包. [root@zabbixse ...
- 面试官:为什么Mysql中Innodb的索引结构采取B+树?
前言 如果面试官问的是,为什么Mysql中Innodb的索引结构采取B+树?这个问题时,给自己留一条后路,不要把B树喷的一文不值.因为网上有些答案是说,B树不适合做文件存储系统的索引结构.如果按照那种 ...
- Ajax 和 JSON
Ajax:异步更新页面的技术,必须在http或者https网络网络协议下使用 1.原生js实现:共4步 2.jQuery:$.ajax(配置对象); ...
- 如何使用 jest 和 lint-staged 只检测发生改动的文件
我们现在在推进 EPC 的过程中,单元测试是必备的技能,在本地的 Git commit 之前进行单测非常有必要,总不能把所有的单测的压力都放在流水线上. 毕竟在流水线运行单测的成本还是挺高的,从 pu ...