Mysql ERROR 1040 (HY000): Too many connections
修改my.cnf配置文件添加并需要重启:
[mysqld]
wait_timeout = 600
interactive_timeout = 600
即:10分钟内该连接没有请求就断开
MySQL批量插入主键重复
insert into 改为 insert ignore into
SVN服务器迁移 svnadmin: E000002: Can’t open file ‘/opt/svn/fireweb/format’: No such file or directory
- 导出:
svnadmin dump F:/workspace/Shanfeng/fireweb >fireweb
- 创建新目录:
svnadmin create ./opt/svn/fireweb
- 导入:
svnadmin load /opt/svn/fireweb </opt/fireweb
- 重新定位svn地址到新地址
启动svn服务:
svnserve -d -r /opt/svn
停止svn服务:
killall svnserve
2018-09-17
spring 开发环境与生产环境配置
1.开发、生产配置文件
将已有的resources.properties
拆分为resources-dev.properties
与resources-prod.properties
,分别存放开发与生产环境下的DB连接、MQ连接;
2.在spring配置文件中设置profile,引入对应的beans
<context:property-placeholder location=“classpath:conf/resources-dev.properties”/>
<context:property-placeholder location=“classpath:conf/resources-prod.properties”/>
Note: 必须放在配置文件xml的最下面(包括import),否则xml报错,无法启动。
3.激活profile
Method1. web.xml配置
spring.profiles.active
dev
Method2. 修改 Tomcat 启动脚本 catalina.bat
set JAVA_OPTS=“-Dspring.profiles.active=prod”
2018-09-29
node.js 安装nodejieba报错
node-gyp rebuild
if not defined npm_config_node_gyp (node “E:\Program Files\nodejs\node_modules\npm\node_modules\npm-lifecycle\node-gyp-bin\…\node_modules\node-gyp\bin\node-gyp.js” rebuild ) else (node “E:\Program Files\nodejs\node_modules\npm\node_modules\node-gyp\bin\node-gyp.js” rebuild )
gyp ERR! configure error
gyp ERR! stack Error: Can’t find Python executable “E:\Anaconda3\python.EXE”, you can set the PYTHON env variable.
gyp ERR! stack at PythonFinder.failNoPython (E:\Program Files\nodejs\node_modules\npm\node_modules\node-gyp\lib\configure.js:483:19)
gyp ERR! stack at PythonFinder. (E:\Program Files\nodejs\node_modules\npm\node_modules\node-gyp\lib\configure.js:508:16)
gyp ERR! stack at E:\Program Files\nodejs\node_modules\npm\node_modules\graceful-fs\polyfills.js:284:29
gyp ERR! stack at FSReqWrap.oncomplete (fs.js:152:21)
gyp ERR! System Windows_NT 6.1.7601
MSBUILD : error MSB3428: 未能加载 Visual C++ 组件“VCBuild.exe”。
需要安装windows环境构建工具:npm install --global --production windows-build-tools
其中包含python 2.7与vs_BuildTools.exe
2018-10-12
MySQL 保存微信昵称(含表情等特殊字符)报错
- 修改my.cnf配置文件,character-set-server=utf8mb4,并重启
[mysqld]
character-set-server=utf8mb4
- 修改数据表字段编码类型
ALTER TABLE b_wx CHANGE nickname nickname varchar(30) character set utf8mb4 collate utf8mb4_unicode_ci;
这样,可以将包含表情的微信昵称保存至数据表,不过表中仍然无法显示,在Web页面可以显示相应的表情。
- Appearance:
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-d0iEBZE7-1632377389090)(https://github.com/heartsuit/heartsuit.github.io/raw/master/pictures/2018-10-12-WXNickName.jpg)]
PS:一个有趣的发现:昵称中的表情在FireFox中显示为彩色,Chrome中显示为灰色;
2018-11-02
https下使用WebSocket
最全的Linux教程,Linux从入门到精通
======================
-
linux从入门到精通(第2版)
-
Linux系统移植
-
Linux驱动开发入门与实战
-
LINUX 系统移植 第2版
-
Linux开源网络全栈详解 从DPDK到OpenFlow
第一份《Linux从入门到精通》466页
====================
内容简介
====
本书是获得了很多读者好评的Linux经典畅销书**《Linux从入门到精通》的第2版**。本书第1版出版后曾经多次印刷,并被51CTO读书频道评为“最受读者喜爱的原创IT技术图书奖”。本书第﹖版以最新的Ubuntu 12.04为版本,循序渐进地向读者介绍了Linux 的基础应用、系统管理、网络应用、娱乐和办公、程序开发、服务器配置、系统安全等。本书附带1张光盘,内容为本书配套多媒体教学视频。另外,本书还为读者提供了大量的Linux学习资料和Ubuntu安装镜像文件,供读者免费下载。
本书适合广大Linux初中级用户、开源软件爱好者和大专院校的学生阅读,同时也非常适合准备从事Linux平台开发的各类人员。
需要《Linux入门到精通》、《linux系统移植》、《Linux驱动开发入门实战》、《Linux开源网络全栈》电子书籍及教程的工程师朋友们劳烦您转发+评论
网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。
一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!