《工具箱-SVN》SVN安装、备份、迁移教程

文章目录

  • 一、服务器搭建SVN
    • 1.检查SVN是否存在
    • 2.安装SVN
    • 3.创建版本库
    • 4.创建版本库存放文件地址
    • 5.修改配置文件
      • 5.1 vim authz
      • 5.2 vim passwd
      • 5.3 vim svnserve.conf
    • 6.启动并查看SVN
    • 7.SVN Checkout
    • 8.SVN Update
    • 9.SVN Commit
  • 二、SVN-无法连接主机,目标计算机积极拒绝,无法连接
    • 1.检查SVN进程
    • 2.手动启动SVN
    • 3.重新尝试使用SVN
  • 三、SVN备份、迁移
    • 1.将源SVN版本库文件备份
    • 2.将备份文件发送到新的服务器
    • 3.在目标服务器的SVN中创建版本库存放文件地址

一、服务器搭建SVN

1.检查SVN是否存在

[root@hadoop_zxy ~]# svn -version
-bash: svn: command not found

2.安装SVN

[root@hadoop_zxy ~]# yum install subversion
Loaded plugins: fastestmirror, langpacks
Installed:subversion.x86_64 0:1.7.14-16.el7Dependency Installed:gnutls.x86_64 0:3.3.29-9.el7_6        neon.x86_64 0:0.30.0-4.el7                    nettle.x86_64 0:2.7.1-9.el7_9pakchois.x86_64 0:0.4-10.el7          subversion-libs.x86_64 0:1.7.14-16.el7        trousers.x86_64 0:0.3.14-2.el7Complete!

3.创建版本库

[root@hadoop_zxy apps]# mkdir /zxy/apps/svn
[root@hadoop_zxy apps]# ls
elasticsearch-6.5.3  jdk1.8.0_311  kafka_2.11-1.1.1  kibana-6.5.3  scala-2.11.8  svn  zookeeper-3.6.3
[root@hadoop_zxy apps]# cd svn

4.创建版本库存放文件地址

[root@hadoop_zxy svn]# svnadmin create /zxy/apps/svn/repositories

5.修改配置文件

5.1 vim authz

新增以下部分:

[/]

用户名= rw

[/] 表示控制的路径是全部,用户名自定义, rw 表示的权限 可读写


[aliases]
# joe = /C=XZ/ST=Dessert/L=Snake City/O=Snake Oil, Ltd./OU=Research Institute/CN=Joe Average[groups]
# harry_and_sally = harry,sally
# harry_sally_and_joe = harry,sally,&joe# [/foo/bar]
# harry = rw
# &joe = r
# * =# [repository:/baz/fuz]
# @harry_and_sally = rw
# * = r
#[/]用户名 = rw~

5.2 vim passwd

新增以下部分:

用户名 = 密码

用户名和密码处自定义


[users]
# harry = harryssecret
# sally = sallyssecret
#
用户名 = 密码
~

5.3 vim svnserve.conf

释放并修改以下部分

anon-access = none
auth-access = write

password-db = passwd

authz-db = authz
realm = repositories

### This file controls the configuration of the svnserve daemon, if you
### use it to allow access to this repository.  (If you only allow
### access through http: and/or file: URLs, then this file is
### irrelevant.)### Visit http://subversion.apache.org/ for more information.[general]
### The anon-access and auth-access options control access to the
### repository for unauthenticated (a.k.a. anonymous) users and
### authenticated users, respectively.
### Valid values are "write", "read", and "none".
### Setting the value to "none" prohibits both reading and writing;
### "read" allows read-only access, and "write" allows complete
### read/write access to the repository.
### The sample settings below are the defaults and specify that anonymous
### users have read-only access to the repository, while authenticated
### users have read and write access to the repository.
anon-access = none
auth-access = write
### The password-db option controls the location of the password
### database file.  Unless you specify a path starting with a /,
### the file's location is relative to the directory containing
### this configuration file.
### If SASL is enabled (see below), this file will NOT be used.
### Uncomment the line below to use the default password file.password-db = passwd
### The authz-db option controls the location of the authorization
### rules for path-based access control.  Unless you specify a path
### starting with a /, the file's location is relative to the the
### directory containing this file.  If you don't specify an
### authz-db, no path-based access control is done.
### Uncomment the line below to use the default authorization file.
authz-db = authz
### This option specifies the authentication realm of the repository.
### If two repositories have the same authentication realm, they should
### have the same password database, and vice versa.  The default realm
### is repository's uuid.
realm = repositories
### The force-username-case option causes svnserve to case-normalize
### usernames before comparing them against the authorization rules in the
### authz-db file configured above.  Valid values are "upper" (to upper-
### case the usernames), "lower" (to lowercase the usernames), and
### "none" (to compare usernames as-is without case conversion, which
### is the default behavior).
# force-username-case = none[sasl]
### This option specifies whether you want to use the Cyrus SASL
### library for authentication. Default is false.
### This section will be ignored if svnserve is not built with Cyrus
### SASL support; to check, run 'svnserve --version' and look for a line
### reading 'Cyrus SASL authentication is available.'
# use-sasl = true
### These options specify the desired strength of the security layer
### that you want SASL to provide. 0 means no encryption, 1 means
### integrity-checking only, values larger than 1 are correlated
### to the effective key length for encryption (e.g. 128 means 128-bit
### encryption). The values below are the defaults.
# min-encryption = 0
# max-encryption = 256

6.启动并查看SVN

[root@hadoop_zxy conf]# svnserve -d -r /zxy/apps/svn/[root@hadoop_zxy conf]#  netstat -apn | grep 3690
tcp        0      0 0.0.0.0:3690            0.0.0.0:*               LISTEN      7757/svnserve

7.SVN Checkout

用于初次下载项目

在这里插入图片描述

8.SVN Update

用于更新项目内容

在这里插入图片描述

9.SVN Commit

用于提交项目更改内容

在这里插入图片描述

二、SVN-无法连接主机,目标计算机积极拒绝,无法连接

在这里插入图片描述

1.检查SVN进程

发现SVN进程已经关闭,想起来前几天重启了一下服务器,SVN服务器没有设置开机自启


[root@hadoop_zxy ~]# ps -ef | grep svn
root      3652  2079  0 11:31 pts/0    00:00:00 grep --color=auto svn

2.手动启动SVN


[root@hadoop_zxy ~]# svnserve -d -r/zxy/apps/svn
[root@hadoop_zxy ~]# ps -ef | grep svn
root      4690     1  0 11:33 ?        00:00:00 svnserve -d -r/zxy/apps/svn
root      4707  2079  0 11:33 pts/0    00:00:00 grep --color=auto svn
[root@hadoop_zxy ~]#

3.重新尝试使用SVN

在这里插入图片描述

注意:大家在重启服务器后,一定要记得查看SVN的进程

三、SVN备份、迁移

SVN需要备份,或者SVN服务器迁移,可以使用svnadmin的dump和load命令进行操作。

1.将源SVN版本库文件备份

svnadmin dump /zxy/apps/svn/old > dataproject

2.将备份文件发送到新的服务器

scp /zxy/apps/svn/dataproject root@ip:/zxy/apps/svn

3.在目标服务器的SVN中创建版本库存放文件地址

新创建的版本库文件地址,需要修改相关的配置文件,参考第一章即可

svnadmin create /zxy/apps/svn/new
svnadmin load /zxy/apps/svn/new < ./dataproject

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/294016.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

使用Docker-镜像命令

镜像名称一般分两部分组成:[repository]:[tag] 在没有指定tag时&#xff0c;默认是latest&#xff0c;代表最新版本的镜像 目录 案例一&#xff1a;从DockerHub中拉取一个nginx镜像并查看 1.1. 首先去镜像仓库搜索nginx镜像&#xff0c;比如DockerHub ​编辑 1.2.操作拉取n…

【clickhouse】在CentOS中离线安装clickhouse

一、下载地址 通过以下链接进行rpm安装包的下载 https://packages.clickhouse.com/rpm/stable/ 根据需求下载对应版本 注意&#xff1a;ClickHouse 20.8.2.3版本新增加了 MaterializeMySQL 的 database 引擎&#xff0c;该 database 能映射到 MySQL 中的某个 database&#…

渲染图和效果图的一样吗?渲染图与效果图区别?

在建筑、设计及电影制作等一系列领域&#xff0c;你可能经常听说渲染图和效果图这两个词汇。它们虽然在视觉表现上有许多相似之处&#xff0c;但在实质上却有着极其不同的特性和用途。此文主要探讨提供优质效果图云渲染服务&#xff0c;以及渲染图与效果图之间的区别。 一、 效…

MyBatis 关联查询

目录 一、一对一查询&#xff08;sqlMapper配置文件&#xff09; 1、需求&#xff1a; 2、创建account和user实体类 3、创建AccountMapper 接口 4、创建并配置AccountMapper.xml 5、测试 二、一对多查询&#xff08;sqlMapper配置文件&#xff09; 1、需求&#xff1a;…

flask之文件管理网页(上传,下载,搜索,登录,注册) -- 翔山 第一版

前面说要做一个可以注册&#xff0c;登录&#xff0c;搜索&#xff0c;上传下载的网页&#xff0c;初版来了 第一版主代码 from flask import request, Flask, render_template, redirect, url_for, send_from_directory import bcrypt import ossavePath os.path.join(os.ge…

Apache Flink 进阶教程(七):网络流控及反压剖析

目录 前言 网络流控的概念与背景 为什么需要网络流控 网络流控的实现&#xff1a;静态限速 网络流控的实现&#xff1a;动态反馈/自动反压 案例一&#xff1a;Storm 反压实现 案例二&#xff1a;Spark Streaming 反压实现 疑问&#xff1a;为什么 Flink&#xff08;bef…

SVM —— 代码实现

SMO 算法的实现步骤&#xff1a; 代码如下&#xff1a; import numpy as np import matplotlib.pyplot as plt import seaborn as sns import random# 设置中文字体为宋体&#xff0c;英文字体为 times new roman sns.set(font"SimSun", style"ticks", fo…

【虹科分享】金融服务急需数据层改造

文章速览&#xff1a; 数字化转型正在颠覆银行与金融业金融服务的未来Redis Enterprise赋能实时金融应用 金融服务越来越注重实时互动体验&#xff0c;重构关键业务流程&#xff0c;从数据层入手该怎么做&#xff1f; 一、数字化转型正在颠覆银行与金融业 金融科技行业的初创…

7. 结构型模式 - 代理模式

亦称&#xff1a; Proxy 意图 代理模式是一种结构型设计模式&#xff0c; 让你能够提供对象的替代品或其占位符。 代理控制着对于原对象的访问&#xff0c; 并允许在将请求提交给对象前后进行一些处理。 问题 为什么要控制对于某个对象的访问呢&#xff1f; 举个例子&#xff…

Android Studio各种Gradle常见报错问题及解决方案

大家好&#xff0c;我是咕噜铁蛋&#xff01;在开发Android应用程序时&#xff0c;我们可能会遇到各种Gradle错误。这些错误可能来自不同的原因&#xff0c;例如依赖项问题、配置错误、版本冲突等。今天我通过搜索整理了一下&#xff0c;在这篇文章中&#xff0c;我将分享一些常…

Python深度学习029:pytorch中常用的模块或方法

PyTorch是一个广泛使用的深度学习库,提供了许多用于构建和训练神经网络的模块和方法。下面是一些PyTorch中常用的模块和方法的简要介绍: PyTorch常用模块和方法 torch 用途:PyTorch的基础模块,提供了多种数学运算功能。常用方法: torch.tensor():创建张量torch.randn():…

微软官方镜像下载大全(windows iso 官方镜像)

原本只是想下一个Windows Server 2022中文版的镜像&#xff0c;后面发现要么就是慢得一批的某盘&#xff0c;要么就是磁力&#xff0c;我想直接下载简简单单&#xff0c;找了一圈没有找到。官网下载需要注册、登录乱七八糟&#xff0c;最终终于找到下载方法了&#xff0c;适用于…