0%

1
2
3
4
5
6
7
8
9
10
11
git init   // 初始化版本库

git add . // 添加文件到版本库(只是添加到缓存区),.代表添加文件夹下所有文件

git commit -m "first commit" // 把添加的文件提交到版本库,并填写提交备注

git remote add origin $你的远程库地址$ // 把本地库与远程库关联

git push -u origin master // 第一次推送时

git push origin master // 第一次推送后,直接使用该命令即可推送修改

1
git clone https://github.com/apache/incubator-dubbo-ops.git

配置

1
2
3
4
#配置文件为:
dubbo-admin-server/src/main/resources/application.properties
#主要的配置有:
dubbo.registry.address=zookeeper://127.0.0.1:2181
阅读全文 »

**”范式(NF)”**是符合某一种级别的关系模式的集合,表示一个关系内部各属性之间的联系的合理化程度”。

阅读全文 »

如今很多系统管理员依然通过组合使用诸如ifconfig、route、arp和netstat等命令行工具(统称为net-tools)来配置网络功能,解决网络故障。net-tools起源于BSD的TCP/IP工具箱,后来成为老版本Linux内核中配置网络功能的工具。但自2001年起,Linux社区已经对其停止维护。同时,一些Linux发行版比如Arch Linux和CentOS/RHEL 7则已经完全抛弃了net-tools,只支持iproute2。

阅读全文 »

HTTP状态码由三个十进制数字组成,第一个十进制数字定义了状态码的类型,后两个数字没有分类的作用。

阅读全文 »