分类 无分类 下的文章
Centos 配置eth0 提示Device does not seem to be present
一.故障现象:
[root@c1node01 ~]# service network restart
Shutting down loopback insterface: [ OK ]
Bringing up loopback insterface: [ OK ]
Bringing up interface eth0: Device eth0 does not seem to be present,delaying initialization. [FAILED]
解决办法:
[root@c1node01 ~]# rm -rf /etc/udev/rules.d/70-persistent-net.rules
[root@c1node01 ~]# reboot ………………
[root@c1node01 ~]# service network restart
Shutting down loopback insterface: [ OK ]
Bringing up loopback insterface: [ OK ]
Bringing up interface eth0: [ OK ]
[root@c1node01 ~]#
使用py-kms搭建KMS服务器激活环境
将云谷IDCSystem的Xen机器上的lvm分区换成ext4分区
一.起因
在CentOS下,云谷模板会默认把数据盘做成lvm然后通过一个开机脚本来挂载,有程序的数据(比如mysql)放在了挂载的数据盘上,然后因为开机启动优先级的问题rc.local里的脚本会比chkconfig或者systemctl开机启动慢,比如数据库默认装在/home/www中,而/home目录是lvm分区的挂载点,然后数据库启动的比挂载早,会造成启动失败的问题
二.解决方案
云谷的Xen把分区改成ext4然后用fstab挂载,会比较简单
下面分享一下安全的删除方法
SQL参数数据类型text对于replace函数的参数1无效
当执行语句:
update SupplyInfo set ProdInfo=replace(ProdInfo,'中国总代理','中国指定代理') where CompanyID=83406
- 1
- 2
- 3
因为列ProdInfo为text类型,即SQL语句中用到replace时若操作列类型为text类型会有MSSQL报错:参数数据类型text对于replace函数的参数1无效。
原因:对text或ntext类型的数据在查询中不能进行字符串操作。