2020年3月16日
摘要: 1.配置tomcat-1 修改server.xml里三个端口号 server port 8005-8015 connector http port 8080-8888 connector ajp port 8009-8019 2.配置tomcat-2 修改server.xml里三个端口号 serve 阅读全文
posted @ 2020-03-16 11:14 XZhe 阅读(279) 评论(0) 推荐(0) 编辑
  2020年3月6日
摘要: git init初始化仓库后 git add . 添加当前目录所有文件出现以下错误 1.第一种 warning: LF will be replaced by CRLF in .bomr/bomr.yaml.The file will have its original line endings i 阅读全文
posted @ 2020-03-06 22:58 XZhe 阅读(505) 评论(0) 推荐(0) 编辑
  2020年1月24日
摘要: rpm -qa|grep python3|xargs rpm -ev --allmatches --nodeps 卸载pyhton3 whereis python3 |xargs rm -frv 删除所有残余文件 成功卸载! whereis python 查看现有安装的python 阅读全文
posted @ 2020-01-24 20:33 XZhe 阅读(596) 评论(0) 推荐(0) 编辑
摘要: https://blog.51cto.com/leoheng/2142850 阅读全文
posted @ 2020-01-24 20:12 XZhe 阅读(408) 评论(0) 推荐(0) 编辑
  2019年12月7日
摘要: 1.maven pom文件里指定打包类型 2.jdk工具 进入servlet目录,执行jar -cf war名 * 阅读全文
posted @ 2019-12-07 09:39 XZhe 阅读(540) 评论(0) 推荐(0) 编辑
  2019年10月29日
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2019-10-29 17:44 XZhe 阅读(1) 评论(0) 推荐(0) 编辑
  2019年9月24日
摘要: mac 3c:32:66:67:dd:46 linklocal地址 前六位固定 fe80:: 第七位 mac地址第一个byte进行如下计算 (byte) ((byte) (macbyte & 0xFD) | (~(macbyte & 0x02)) & 0x02) 再通过integer.toHexSt 阅读全文
posted @ 2019-09-24 10:50 XZhe 阅读(685) 评论(0) 推荐(0) 编辑
  2019年8月8日
摘要: 假设我们要设置代理为 IP:PORT 1、网页上网网页上网设置代理很简单,在firefox浏览器下 Edit-->>Preferences-->>Advanced-->>Network 在Connection下点击Settings,里面的manual proxy configuration里设置IP 阅读全文
posted @ 2019-08-08 16:37 XZhe 阅读(573) 评论(0) 推荐(0) 编辑
摘要: 方式1(yum安装):1、首先安装epel扩展源:[root@localhost ~]# yum -y install epel-release如果没有安装epel扩展源而直接安装python-pip时,会出现找到该软件包的错误。这是因为像centos这类衍生出来的发行版,他们的源有时候内容更新的比 阅读全文
posted @ 2019-08-08 10:33 XZhe 阅读(216) 评论(0) 推荐(0) 编辑
  2019年8月7日
摘要: yum install -y httpd subversion mod_dav_svn mkdir -p /var/lib/svn cd /var/lib/svn svnadmin create devops chown -R apache:apache devops selinux开启(关闭也可以 阅读全文
posted @ 2019-08-07 17:02 XZhe 阅读(327) 评论(0) 推荐(0) 编辑