摘要:
Windows中安装python开发工具 python软件安装 先下载python安装包并安装 下载地址是:https://www.python.org/downloads/ 我的电脑--属性--高级系统设置 环境变量 配置python的系统环境变量,配置完成之后在dos环境下,输入python命令 阅读全文
摘要:
tomcat 根目录配置方法 应用部署到tomcat容器中,使用http://127.0.0.1:8080/ 根目录访问而非 http://127.0.0.1:8080/ 项目名访问 2. 删除webapps下的所有内容,将应用的war包放入到除过webapps目录下的其他的目录,如/opt/xx/ 阅读全文
摘要:
设置centos7为图形界面版: 安装包:yum groupinstall "GNOME Desktop" 可能会报错: Transaction check error:file /boot/efi/EFI/centos from install of fwupdate-efi-12-5.el7.c 阅读全文
摘要:
spring boot 中使用xml请求 @JacksonXmlElementWrapper:可用于指定List等集合类,外围标签名;@JacksonXmlProperty:指定包装标签名,或者指定标签内部属性名;@JacksonXmlRootElement:指定生成xml根标签的名字;@Jacks 阅读全文
摘要:
mysql grant 授权 授权格式如:grant 权限 to 数据库对象 on 用户 阅读全文
摘要:
gitlab安装: 可以根据自己操作系统类型,根据以下链接进行对应的操作,https://about.gitlab.com/install/(gitlab不同服务器安装步骤) 以Centos为例,安装如下: 在CentOS系统上安装所需的依赖:ssh,防火墙,postfix(用于邮件通知) ,wge 阅读全文
摘要:
mysql cluster 中集群(管理节点 data节点 sql借点启动方法) --关闭集群在管理节执行命令[root@fxh config]# /cluster/bin/ndb_mgm -e shutdownConnected to Management Server at: localhost 阅读全文
摘要:
mysql-cluster插入数据时报表满错误(code 1114),导致的原因有很多,如内存不足、磁盘空间不够等等 错误如:ERROR 1114 (HY000) at line 54: The table 'xxxx.user' is full 查询方法:你分配的内存或者硬盘空间已经用完(如果你采 阅读全文
摘要:
mysql导入导出sql文件 window下 1.导出整个数据库mysqldump -u 用户名 -p 数据库名 > 导出的文件名mysqldump -u dbuser -p dbname > dbname.sql2.导出一个表mysqldump -u 用户名 -p 数据库名 表名> 导出的文件名m 阅读全文