直接在pom.xml中添加阿里的镜像 <repositories> <repository> <id>aliyun</id> <name>aliyun</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</url> <la ...
分类:
其他好文 时间:
2018-02-06 14:12:40
阅读次数:
172
一、堡垒机表结构 二、创建表 # -*- coding: UTF-8 -*- from sqlalchemy.ext.declarative import declarative_base from sqlalchemy import Column, Integer, String, UniqueC ...
分类:
其他好文 时间:
2018-02-05 14:26:02
阅读次数:
145
一、简介 正则表达式本身是一种小型的、高度专业化的编程语言,而在python中,通过内嵌集成re模块,程序媛们可以直接调用来实现正则匹配。正则表达式模式被编译成一系列的字节码,然后由用C编写的匹配引擎执行。 二、正则表达式中常用的字符含义 1、普通字符和11个元字符: 匹配自身 abc abc . ...
分类:
编程语言 时间:
2018-02-05 00:29:44
阅读次数:
236
maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/' } 以下两句必要时加入: dependencies { compile 'commons-lang:commons-lang:2.4' } 当然,你可以根据自己公司的实 ...
分类:
其他好文 时间:
2018-02-03 12:32:43
阅读次数:
337
<!--<mirror>--> <!--<id>alimaven</id>--> <!--<name>aliyun maven</name>--> <!--<url>http://maven.aliyun.com/nexus/content/groups/public/</url>--> <!--< ...
分类:
其他好文 时间:
2018-02-01 00:16:15
阅读次数:
136
1.相关文件夹: /etc/yum 内容: pluginconf.d protected.d vars version-groups.conf /etc/yum.repos.d 内容: CentOS-Base.repo CentOS-Media.repo mysql-community.repoCe ...
分类:
其他好文 时间:
2018-01-31 00:58:47
阅读次数:
164
以下四个都是可用的: [html] view plain copy http://mirrors.ibiblio.org/maven2/ http://mvnrepository.com/ http://repository.jboss.org/nexus/content/groups/public ...
分类:
其他好文 时间:
2018-01-31 00:52:12
阅读次数:
158
目的:将/u2和/u3分区删除后,合并为/u4分区。1、先取消/u2和/u3分区的挂载[root@fdisk~]#umount/u2[root@fdisk~]#umount/u3[root@fdisk~]#df-h文件系统容量已用可用已用%%挂载点/dev/sda522G2.0G19G10%/tmpfs911M0911M0%/dev/shm/dev/sda1194M32M153M18%/boot/
分类:
其他好文 时间:
2018-01-30 12:51:29
阅读次数:
187
mysql>use zabbix;显示zabbix数据库中的表大小;mysql>SELECT table_name AS "Tables", round(((data_length + index_length) / 1024 / 1024), 2) "Size in MB" FROM information_schema.TABLES WHER
分类:
其他好文 时间:
2018-01-29 17:37:40
阅读次数:
224
Dispatch Groups are objects that allow several tasks to be grouped for later joining. Tasks can be added to a queue as a member of a group, and then t ...
分类:
其他好文 时间:
2018-01-28 11:30:20
阅读次数:
150