摘要:
docker build -t stock_data_repo_instance24 . docker run -v /opt/log:/opt/log -d -it stock_data_repo_instance24 docker build -t web_instance1 .docker r 阅读全文
摘要:
1. brew install pkg-config2. brew install zmq3. export PKG_CONFIG_PATH="/usr/local/lib/pkgconfig"4. npm install zmq -gdone. 阅读全文
摘要:
首先创建一个发送邮件的bash脚本 - send_mail.sh: #!/bin/bash curl -s --user 'api:key-xxxxxxxxxxxxx' \ https://api.mailgun.net/v3/xxxxxxx/messages \ -F from='Support 阅读全文
摘要:
在centos7下,运行docker run的时候会发生cgroup.procs: no such device的错误,解决方法是编辑 /lib/systemd/system/docker.service 文件,在其中的 ExecStart=/usr/bin/docker daemon -H fd: 阅读全文
摘要:
vi /usr/local/etc/redis.conf修改dir "/Volumes/KG's Big YO/Documents/redis_data"最后,启动Redis:redis-server /usr/local/etc/redis.confDone.原文:http://www.lovew... 阅读全文
摘要:
1. brew install mariadb2. mysql_install_db --verbose --user=$USER --basedir=/usr/local/Cellar/mariadb/10.1.8 --datadir="/Volumes/KG's Big YO/Documents... 阅读全文
摘要:
最近在安装db-migrate的时候,有一个依赖包sqlite3怎样都安装不了,检查下来应该是由于node_sqlit3.node文件无法从Amazon下载导致(源码安装也报错,没有研究过原因)。于是就打算直接下载安装包安装,方法如下:在浏览器中输入https://registry.npmjs.or... 阅读全文
摘要:
首先参考这篇文章:http://docs-static.daocloud.io/daocloud-services/volume-controller但是按照这篇文章,最后的主题是没有办法应用上去的,原因在于需要修改项目中的config.example.js文件,在production节点中添加如下... 阅读全文
摘要:
Linux, Mac OS X, Solaris, etc.Unix is easy. Just run the following command. Use sudo if necessary.$ [sudo] npm explore npm -g -- npm install node-gyp@... 阅读全文
摘要:
在某些机型上,MediaRecorder在调用start方法时,会出现start failed的错误,有一种可能是setVideoFrameRate导致的。要解决这个问题,只需要注释掉这条语句就可以了。mediaRecorder.setVideoFrameRate(16); 阅读全文