-- left join 以左边的表为主,根据on关联条件,左边所有的数据都会显示出来,右边表中在左边没有匹配的数据会以Null来代替 -- right join 是以右边为主,根据on关联查询出数据,根据on关联出来的数据会选出来,左边表中在右边没有匹配的数据会以Null来代替 -- inner ... ...
分类:
数据库 时间:
2017-11-27 15:23:43
阅读次数:
317
平常用centos6.5系统的,今天用了下rhel5.6系统,进行操作了下Linux双网卡绑定,配置双网卡文件如下:vim/etc/sysconfig/network-scripts/ifcfg-bond0DEVICE=bond0BOOTPROTO=staticIPADDR=192.168.181.1#它是在默认的为192.168.181.1网段NETMASK=255.255.255.0NETWORK=192.168...
分类:
其他好文 时间:
2017-11-17 00:00:34
阅读次数:
176
临时增加IP命令:ifconfig eth0:1 ip地址 netmask 子网码 broadcast 广播地址 gateway 网关 ifconfig eth0:1 10.1.104.65 netmask 255.255.255.0 broadcast 10.1.104.255 gateway 1 ...
分类:
系统相关 时间:
2017-11-16 11:38:42
阅读次数:
204
#!/bin/bash
#创建一个名为bond0的链路接口
IP=$1
GATE=192.168.18.1
ETH1=eno1
ETH2=eno2
#ETH3=eno3
#ETH4=eno4
modprobebonding
#备份网卡1文件
cp/etc/sysconfig/network-scripts/ifcfg-$ETH1ifcfg-$ETH1.bak
#修改网卡配置文件
functionbond0()
{
cat<<EOF>/etc/..
分类:
系统相关 时间:
2017-11-15 21:52:16
阅读次数:
1534
聚合连接(team)多个网卡(team-slave)组建成虚拟网卡轮询式(roundrobin)的流量负载均衡热备份(activebackup)连接冗余manteamd.conf
/example
{"runner":{"name":"activebackup"}}1.创建teamnmcliconnectionaddtypeteamcon-nameteam0ifnameteam0config‘{{"runner":{"name":..
分类:
其他好文 时间:
2017-11-09 14:26:09
阅读次数:
230
聚合连接(team)多个网卡(team-slave)组建成虚拟网卡轮询式(roundrobin)的流量负载均衡热备份(activebackup)连接冗余manteamd.conf
/example
{"runner":{"name":"activebackup"}}1.创建teamnmcliconnectionaddtypeteamcon-nameteam0ifnameteam0config‘{{"runner":{"name":..
分类:
其他好文 时间:
2017-11-09 11:29:55
阅读次数:
207
Linux运维日常命令操作1、linux启动过程开启电源-->BIOS开机自检-->引导程序lilo或grub-->内核的引导(kernelboot)-->执行init(rc.sysinit、rc)-->mingetty(建立终端)-->shell2、网卡绑定多IPifconfigeth0:1192.168.1.99netmask255.255.255.03、设置DNS、..
分类:
系统相关 时间:
2017-11-08 22:25:31
阅读次数:
273
概览: 目前网卡绑定mode共有七种(0~6)bond0、bond1、bond2、bond3、bond4、bond5、bond6 常用的有三种: mode=0:平衡负载模式,有自动备援,但需要”Switch”支援及设定。 mode=1:自动备援模式,其中一条线若断线,其他线路将会自动备援。 mode ...
分类:
其他好文 时间:
2017-11-04 13:15:10
阅读次数:
228
###############################################################################配置聚合连接(网卡绑定)team,聚合连接(也称为链路聚合)–由多块网卡(team-slave)一起组建而成的虚拟网卡,即“组队”–作用1:轮询式(roundrobin)的流量负载均衡–作用2:热备份(activebackup)?.
分类:
系统相关 时间:
2017-11-03 23:57:32
阅读次数:
240
查看硬件状态nmclidevicestatus1.关闭防火墙systemctlstatusfirewalldsystemctlstopfirewalldsystemctldisablefirewalldsystemctlmaskfirewalld2.关闭selinuxsed-i‘s/SELINUX=.*/SELINUX=disabled/‘/etc/selinux/configgetenforce03.关闭sshDNS解析sed-i‘s/#UseDNSyes/UseDNSno..
分类:
其他好文 时间:
2017-11-01 15:42:33
阅读次数:
316