摘要:
docker save docker load .tar 阅读全文
摘要:
cat mem.sh#!/bin/bashIP=`ifconfig | grep 'inet ' | grep -v '127.0.0.1' | awk -F ' ' '{print $2}'| awk -F':' '{print $2}'| head -n 1` //获取IPMAX_mem=95M... 阅读全文
摘要:
#!/bin/sh# Source the common setup functions for startup scriptstest -r /etc/rc.common || exit 1. /etc/rc.commonSCRIPT="/usr/local/Cellar/mysql/5.6.22... 阅读全文
摘要:
参考:http://blog.csdn.net/ichsonx/article/details/146428971、 为什么使用Nexus 如果没有私服,我们所需的所有构件都需要通过maven的中央仓库和第三方的Maven仓库下载到本地,而一个团队中的所有人都重复的从maven仓库下载构件无疑加大了... 阅读全文
摘要:
After Update from jre-7_21 to jre-7_45: Java HotSpot(TM) 64-Bit Server VM warning: INFO: os::commit_memory() failed; error='Cannot allocate memory' (e... 阅读全文
摘要:
24、跳过单元测试org.apache.maven.pluginsmaven-surefire-plugintrue或使用命令:mvn install -Dmaven.test.skip=true 阅读全文
摘要:
Client side: yeoman,grunt,bower,angularjsServer side: maven,spring,spring mvc rest,spring data jpa 阅读全文
摘要:
mvn dependency:copy-dependencies org.apache.maven.plugins maven-assembly-plugin ... 阅读全文
摘要:
现象:1) boot2docker ssh需要输入密码2) boot2docker start 或 up 需要输入密码解决方法:1)删除/Users/sunzhaoyu/.boot2docker/certs/boot2docker-vm 目录;2)执行boot2docker delete、boot2... 阅读全文
摘要:
# 第一个-d表示让容器在后台运行# 末尾的-D表示启动ssh的daemon模式,不然容器启动后立刻就变为停止状态了docker run -d NAME/VERSION /etc/init.d/ssh start -D 阅读全文