搜索""的结果
XenServer更新补丁后因内核改变,驱动失效的解决方案 现象缘由:以Intel主板的网卡IGB为例,由于服务器的硬件较新,XenServer 5.6 SP2没有内置驱动,需要加载额外的驱动才能安装,系统安装完成后,通过XenCenter更新服务器补丁,重启服务器后无法连接,马上使用IPMI登陆服务器,发现新的补丁升级了内核,如图所示:打补丁前,内核是:xs5.6.100.323打补丁后,内核是:xs5.6.100.327分析原因:XenServer系统的内核发生了改变,旧的驱动无法兼容。解决方法,更新驱动:将xs5.6.100.327相兼容的网卡驱动ISO通过IPMI挂载为虚拟光驱,然后mount挂载到服务器,安装xs5.6.100.327更新驱动即可。步骤一:登录IPMI并且挂载xs5.6.100.327驱动ISO镜像。选择xs5.6.100.327.iso镜像点击"Plug in",挂载到光驱即可。步骤二:运用mount命令挂载ISO cd /mntmkdir xenserver-toolsmount /dev/cdrom /mnt/xenserver-tools/复制代码安装驱动 cd xenserver-tools./install.sh复制代码更新完xs5.6.100.327驱动之后,重启下服务器即可。
 在XenServer的centos中,无法修改时间的解决方案!  echo 1 > /proc/sys/xen/independent_wallclockdate -s "2012-07-21 10:35:00" 修改时区rm -rf /etc/localtimeln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime修改/etc/sysconfig/clock文件的内容为: ZONE="Asia/Shanghai" UTC=false ARC=false
 How to Disable Receive-Side Copy (RSC) on XenServer 6.x Document ID: CTX133199   /   Created On: 2012-6-29   /   Updated On: 2013-7-23 Average Rating: (2 ratings) <!-- -->View products this document applies to SummaryThis article describes how to disable the Receive-Side Copy on XenServer 6.xRequirementsAccess to Windows Virtual Machine and Registry EditorAccess to XenServer command line interface to monitor logsBackgroundIn XenServer 6.x, a new feature called Receive-Side Copy (RSC) is enabled by default in Windows virtual machines with XenTools installed.RSC moves the processing required for network traffic from Domain 0 (netback process) into the virtual machine (netfront process) thereby reducing the load on the control domain when you run large numbers of virtual machines.In some scenarios, you might have to disable this feature to improve the virtual machine performance.Known IssueWith RSC enabled, a virtual machine virtu...
 How to Disable Receive-Side Copy (RSC) in Dom0 Document ID: CTX136830   /   Created On: 2013-3-7   /   Updated On: 2013-7-23 Average Rating: (2 ratings) <!-- -->View products this document applies to SummaryThis article describes how to disable Receive-Side Copy in dom0.Receive-Side Copy (RSC) might cause exhaustion of dom0 pageref resources. This might lead to undesirable behavior under certain circumstances.RequirementsRSC as the default network back end.BackgroundBy default, xen_netback.netback_max_rx_protocol is set to 1, which enables RSC host wide.ProcedureRun the following command: #/opt/xensource/libexec/xen-cmdline --set-dom0 xen_netback.netback_max_rx_protocol=0Restart the server for the change to take effect.Confirm that the change has been implemented: # cat /proc/cmdlineroot=LABEL=root-cbscvkzh ro console=tty0 xencons=hvc console=hvc0 xen_netback.netback_max_rx_protocol=0Throughput should not be adversely affected ...
您所在的组无权查看该日志
服务器出现了以下的警告信息:EXT3-fs warning: maximal mount count reached,让我运行e2fsck进行文件检测。google了一下,发现原来是挂载数达到最大了。一个老外给出了答案:关掉挂载数检测机制就行了。命令如下:/sbin/tune2fs -i 0 -c 0 /dev/xxxx-i 0: 两次文件检测之间的时间间隔,0为无限长了。-c 0: 挂载数的最大值,0 为无限大。呵呵,搞定了。
联想服务器板载raid1 重建联想服务器G168 板载intel raid1 其中一块硬盘,损坏,不能正常识别。停机,更换新硬盘,进raid 管理界面,raid1 没有正常 rebuid, 重建,请多试几次拔插硬盘,直到开机进raid 界面,提示rebuild 重建raid 模式,即可进入系统后,raid 硬盘自动开始同步。由于最开始,无法识别硬盘,删除raid,导致raid中正常的硬盘数据丢失。硬盘分区丢失,但是数据是没有丢,使用分区恢复软件后,又可以找回所有数据。
利用Nginx 自动在父文件夹中建立子文件夹以指向子域名这是一个添加子域名(或是当DNS已指向服务器时添加一个新域名)的简单方法。需要注意的是,我已经将FCGI配置进该文件了。如果你只想使服务器为静态文件服务,可以直接将FCGI配置信息注释掉,然后将默认主页文件变成index.html。这个简单的方法比起为每一个域名建立一个 vhost.conf 配置文件来讲,只需要在现有的配置文件中增加如下内容:# Replace this port with the right one for your requirements# 根据你的需求改变此端口listen 80; #could also be 1.2.3.4:80 也可以是1.2.3.4:80的形式# Multiple hostnames seperated by spaces. Replace these as well.# 多个主机名可以用空格隔开,当然这个信息也是需要按照你的需求而改变的。server_name star.yourdomain.com *.yourdomain.com www.*.yourdomain.com;#Alternately: _ *#或者可以使用:_ * (具体内容参见本维基其他页面)root /PATH/TO/WEBROOT/$host;error_page 404 http://yourdomain.com/errors/404.html;access_log logs/star.yourdomain.com.access.log;location / {  root /PATH/TO/WEBROOT/$host/;  index index.php;}# serve static files dire...
您所在的组无权查看该日志
您所在的组无权查看该日志
    总共269页,当前第193页 | 页数:
  1. 183
  2. 184
  3. 185
  4. 186
  5. 187
  6. 188
  7. 189
  8. 190
  9. 191
  10. 192
  11. 193
  12. 194
  13. 195
  14. 196
  15. 197
  16. 198
  17. 199
  18. 200
  19. 201
  20. 202
  21. 203