01 2018 档案
摘要:1、Linux安装Memcache : curl -O http://memcached.org/files/memcached-1.5.4.tar.gz 解压 2、启动Memcache: memcached -d -m 64 -p 11211 -u root , 关闭memcache : 查看其端
阅读全文
摘要:1.下载:curl -O http://download.redis.io/releases/redis-4.0.6.tar.gz 2.在/usr/local/redis上解压:tar -zxvf redis-4.0.6.tar.gz ,并重全名为redis 3.cd /usr/local/redi
阅读全文
摘要:注:接收不需要连接池,而发送需要连接池,是因为,接收在启动项目时就要注册监听,数目是固定的,而发送则会随着时间数目不断在变动,需要连接池,性能更优。 重点代码: private static void initMQObjectPool() { private static Map<String, G
阅读全文
摘要:1.下载安装包:curl -O https://archive.apache.org/dist/activemq/5.14.0/apache-activemq-5.14.0-bin.tar.gz 2.解压:tar -zxvf apache-activemq-5.14.0-bin.tar.gz 3.重
阅读全文
摘要:1.下载mongo: curl -O https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.0.6.tgz 2.解压: tar -zxvf mongodb-linux-x86_64-3.0.6.tgz 3.重新命名:mv mongodb-li
阅读全文
摘要:Jenkins:基于linux构建ivy项目并发布到resin (二) 基于以上《Jenkins:VMware虚拟机Linux系统的详细安装和使用教程(一)》的配置再进行对ivy项目构建: 启动tomcat:sh startup.sh ,在浏览器访问jenkins:https://linuxIP/j
阅读全文
摘要:jenkins:VMware虚拟机Linux系统的详细安装和使用教程 (一) <Jenkins:基于linux构建ivy项目 (二)> 不是windows安装虚拟机可跳过 1.Windows安装VMware 2.VMware安装linux系统 3.windows用putty或SecureCRT连接l
阅读全文