<mirror> <id>alimaven</id> <mirrorOf>central</mirrorOf> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/repositories/central/</ur ...
分类:
其他好文 时间:
2020-11-12 14:04:45
阅读次数:
11
第六周1、自建yum仓库,分别为网络源和本地源(1)vim/etc/yum.repos.d/base.repo(2)yumrepolist2、编译安装http2.4,实现可以正常访问,并将编译步骤和结果提交。(1)下载源码wgethttp://archive.apache.org/dist/httpd/httpd-2.4.25.tar.gz(2)解包及准备所需安装包tarxvfhttpd-2.4.
分类:
其他好文 时间:
2020-11-12 13:46:18
阅读次数:
8
git fetch, git pull, git pull -rebase区别 抄经的和尚 2016-04-20 13:51:32 15084 收藏 9 分类专栏: 技术总结 文章标签: git pull git rebase git merge 1、git fetch vs git pull 都是 ...
分类:
其他好文 时间:
2020-11-10 11:42:33
阅读次数:
29
碰到好几次这种情况,这个问题的原因是,上一次拉代码将一个远程的tag拉到了本地,随后远程的tag被更新了,这就导致远程的tag和我们本地的tag有冲突。 我的解决方式是,先删除本地的这个tag,以远程的为准。假设报错的tag是zqb_all_tag 即先 repo forall -c git tag ...
分类:
其他好文 时间:
2020-11-08 17:53:45
阅读次数:
27
1.先导入enkins库的 key-将Jenkins存储库添加到yum repos -1 wget -O /etc/yum.repos.d/jenkins.repo http://pkg.jenkins-ci.org/redhat/jenkins.repo-2 rpm --import https: ...
分类:
系统相关 时间:
2020-11-08 16:38:52
阅读次数:
23
TechRoad 1. Architecture <Java Application architecture> modular, Spring context config <EIS> technology decision, base eis-platform-brms <MS PPP> cha ...
分类:
其他好文 时间:
2020-11-07 16:51:15
阅读次数:
24
dao @Repository --写在dao层 service @Service --写在service层 controller @Controller --写在controller层 @Scope --写在多人访问controller上 属性注入 @Autowired --写在需要注入的属性上 ...
分类:
编程语言 时间:
2020-11-07 15:46:00
阅读次数:
20
防火墙都是关闭的服务端[root@localhost~]#yum-yinstallrpcbindnfs-utils编辑/etc/exportsp配置文件配置共享目录(配置文件默认可能没有)root@ubuntu:~#cat/etc/exports#共享目录允许访问的IP或网段(参数)/nfs192.168.6.0/24(rw,sync,no_root_squash先启动rpcbind再启动nfs[
分类:
其他好文 时间:
2020-11-07 15:37:17
阅读次数:
19
本文用于记录在学习AQS时,以ReentrantLock为切入点,深入源码分析ReentrantLock的加锁和解锁过程。 同步器AQS的主要使用方式是继承,子类通过继承同步器并实现它的抽象方法来管理同步状态(通常锁或者同步组件内部会实现一个Sync类(该类是一个静态内部类),然后让Sync类去继承 ...
分类:
其他好文 时间:
2020-11-06 02:46:59
阅读次数:
25