上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页
摘要: LVS DR模式搭建• 三台机器 • 分发器,也叫调度器(简写为dir)172.16.161.130 • rs1 172.16.161.131 • rs2 172.16.161.132 • vip 172.16.161.200(同网段) • dir上编写脚本 vim /usr/local/sbin/lvs_dr.sh //内容如下 #! /bin/bash echo 1 > /p... 阅读全文
posted @ 2018-04-15 13:10 zhaocundang 阅读(241) 评论(0) 推荐(0) 编辑
摘要: LVS BAT模式搭建 更改主机名: hostnamectl set-hostname centos7-three bash 准备工作 • 三台机器 • 分发器,也叫调度器(简写为dir) • 内网:172.16.161.130,外网:172.16.138.128(vmware仅主机模式) • rs 阅读全文
posted @ 2018-04-12 22:30 zhaocundang 阅读(255) 评论(0) 推荐(0) 编辑
摘要: 主机器: [root@CentOS7 nginx-1.13.9]# > /usr/local/nginx/html/index.html [root@CentOS7 nginx-1.13.9]# vim !$ vim /usr/local/nginx/html/index.html 从机器: vim 阅读全文
posted @ 2018-04-10 22:28 zhaocundang 阅读(268) 评论(0) 推荐(0) 编辑
摘要: 配置主: • 安装mysql • 修改my.cnf,增加server-id=130和log_bin=xiaobo1 • 添加环境变量 Vim /root/.bash_profile PATH=$PATH:/usr/local/mysql/bin/ 生效source !$ • 修改完配置文件后,启动或者重启mysqld服务 • /etc/init.d/mysqld restart • 把mysq... 阅读全文
posted @ 2018-04-10 22:25 zhaocundang 阅读(242) 评论(0) 推荐(0) 编辑
摘要: 多线程的服务器程序 线程中等待客户端的消息 我的代码能实现服务器与客户端的通信 问题是: 当客户端中断或退出 以上代码却不能判断Socket中断 跳不出while的无限循环 解决方法: 1. while(Binput.read()!= -1) 这种方法 能判断出客户端输入是否为空 客户端断开 能跳出 阅读全文
posted @ 2018-04-06 09:49 zhaocundang 阅读(2670) 评论(0) 推荐(0) 编辑
摘要: 项目中借鉴了以下资料: https://www.cnblogs.com/whenever/p/5526420.html https://www.cnblogs.com/jpwz/p/5715852.html https://www.cnblogs.com/sddychj/p/6102192.html 阅读全文
posted @ 2018-04-06 00:10 zhaocundang 阅读(917) 评论(0) 推荐(0) 编辑
摘要: select avg(data1) as a from temp WHERE YEAR(mdate)= 2018 and MONTH(mdate)=03 and day(mdate)=25 GROUP BY hour(mdate); 6 6 10 9 10 11 10 14 17 18 19 20 阅读全文
posted @ 2018-04-03 22:47 zhaocundang 阅读(535) 评论(0) 推荐(0) 编辑
摘要: 配置Tomcat监听80端口 配置Tomcat虚拟主机 Tomcat 日志 阅读全文
posted @ 2018-04-01 23:14 zhaocundang 阅读(274) 评论(0) 推荐(0) 编辑
摘要: Tomcat介绍 Tomcat是Apache软件基金会(Apache Software Foundation)的Jakarta项目中的一个核心项目,由Apache、Sun和其他一些公司及个人共同开发而成。 java程序写的网站用tomcat+jdk来运行 tomcat是一个中间件,真正起作用的,解析 阅读全文
posted @ 2018-04-01 23:12 zhaocundang 阅读(199) 评论(0) 推荐(0) 编辑
摘要: xshell使用xftp传输文件 下载xftp5 https://www.baidu.com/link?url=8rtxgX3JRIbUFO1Samzv5aXhfwRG7Cf8i4vi573QexoHihu9t3gw7ewCR_SJGJBZnyjVkzVrWt1CDmsh5YhowBZwbD71Vf 阅读全文
posted @ 2018-04-01 23:09 zhaocundang 阅读(262) 评论(0) 推荐(0) 编辑
摘要: 0 6 * * * sh /email/ip.sh 阅读全文
posted @ 2018-03-29 21:16 zhaocundang 阅读(780) 评论(0) 推荐(0) 编辑
摘要: iwlist scan sudovim /etc/wpa_supplicant/wpa_supplicant.conf network={ ssid="WIFINAME" psk="password" } sudo /etc/init.d/networking restart 阅读全文
posted @ 2018-03-29 18:00 zhaocundang 阅读(1867) 评论(0) 推荐(0) 编辑
摘要: $ sudo nano /etc/apt/sources.list deb http://mirrors.tuna.tsinghua.edu.cn/raspbian/raspbian/ stretch main contrib non-free rpi deb-src http://mirrors.tuna.tsinghua.edu.cn/raspbian/raspbian/ stretc... 阅读全文
posted @ 2018-03-27 20:32 zhaocundang 阅读(274) 评论(0) 推荐(0) 编辑
摘要: 打开终端输入:diskutil list找到EFI这个分区,挂载EFI分区diskutil mount /dev/disk0s1回到Finder 删除除apple之外的两个文件夹就可以了(删除win10 EFI启动文件) 阅读全文
posted @ 2018-03-27 20:23 zhaocundang 阅读(2404) 评论(0) 推荐(0) 编辑
摘要: exportfs命令 • 常用选项 • -a 全部挂载或者全部卸载 • -r 重新挂载 • -u 卸载某一个目录 • -v 显示共享目录 • 以下操作在服务端上 • vim /etc/exports //增加 /tmp/ 192.168.133.0/24(rw,sync,no_root_squash 阅读全文
posted @ 2018-03-27 20:00 zhaocundang 阅读(147) 评论(0) 推荐(0) 编辑
摘要: NFS 介绍 阅读全文
posted @ 2018-03-27 19:58 zhaocundang 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-03-25 21:32 zhaocundang 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-03-25 21:28 zhaocundang 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 1. 服务器规则添加 3306端口 2. mysql localhost 改为% mysql> select user, host from mysql.user; GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'root' WITH 阅读全文
posted @ 2018-03-20 17:50 zhaocundang 阅读(260) 评论(0) 推荐(0) 编辑
摘要: php-fpm的pool • vim /usr/local/php/etc/php-fpm.conf//在[global]部分增加 • include = etc/php-fpm.d/*.conf • mkdir /usr/local/php/etc/php-fpm.d/ • cd /usr/local/php/etc/php-fpm.d/ • vim www.conf //内容如下 [www... 阅读全文
posted @ 2018-03-20 16:30 zhaocundang 阅读(331) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-03-20 16:28 zhaocundang 阅读(236) 评论(0) 推荐(0) 编辑
摘要: 重置mysql密码。 假设我们使用的是root账户。 1.重置密码的第一步就是跳过MySQL的密码认证过程,方法如下: #vim /etc/my.cnf(注:windows下修改的是my.ini) 在文档内搜索mysqld定位到[mysqld]文本段:/mysqld(在vim编辑状态下直接输入该命令 阅读全文
posted @ 2018-03-20 07:41 zhaocundang 阅读(203) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-03-19 22:25 zhaocundang 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-03-19 22:21 zhaocundang 阅读(298) 评论(0) 推荐(0) 编辑
摘要: 步骤一:解压安装NTFS-3G,使用如下命令。 sudo apt-get install ntfs-3g 步骤二:配置挂载NTFS格式的移动硬盘 1. 首先得到NTFS分区的信息 sudo fdisk -l | grep NTFS root@pi_2:~# fdisk -l |grep NTFS / 阅读全文
posted @ 2018-03-16 23:27 zhaocundang 阅读(1067) 评论(0) 推荐(0) 编辑
摘要: Nginx安装 cd /usr/local/src (http://nginx.org/en/download.html) wget http://nginx.org/download/nginx-1.13.9.tar.gz tar zxf nginx-1.12.1.tar.gz ./configu 阅读全文
posted @ 2018-03-13 22:59 zhaocundang 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-03-13 22:52 zhaocundang 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-03-10 18:57 zhaocundang 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-03-10 18:55 zhaocundang 阅读(202) 评论(0) 推荐(0) 编辑
摘要: <!--EndFragment--> 阅读全文
posted @ 2018-03-10 18:50 zhaocundang 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 禁用服务方式如下: 或者 我的电脑右键->管理->服务,进入后手动禁用。 1.在cmd中,输入sc delete mysql,删除服务。 2.但是MYSQL服务只是显示禁用状态,并没有真正清理干净。 3.删除相关注册表信息 在Win7开始菜单栏搜索 regedit 进入注册表编辑器(在cmd下输入此 阅读全文
posted @ 2018-03-10 17:13 zhaocundang 阅读(33535) 评论(0) 推荐(3) 编辑
摘要: 1.eclipse version: Eclipse Java EE IDE for Web Developers. Version: Oxygen.1 Release (4.7.1) Build id: 20170914-1200 (from -->http://www.cnblogs.com/x 阅读全文
posted @ 2018-03-08 13:11 zhaocundang 阅读(714) 评论(0) 推荐(0) 编辑
摘要: 访问日志不记录静态文件 访问日志切割 静态元素过期时间 阅读全文
posted @ 2018-03-05 22:47 zhaocundang 阅读(186) 评论(0) 推荐(0) 编辑
摘要: echo 手机厂商号 >> ~/.android/adb_usb.ini ~ echo 0x18d1 >> ~/.android/adb_usb.ini 重启系统即可 环境变量 vim .profile 添加:(根据自己SDK存放的位置而定) export PATH=${PATH}:/Applica 阅读全文
posted @ 2018-03-04 18:09 zhaocundang 阅读(315) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-03-03 22:04 zhaocundang 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-03-01 21:19 zhaocundang 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 安装 PHP5 安装php7 阅读全文
posted @ 2018-02-28 19:35 zhaocundang 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-02-27 23:01 zhaocundang 阅读(329) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-02-26 21:30 zhaocundang 阅读(178) 评论(0) 推荐(0) 编辑
摘要: Manifest下必须有二级域名 <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="my.net" 任意:com.net 阅读全文
posted @ 2018-02-23 13:35 zhaocundang 阅读(182) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页