上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 37 下一页
摘要: 使用svn连接过的工程,每个目录下都会带有一个.svn目录,当需要把所有svn目录删除时,手动操作相当麻烦,于是删除可以使用以下命令:在工程根目录创建一个bat文件,内容如下:@echo on@rem 删除SVN... 阅读全文
posted @ 2019-01-02 21:02 vtopqx 阅读(7) 评论(0) 推荐(0)
摘要: 程序连接Mysql的时候总是提示表不存在,Table 'xx.QRTZ_LOCKS' doesn't exist查询了下,数据库明明是有这个表的,搞了许久,网上据说是因为数据库对表的大小写设置问题,设置忽略大小写... 阅读全文
posted @ 2018-12-08 13:41 vtopqx 阅读(32) 评论(0) 推荐(0)
摘要: 错误如下:[root@vm2018 mysql]# ./scripts/mysql_install_db --user=mysql --datadir=/usr/local/mysql/data/mysqlFAT... 阅读全文
posted @ 2018-12-08 11:45 vtopqx 阅读(48) 评论(0) 推荐(0)
摘要: 在Eclipse中使用Ant编译打包,1、Eclipse安装Ant插件,一般高一点版本的Eclipse基本上都自带有ant了,2、配置Ant打包,右键项目>属性>BuildersA、在Buildfile中点击Br... 阅读全文
posted @ 2018-11-24 17:35 vtopqx 阅读(40) 评论(0) 推荐(0)
摘要: Nginx安装通常可以使用yum安装或者使用编译的方式安装,其中yum安装最简单,直接 yum install nginx 即可,配置文件默认会生成在/etc/nginx目录下。下面记录的是编译的方式安装,1、基... 阅读全文
posted @ 2018-11-24 17:10 vtopqx 阅读(8) 评论(0) 推荐(0)
摘要: Nginx配置静态资源访问,在server节点中加入一个location节点配置即可,其它配置不变,如下:location /file/ { alias /home/imgs/;}配置后,重启Nginx,即... 阅读全文
posted @ 2018-11-24 16:56 vtopqx 阅读(59) 评论(0) 推荐(0)
摘要: 默认是不支持远程连接的,需要开启相关权限,如下:mysql> grant all privileges on *.* to 'root'@'%' identified by 'root' with grant o... 阅读全文
posted @ 2018-11-10 10:52 vtopqx 阅读(11) 评论(0) 推荐(0)
摘要: 从一个表数据某列需要更新到另外一个表,可以使用多种方式实现:1、使用子查询方式:update A m set m.job_type = (select distinct job_type from B mp wh... 阅读全文
posted @ 2018-11-07 10:58 vtopqx 阅读(74) 评论(0) 推荐(0)
摘要: 通常在查询的时候数据量大的话会非常慢,因此用到了数据库索引,一般使用用普通索引就已经基本上满足了需要,数据库创建索引1、普通索引创建mysql> create index idx_userinfo on user... 阅读全文
posted @ 2018-11-07 10:56 vtopqx 阅读(25) 评论(0) 推荐(0)
摘要: Nginx安装后,找到安装目录(如果是yum安装的话,默认在/etc/nginx目录下),修改nginx.conf,简单配置如下:# For more information on configuration, ... 阅读全文
posted @ 2018-10-12 17:36 vtopqx 阅读(24) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 37 下一页