搜索""的结果
备份和还原 vCenter Server Appliance vPostgres 数据库 (2096200) Purpose 免责声明:本文为 Backing up and restoring the vCenter Server Appliance vPostgres database (2034505) 的翻译版本。尽管我们会不断努力为本文提供最佳翻译版本,但本地化的内容可能会过时。有关最新内容,请参见英文版本。 本文提供了备份和还原 vCenter Server Appliance (VCSA) vPostgres 数据库的步骤。注意:本文仅支持将 vPostgres 数据库备份和还原到同一 vCenter Server Appliance。使用基于映像的备份和还原是执行完整的辅助设备还原所支持的唯一解决方案。 Resolution 在开始之前,请确保已安装:用于连接到 vCenter Server Appliance 的 SSH 客户端。 用于检索和替换 vPostgres 数据库恢复文件的 WinSCP(或任何 SCP 客户端)。 备份嵌入式 vPostgres 数据库 要备份嵌入式 vPostgres 数据库,请执行以下操作:通过 SSH 连接到 vCenter Server Appliance。有关详细信息,请参见 vCenter Server 5.5 and Host Management Guide 中的在 VMware vCenter Server Appliance 上启用或禁用 SSH 管理员登录部分。 出现提示时,以 root 用户身份登录。默认密码为 vmware。 使用以下命令停止 v...
如何备份和恢复VCSA 5.5自带的vPostgres数据库 大家都知道VCSA内置的数据库从5.1开始已经换成了vPostgres这个VMware基于开源数据库PostgresQL开发的vFabric系列产品了,那么,如何对它执行备份,以确保对于VCSA的用户体验能够和MS或Oracle数据库一样都能够起到安全增强呢? 首先,数据库的安全就会涉及到备份了,而我们在VAMI UI上面是没有找到如何备份这个VCSA的数据库的,更不用说恢复了,因此,本文就着眼于如何备份和恢复它了; 1、利用SSH或者直接登录到VCSA 5.5的CLI界面,缺省用户名为root,缺省密码为vmware; 2、然后执行如下命令,将路径切换到vpostgres程序所在目录: #cd /opt/vmware/vpostgres/1.0/bin3、执行如下命令备份VCSA 5.5的vpostgres数据库: #./pg_dump EMB_DB_INSTANCE -U EMB_DB_USER -Fp -c > VCDB_Backup 说明:VCDB_Backup这个名字可以自由定义,它就是备份出来的文件名; 4、注意,需要EMB_DB_USER的密码,可以在如下路径的文件中找到: /etc/vmware-vpx/embedded_db.cfg 利用vi编辑器或...
ed2k://|file|cn_system_center_2012_operations_manager_with_sp1_x86_x64_dvd_1345558.iso|1121304576|54B4E9FCAADBF82EEE5268BE9FCBC707|/ed2k://|file|en_system_center_2012_orchestrator_with_sp1_x86_dvd_1345499.iso|164681728|8C4BDF7AF81621E394719486A4BA2D77|/ed2k://|file|mu_system_center_2012_app_controller_with_sp1_x64_dvd_1345042.iso|80732160|2C05A112D98E3FC4AEFA930D86CE1E77|/ed2k://|file|mu_system_center_2012_configuration_manager_and_endpoint_protection_with_sp1_x86_x64_dvd_1360357.iso|948322304|F0E5AC67D114C42FA77EC089B11E28D6|/ed2k://|file|mu_system_center_2012_data_protection_manager_with_sp1_x64_dvd_1359086.iso|4950106112|6336DEBC4674B3D4279EA575E46BBC77|/ed2k://|file|mu_system_center_2012_service_manager_with_sp1_x64_dvd_1348926.iso|423559168|9EBD988808AC468D012B0FEAB76DA991|/ed2k://|file|mu_system_center_2012_virtual_machine_manager_with_sp1_x64_dvd_1348927.iso|1384331264|F46DFE474EA6B2BC5B4A5B9BA679FB12|/
win7跨网段远程管理server2012 Hyper-V1234567使用windows7远程管理工具,跨网段管理server2012 hyper-v,本文使用一个简单的跨网段环境,进行示例配置,本示例网络环境、Pc0 、Server0配置如图。工具/原料Windows6.1-KB958830-x64-RefreshPkg.msuhvremote.wsf(1.08)方法/步骤1在Pc0 上安装Windows6.1-KB958830-x64-RefreshPkg.msu,完成后,按下图配置。21、把hvremote.wsf拷贝到Server0和Pc0的c:\。2、在Pc0上用记事本打开hosts文件,增加如图配置并保存。3、在Server0上用记事本打开hosts文件,增加如图配置并保存。31、在Server0上打开cmd,切换到c:\ 。2、执行cscript //H:cscript。3、执行hvremote.wsf /add:administrator,授予administrator远程管理权限。注:本例以administrator用户作为远程管理用户。41、在Pc0上打开cmd,切换到c:\ ;执行cscript //H:cscript。2、执行hvremote.wsf /anondcom:grant,调整组件服务权限3、cmdkey /add:servdi /user:servdi\administrator /pass *******,缓存服务管理账户凭据注:本例以administrator用户作为远程管理用户51、在Pc0上cmd窗口执行hvremote.wsf /show /target:servdi,进行最后配置并显示结果(servdi为Server0计算...
CENTOS 搭建SVN服务器(附自动部署到远程WEB) 安装subversion服务端01# 安装02yum install -y subversion03 04# 测试是否安装成功 如果显示了版本信息则表示安装成功05svnserve --version;sleep 5s06 07# svn配置建立svn版本库目录可建多个:08PATHSSS="/home/svn"09echo SVN仓库将创建在:$PATHSSS;sleep 5s10 11# 新建一个版本库目录12mkdir -p $PATHSSS13cd $PATHSSS14# 建立svn版本库:15svnadmin create $PATHSSS16 17# 先设置passwd18cat >$PATHSSS/conf/passwd<<ANGIE.K19[users]20jianglinzhi = jianglinzhi21root1 = root22ANGIE.K23 24# 再设置权限authz25cat >$PATHSSS/conf/authz<<ANGIE.K26[groups] #用户组27admin = jianglinzhi,root128coder = coders1,coders2,coders329ui_and_ue = ui1,ui2,ui330[/] #/仓库权限31@admin = rw32@coder = rw33@ui_and_ue = rw34ANGIE.K35 36# 最后设定svnserve.conf37cat >$PATHSSS/conf/svnserve.conf<<ANGIE.K38[general]39# 使非授权用户无法访问40anon-access = none41# 使授权用户有写权限42auth-access = write43# 用户密码文件44password-d...
Installing VMware vGPU on vSphere 6.0Install & ConfigurationPublished 7 March 2015 at 11:51Comments Off on Installing VMware vGPU on vSphere 6.0 Share this post:on Facebookon Google+on TwittervGPU is a concept where an user of a virtual desktop can utilise the power of a GPU for running rich 3D applications, such as AutoCAD or other drawing applications, rendering or just watching full HD youtube. In this concept, the virtual desktop gets a direct or shared line to the GPU for 3D processing on any device.NVIDIA is the catalyst behind this technology and the hypervisor layer has to support this for you to be able to take advantage of this powerful tech. Citrix has been supporting this for a while, Microsoft has RemoteFX, but VMware has not joined this club until very recently with vSphere 6.0.vGPU is supported on the NVIDIA GRID K1 and K2 cards, with four vGPU profiles each. These vGPU profiles are resource profiles which you can assign to virtual desktops. Below is an overvie...
MultiOS Gaming, Media, and OpenCL Using XenGT Virtual Machines On Shared Intel GPUs December 1, 2014 by Rob Farber 2 Comments At last, a full (opensource!) GPU virtualization solution that allows virtualized guest operating systems to “own” a shared Intel GPU yet allows applications to run with near-native performance! This means games, both DRM and free media, plus OpenCL applications can run in separate guest operating systems on a single Intel GPU system (convenient for users) or in a shared cloud environment (a nice feature that can be offered by cloud providers). This is an Intel-only GPU solution. For more about other – non-Intel – GPU virtualization solutions, see our popular TechEnablement article, “MultiOS Gaming CUDA & OpenCL Via a Virtual Machine“.Full GPU Virtualization on Intel GPUs (image courtesy the Linux foundation)Performance is reported to be within 95% of utilizing the native GPU in a non-virtualized environment:XenGT provides ne...
VGAPassthrough: success in host F19, guest Windows7GPUPassthrough: success in Fedora-RawhideHOST: CPU: Core i5 3470 GPU: ATI HD Radeon 7850 OS: Fedora-Rawhide QEMU: qemu-1.5.1So, here’s the steps0. Enable the mainboard VxT, iommu and alter the video device to Intel HD1. See what we have got now.lspci;lspci -n1lspci;lspci -nWe have output below...01:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Pitcairn PRO [Radeon HD 7850]01:00.1 Audio device: Advanced Micro Devices, Inc. [AMD/ATI] Cape Verde/Pitcairn HDMI Audio [Radeon HD 7700/7800 Series]...1234...01:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Pitcairn PRO [Radeon HD 7850]01:00.1 Audio device: Advanced Micro Devices, Inc. [AMD/ATI] Cape Verde/Pitcairn HDMI Audio [Radeon HD 7700/7800 Series]......01:00.0 0300: 1002:681901:00.1 0403: 1002:aab0...1234...01:00.0 0300: 1002:681901:00.1 0403: 1002:aab0...You can see the pci bus and vendor.2. Modify the kernel parameter, morprobe.d a...
最新评论