- 浏览: 1295516 次
- 性别:
- 来自: 北京
最新评论
-
masuweng:
Intellij idea 主题下载网址 -
mimicom:
还有一个情况, 也是连不上 2018-05-06T06:01: ...
docker-compose 部署shipyard -
lixuansong:
put()方法调用前必须先手动调用remove(),不然不会实 ...
JavaScript创建Map对象(转) -
jiao_zg22:
方便问下,去哪里下载包含Ext.ux.TabCloseMenu ...
Ext.ux.TabCloseMenu插件的使用(TabPanel右键关闭菜单) 示例 -
netwelfare:
对于基本类型的讲解,文章写的有点简单了,没有系统化,这篇文章介 ...
Java 基础类型范围
文章列表
基于Docker的dubbo容器,实现简单弹性云扩展
本文章基于该样例进行修改:
git clone https://github.com/binblee/dubbo-docker.git
cd dubbo-docker
ls -l
drwxr-xr-x 4 root root 43 3月 16 16:16 service-api
drwxr-xr-x 4 root root 60 3月 16 16:16 service-consumer
drwxr-xr-x 4 root root 60 3月 16 16:16 service-pr ...
javascript校验价格的正则表达式
var re=/^([1-9]\d*|0|)\.\d{2}$/
if(!re.test(value)){
格式不对,请参考:6.00
}
Docker容器安装的mysql ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
使用的是官方镜像 mysql:5.7
刚开始在容器内部使用
mysql -pyourpasswd
mysql -uroot -pyourpasswd
mysql -uroot -pyourpasswd -h127.0.0.1
登录了N次一直上不去,老是报错 ERROR 1045
最后用了一个完整的命令,却登上去了
mysql -uroot -pyourpas ...
docker/compose中links/external_links的区别
参考:
http://blog.csdn.net/halcyonbaby/article/details/47904085
http://stackoverflow.com/questions/35154441/docker-compose-links-vs-external-links
将两个服务链接 起来,使之可以通信。方法是设置/etc/hosts的域名解析。
external_links
与外部创建(可以是之前调用compose通过其他yml创建的,也可以是手工创建 ...
sed修改第一个匹配的行
- 博客分类:
- Shell
sed修改第一个匹配的行
参考:
http://bbs.chinaunix.net/thread-3616467-1-1.html
36
12
12
第一个12 修改成 34 ,第二个12 不修改
sed '1,/12/{s/12/34/}'
docker-compose 部署shipyard
参考:
https://shipyard-project.com/
docker-compose.yml文件下载(附件里也有)
https://github.com/crabdave/Docker-shipyard.git
修改vim /etc/sysconfig/docker
OPTIONS= 中添加-H tcp://0.0.0.0:2375 -H unix:///var/run/docker.sock
然后systemctl restart docker.service
msg="Err ...
Jenkins常用构建时间Poll Scm的设置
每分钟构建一次 */1 * * * *
参考:
http://blog.csdn.net/yezicjj/article/details/52763700
jps(Java Virtual Machine Process Status Tool)
JDK 1.5提供的一个显示当前所有Java进程pid的命令,简单实用,非常适合在Linux/unix平台上简单察看当前java进程的一些简单情况。
jps -l 输出应用程序main class的完整package名 或者 应用程序的jar文件完整路径名
jps -v 输出传递给JVM的参数
jps -m 输出传递给main 方法的参数,在嵌入式jvm上可能是null
jps -q 只显示pid,不显示class名称,jar文件名和传递给main 方法的参数
参考 ...
Element ui 后台管理 Demo
- 博客分类:
- Nodejs
Element ui 后台管理 Demo
https://github.com/taylorchen709/vueAdmin
https://taylorchen709.github.io/vueAdmin/#/user
Element ui 文档
http://element.eleme.io/#/zh-CN/guide/design
vue WangEditor 富文本编辑器 config
https://github.com/jiangyoucai/vue-editor
editor.config.uploadImgUrl = `${apiHost}/uploadimg/` // 图片上传
editor.config.uploadImgFileName = 'files' //后台代码接收文件的字段名称
editor.config.uploadHeaders = {"X-Requested-With": "XMLHttpRequest"}
Docker的四种网络模式
- 博客分类:
- Docker
Docker的四种网络模式
参考:
http://www.cnblogs.com/frankielf0921/p/5822699.html
Linux压力测试软件stress
- 博客分类:
- Linux
Linux压力测试软件stress
参考:
http://blog.sina.com.cn/s/blog_5f50a4c80101pdik.html
产生12个cpu进程6个io进程1分钟后停止运行
stress -c 12 -i 6 --verbose --timeout 1m
-c forks
--cpu forks
产生多个处理sqrt()函数的CPU进程
-i forks
--io forks
产生多个处理sync()函数的磁盘I/O进程
-v
--verbose 显示详细运行信息
-t secs
--timeou ...
Centos 安装阿里云EPEL源
- 博客分类:
- Linux
Centos 安装阿里云EPEL源
1、 首先卸载以前装的epel以免影响
rpm -e epel-release
2、 下载阿里提供的epel
wget -P /etc/yum.repos.d/ http://mirrors.aliyun.com/repo/epel-6.repo
3、yum clean all
4、yum makecache
axios 拦截器 interceptors
- 博客分类:
- Nodejs
axios 拦截器 interceptors
参考:
https://github.com/mzabriskie/axios
http://www.kancloud.cn/yunye/axios/234845
http://www.cnblogs.com/dhsz/p/6410031.html
// http request 拦截器
axios.interceptors.request.use(
config => {
if (store.state.token) { // 判断是否存在token,如果存在的话,则每个http he ...
Maven Pofile 打war包时排除某个jar
参考:http://stackoverflow.com/questions/13819558/maven-profile-removing-dependency
反过来想,激活某个profile时将该jar添加进dependencies
比如:持续集成时(profile ci),需要使用某一个Jar,但发布生产时(profile prod),需要将该jar排除
<profiles>
<profile>
<id>ci</id>
...