Home Operation and Maintenance CentOS 3. Installation and use of linux CentOS pagoda panel svn (graphic tutorial)

3. Installation and use of linux CentOS pagoda panel svn (graphic tutorial)

Sep 16, 2021 am 10:14 AM
centos linux

做程序员这么多年,放假或者出差的时候,偶尔需要改改代码,这个时候带一个笔记本电脑,太累赘了。

除了笔记本电脑,也用过远程连接台式机,能解决修改代码的问题,同时也会有其他的问题。

比如:偶尔连接不上,网络不好会卡,电脑不能关机。电费每月 100 多,后来搜到黑科技,使用 `bois` 定时任务,定时开机,省了一半的电费。

后来使用宝塔面板,觉得可以直接用服务器写代码,拿着 `ipad` 就能写了,在后来发现跟 `svn、git` 配合,那是更好了。所以就写了个服务器写代码的流程,给大家参考下。


一、安装 `svn`

1、安装命令

  • linux CentOS 自带 yum 命令

yum -y install subversion
Copy after login

3. Installation and use of linux CentOS pagoda panel svn (graphic tutorial)

2、指定 `svn` 版本库目录

  • 创建新目录,目录放在哪里,根据自己需要

  • 用 `svnserve` 命令指定版本库目录

mkdir /www/svndata
svnserve -d -r /www/svndata
Copy after login

3. Installation and use of linux CentOS pagoda panel svn (graphic tutorial)


二、创建 svn 项目

1、创建版本库

  • www.ouyangke.cn 是 `svn` 项目的目录名称,也是客户端连接的项目名。

  • 可以用域名作为 `svn` 目录名,一眼就知道这个 `svn` 对应哪个域名

svnadmin create /www/svndata/www.ouyangke.cn
Copy after login

3. Installation and use of linux CentOS pagoda panel svn (graphic tutorial)

2、配置 svnserve.conf 文件

  • 进入项目里的 conf 目录

cd /www/svndata/www.ouyangke.cn/conf
Copy after login
  • 打开 svnserve.conf 文件,vi 命令是系统自带的

vi svnserve.conf
Copy after login

3. Installation and use of linux CentOS pagoda panel svn (graphic tutorial)

  • 以下配置放在 svnserve.conf 文件里的 20 行后面

anon-access=none
auth-access=write
password-db=passwd
Copy after login

3. Installation and use of linux CentOS pagoda panel svn (graphic tutorial)

  • 保存就可以了,如果不会使用 vi 命令的,可以用宝塔面板,找到对应的文件修改

3. Installation and use of linux CentOS pagoda panel svn (graphic tutorial)

3、配置 passwd 文件

  • 打开 passwd 文件,也在 conf 目录下

vi passwd
Copy after login
  • 在后面一行输入账号=密码

ouyangke=ou123
Copy after login

3. Installation and use of linux CentOS pagoda panel svn (graphic tutorial)

4、客户端连接 svn

3. Installation and use of linux CentOS pagoda panel svn (graphic tutorial)

3. Installation and use of linux CentOS pagoda panel svn (graphic tutorial)


三、线上同步

  • 同步的目的是:更新代码后,服务器中的项目自动更新同步

1、拷贝项目

  • 拷贝要同步的项目,到网站目录文件中。需要 root 密码和 svn 账户密码。

svn co svn://localhost/www.ouyangke.cn /www/wwwroot/www.ouyangke.cn
Copy after login

3. Installation and use of linux CentOS pagoda panel svn (graphic tutorial)

2、建立同步脚本

  • 先复制一份同步脚本

cd /svndata/name/hooks/
cp post-commit.tmpl post-commit
Copy after login

13. Installation and use of linux CentOS pagoda panel svn (graphic tutorial)

3、编辑同步脚本

vi post-commit
Copy after login
REPOS="$1"REV="$2"
BASEPATH=/www/wwwroot/ 
WEBPATH="$BASEPATH/"
export LANG=zh_CN.UTF-8
svn update $WEBPATH --username ouyangke --password ou123 
--no-auth-cache
Copy after login
  • `BASEPATH` 是拷贝的项目目录

13. Installation and use of linux CentOS pagoda panel svn (graphic tutorial)

4、脚本

  • 执行脚本

chmod +x post-commit
Copy after login
  • 关闭 svn

killall svnserve
Copy after login
  • 开启 svn

svnserve -d -r /www/svndata
Copy after login

13. Installation and use of linux CentOS pagoda panel svn (graphic tutorial)

5、上传文件

13. Installation and use of linux CentOS pagoda panel svn (graphic tutorial)

13. Installation and use of linux CentOS pagoda panel svn (graphic tutorial)

13. Installation and use of linux CentOS pagoda panel svn (graphic tutorial)

13. Installation and use of linux CentOS pagoda panel svn (graphic tutorial)


五、宝塔编辑项目

1、连接 svn

svn checkout svn://localhost/www.ouyangke.cn /www/wwwroot/www.ouyangke.cn.edit
Copy after login

13. Installation and use of linux CentOS pagoda panel svn (graphic tutorial)

13. Installation and use of linux CentOS pagoda panel svn (graphic tutorial)

2、更新文件

  • 在 www.ouyangke.cn.edit 目录下

svn update
Copy after login

3. Installation and use of linux CentOS pagoda panel svn (graphic tutorial)

3、新增文件

  • 在 www.ouyangke.cn.edit 目录下

svn add 文件名
Copy after login

4、上传文件

  • 在 www.ouyangke.cn.edit 目录下

svn commit -m `备注` 文件名
Copy after login
  • 如果是新文件,必须先新增文件

  • 如果上传文件失败,执行 linux 命令,改变环境变量:

export SVN_EDITOR=vim
Copy after login

23. Installation and use of linux CentOS pagoda panel svn (graphic tutorial)


如果 `svn` 服务器不是你管理,那可以直接从第五步开始。

配置好后,在给项目创建个域名,就可以随时随地用 `ipad` 来写代码了。

【专题:Linux CentOS服务器PHP运营环境搭建使用】

一、linux CentOS服务器上线

二、linux CentOS 宝塔面板

三、linux CentOS 宝塔面板使用 svn

四、外网访问数据库

五、宝塔面板 FTP

推荐学习:php培训

The above is the detailed content of 3. Installation and use of linux CentOS pagoda panel svn (graphic tutorial). For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Chat Commands and How to Use Them
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Centos configuration IP address Centos configuration IP address Apr 14, 2025 pm 09:06 PM

Steps to configure IP address in CentOS: View the current network configuration: ip addr Edit the network configuration file: sudo vi /etc/sysconfig/network-scripts/ifcfg-eth0 Change IP address: Edit IPADDR= Line changes the subnet mask and gateway (optional): Edit NETMASK= and GATEWAY= Lines Restart the network service: sudo systemctl restart network verification IP address: ip addr

Difference between centos and ubuntu Difference between centos and ubuntu Apr 14, 2025 pm 09:09 PM

The key differences between CentOS and Ubuntu are: origin (CentOS originates from Red Hat, for enterprises; Ubuntu originates from Debian, for individuals), package management (CentOS uses yum, focusing on stability; Ubuntu uses apt, for high update frequency), support cycle (CentOS provides 10 years of support, Ubuntu provides 5 years of LTS support), community support (CentOS focuses on stability, Ubuntu provides a wide range of tutorials and documents), uses (CentOS is biased towards servers, Ubuntu is suitable for servers and desktops), other differences include installation simplicity (CentOS is thin)

Centos shutdown command line Centos shutdown command line Apr 14, 2025 pm 09:12 PM

The CentOS shutdown command is shutdown, and the syntax is shutdown [Options] Time [Information]. Options include: -h Stop the system immediately; -P Turn off the power after shutdown; -r restart; -t Waiting time. Times can be specified as immediate (now), minutes ( minutes), or a specific time (hh:mm). Added information can be displayed in system messages.

Centos stops maintenance 2024 Centos stops maintenance 2024 Apr 14, 2025 pm 08:39 PM

CentOS will be shut down in 2024 because its upstream distribution, RHEL 8, has been shut down. This shutdown will affect the CentOS 8 system, preventing it from continuing to receive updates. Users should plan for migration, and recommended options include CentOS Stream, AlmaLinux, and Rocky Linux to keep the system safe and stable.

Detailed explanation of docker principle Detailed explanation of docker principle Apr 14, 2025 pm 11:57 PM

Docker uses Linux kernel features to provide an efficient and isolated application running environment. Its working principle is as follows: 1. The mirror is used as a read-only template, which contains everything you need to run the application; 2. The Union File System (UnionFS) stacks multiple file systems, only storing the differences, saving space and speeding up; 3. The daemon manages the mirrors and containers, and the client uses them for interaction; 4. Namespaces and cgroups implement container isolation and resource limitations; 5. Multiple network modes support container interconnection. Only by understanding these core concepts can you better utilize Docker.

How to use docker desktop How to use docker desktop Apr 15, 2025 am 11:45 AM

How to use Docker Desktop? Docker Desktop is a tool for running Docker containers on local machines. The steps to use include: 1. Install Docker Desktop; 2. Start Docker Desktop; 3. Create Docker image (using Dockerfile); 4. Build Docker image (using docker build); 5. Run Docker container (using docker run).

How to install centos How to install centos Apr 14, 2025 pm 09:03 PM

CentOS installation steps: Download the ISO image and burn bootable media; boot and select the installation source; select the language and keyboard layout; configure the network; partition the hard disk; set the system clock; create the root user; select the software package; start the installation; restart and boot from the hard disk after the installation is completed.

How to restart the network in centos8 How to restart the network in centos8 Apr 14, 2025 pm 08:57 PM

Restarting the network in CentOS 8 requires the following steps: Stop the network service (NetworkManager) and reload the network module (r8169), start the network service (NetworkManager) and check the network status (by ping 8.8.8.8)

See all articles