摘要: 转自:https://www.cnblogs.com/David3290/p/11378579.html SELECT a.id, a. NAME, substring_index( substring_index( a.shareholder,',',b.help_topic_id + 1),', 阅读全文
posted @ 2021-05-08 23:19 neoQVQ 阅读(1626) 评论(0) 推荐(0)
摘要: 1:[Err] 1055 - Expression #1 of ORDER BY clause is not in GROUP BY clause and contains nonaggregated column 'information_schema.PROFILING.SEQ' which i 阅读全文
posted @ 2021-05-08 23:11 neoQVQ 阅读(43) 评论(0) 推荐(0)
摘要: 官网下载 uditor jsp版本插件 在html页面中引入 ueditor.config.js ueditor.all.min.js 展示: <div id="editor" style="height:360px"> </div> 需要加载编辑器 var ue = UE.getEditor('e 阅读全文
posted @ 2021-05-08 23:09 neoQVQ 阅读(99) 评论(0) 推荐(0)
摘要: 在其他什么 改jvm-options等操作下无效 修改Tomcat安装目录下的conf文件中的logging.porperty文件中的内容: 把需要修改的乱码log信息,对应的位置进行修改,我的是需要把UTF-8修改为GBK。 第28行,把UTF-8改为GBK 第33行,把UTF-8改为GBK 第4 阅读全文
posted @ 2021-05-08 23:06 neoQVQ 阅读(154) 评论(0) 推荐(0)
摘要: windows下文件校验: certutil -hashfile filename MD5 certutil -hashfile filename SHA1 certutil -hashfile filename SHA256 linux 下文件校验: md5sum file1 file2 当两个文 阅读全文
posted @ 2021-05-08 23:05 neoQVQ 阅读(583) 评论(0) 推荐(0)
摘要: 1:删除当前目录下 后缀为 ”.***“的文件 find -name "*.txt" -exec rm -f '{}' \; 删除后缀为.txt的文件 2:清空某个文件的内容 echo "" > filename 阅读全文
posted @ 2021-05-08 23:03 neoQVQ 阅读(381) 评论(0) 推荐(0)
摘要: 先卸载SVN: 判断之前是否已经安装了svn svn 卸载之前的svn sudo apt-get remove --purge subversion 安装svn sudo apt-get update sudo apt-get install subversion 创建版本库 sudo mkdir 阅读全文
posted @ 2021-05-08 23:01 neoQVQ 阅读(81) 评论(0) 推荐(0)
摘要: sudo cat /etc/mysql/debian.cnf mysql -u debian-sys-maint -p //注意:后面需要输入的密码是上一个命令看的文件password后的值 use mysql; // 下面这句命令有点长,请注意。 update mysql.user set aut 阅读全文
posted @ 2021-05-08 22:57 neoQVQ 阅读(256) 评论(0) 推荐(0)
摘要: 1:安装nginx sudo apt-get update sudo apt-get install nginx 此时安装结束 2:配置(A是主服务器,作用是转发到B,C,接收请求 BC是处理请求服务器),配置是在A服务器中配置的 upstream mytomcats { #根据访问客户端ip的ha 阅读全文
posted @ 2021-05-08 22:55 neoQVQ 阅读(129) 评论(0) 推荐(0)
摘要: 1.虚拟机安装ssh服务:sudo apt-get openssh-server 2.虚拟机新建目录test 3.修改test文件夹的访问权限:sudo chmod 777 test 用户都拥有读写执行的权限 4.查询虚拟机ip:ifconfig -a 5.使用filezilla连接虚拟机(ip+用 阅读全文
posted @ 2021-05-08 22:53 neoQVQ 阅读(244) 评论(0) 推荐(0)
摘要: 忘记了之前看的哪位大佬的博客。。。若有侵权请联系删除 软件源的地址配置地址在 /etc/apt/sources.list 1. 先备份之前的配置文件 sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak 1.1 修改配置文件 sudo vim 阅读全文
posted @ 2021-05-08 22:51 neoQVQ 阅读(973) 评论(0) 推荐(0)
摘要: 注:这篇文章是之前看的其他大神的博客,现在没找到出处,若有侵权,请联系删除。谢谢 1.下载nginx 方法一 wget http://nginx.org/download/nginx-1.11.6.tar.gz 方法二 http://nginx.org/en/download.html在Nginx官 阅读全文
posted @ 2021-05-08 22:45 neoQVQ 阅读(62) 评论(0) 推荐(0)
摘要: 1:打开iptables文件:位置在 /etc/sysconfig/iptables 2:修改完之后重启防火墙 : service iptables restart 阅读全文
posted @ 2021-05-08 22:38 neoQVQ 阅读(45) 评论(0) 推荐(0)