`
464772913
  • 浏览: 25255 次
  • 性别: Icon_minigender_1
社区版块
存档分类
最新评论

centos6.0下 convirt2.0安装

 
阅读更多
convirt 是一个很不错的XEN等虚拟机的集中管理工具,基于Python开发。所以需要安装Python环境,这个直接使用YUM INSTALL PYTHON 即可
一、下载convirt2.0
1、使用YUM 方式安装convirt
yum install python
cd /etc/yum.repos.d
 
wget --no-cache http://www.convirture.com/repos/definitions/rhel/5.x/convirt.repo

yum install convirt convirt


2、下载安装脚本
wget –no-cache http://www.convirture.com/downloads/convirt/2.0/convirt-install-2.0.tar.gz
下载后运行convirt-install/install/cms/scripts/install_dependencies
在初始化的过程中最重要的一项是mysql的设置
Enter current password for root (enter for none):
由于测试机之前没有安装mysqld服务,是由convirt-install中的脚本来完成的,所以初始密码为空。
Set root password? [Y/n] y
此处一定要设置mysql密码因为convirt初始化mysql时密码是写到程序中的,password要设置为”convirt”。
Running mysql_secure_installation.
Current root password for fresh installation is blank. So simple press enter.
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL
SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!
In order to log into MySQL to secure it, we’ll need the current
password for the root user. If you’ve just installed MySQL, and
you haven’t set the root password yet, the password will be blank,
so you should just press enter here.

Enter current password for root (enter for none):
OK, successfully used password, moving on…

Setting the root password ensures that nobody can log into the MySQL
root user without the proper authorisation.

Set root password? [Y/n] y
New password:
Re-enter new password:
Password updated successfully!
Reloading privilege tables..
… Success!
By default, a MySQL installation has an anonymous user, allowing anyone
to log into MySQL without having to have a user account created for
them. This is intended only for testing, and to make the installation
go a bit smoother. You should remove them before moving into a
production environment.

Remove anonymous users? [Y/n] y
… Success!

Normally, root should only be allowed to connect from ‘localhost’. This
ensures that someone cannot guess at the root password from the network.

Disallow root login remotely? [Y/n] y
… Success!

By default, MySQL comes with a database named ‘test’ that anyone can
access. This is also intended only for testing, and should be removed
before moving into a production environment.

Remove test database and access to it? [Y/n] y
- Dropping test database…
… Success!
- Removing privileges on test database…
… Success!

Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.

Reload privilege tables now? [Y/n] y
… Success!

Cleaning up…

All done! If you’ve completed all of the above steps, your MySQL
installation should now be secure.
Thanks for using MySQL!
Stopping MySQL: [ OK ]
Starting MySQL: [ OK ]
Prerequsite for ConVirt Management Server (CMS) installed.
mysql初始化成功,
install_dependencies的整个初始化过程被我记录到了dependencies.log中,用于之后的分析.
二、安装 convrit软件

convirt-install/install/cms/scripts/install_convirt
ConVirt Setup Done…

convirt已经安装完成了,convirt日志,在这个过程中convirt会能过ssh-keygen 生成root用户的key文件,生成的这个key文件在以后的多服务器控制和VNC端口转发都会用到。
[root@xencms .ssh]# ls
cms_id_rsa cms_id_rsa.pub
[root@xencms .ssh]# pwd
/root/.ssh

启动convirt服务

cd /root/convirt
./convirt-ctl start
使用netstat -nl我们应该看到8081端口,如果服务不能正常启动,在/root/convirt目录下有两个日志文件
[root@xencms convirt]# cat convirt.log
[root@xencms convirt]# cat paster.log
convirt.log中记录的是convirt程序的运行日志
paster.log向是一个http的acsess日志,convirt使用的是tg2env做为http服务。
[root@xencms convirt]# netstat -nlp

cp 0 0 10.0.121.8:8081 0.0.0.0:* LISTEN 10053/python

convirt安装完毕

访问http://IP:8081默认管理员admin密码admin

分享到:
评论

相关推荐

    CentOs6.0下安装Oracle11g

    很多做服务器的程序员都因为在linux下安装linux而头痛不已,确实是很麻烦的一件事,此文档讲解了在CentOs6.0下安装Oracle11g的详细步骤,希望能帮到大家。

    centos6.0安装

    CentOS 6.0 安装教程 CentOS 6.0 是目前 CentOS 家族最新版的服务器系统,本教程将带您一步步完成 CentOS 6.0 的安装过程。 一、前提条件 * 一张 Linux CentOS 6.0 光盘或者 ISO 镜像文件 二、安装步骤 1.1、...

    Centos6.0安装lamp

    至此,我们已经完成了在Centos 6.0上安装LAMP环境及配置 PhpMyAdmin 的过程。通过这些步骤,你可以轻松搭建一个功能完备的Web开发环境。 **参考资料**:[http://down.chinaz.com/server/201109/1064_1.htm]...

    centos6.0配置本地yum

    在 CentOS 6.0 系统中,YUM(Yellow dog Updater Modified)是一款强大的包管理器工具,它允许用户在基于 RPM 的 Linux 发行版上自动下载、更新和安装软件包。为了确保 YUM 正常运行,必须正确配置 YUM 源,通常这些...

    CentOS6.0安装Oracle10g详细文档

    本文档详细介绍了如何在CentOS6.0操作系统上安装Oracle10g,这是一个非常实用的技术教程,尤其适合那些希望在最新版本的Linux发行版上部署旧版本Oracle数据库的用户。 首先,让我们深入了解CentOS6.0。这是一个基于...

    CentOS6.0-Hadoop安装手册_Hadoop2.0-v1.3

    CentOS6.0-Hadoop安装手册,详细介绍centos下hadoop的搭建过程

    CentOS 6.0安裝gcc

    ### CentOS 6.0 安装GCC 在Linux系统中,GCC(GNU Compiler Collection)是一个重要的编译器套件,支持多种编程语言如C、C++等。对于开发者来说,安装GCC是进行软件开发的基础步骤之一。本文将详细介绍如何在CentOS...

    CentOS 6.0下vncserver安装配置

    CentOS 6.0 下 vncserver 安装配置 Centos 6.0 下 vncserver 安装配置是一种远程桌面连接解决方案。通过安装和配置 vncserver,可以实现在服务器上远程桌面连接,提高工作效率和灵活性。 一、安装必要的软件包 ...

    CentOS6.0安装Oracle

    ### CentOS6.0安装Oracle详解 #### 工具准备与远程连接 在开始安装Oracle之前,需要准备一些必要的工具,以便于文件传输和远程管理。本文档提到了两个关键工具:FileZilla和Putty。 - **FileZilla**:这是一款...

    CentOS 6.0安装图解教程

    **CentOS 6.0 安装步骤详解** 在安装 CentOS 6.0 时,首先需要通过光盘或U盘成功引导系统。引导过程的关键在于如何选择合适的启动模式。当系统加载时,按下键盘上的 ESC 键,会出现 `boot:` 提示符,此时输入 `...

    VMware10安装CentOS-6.0.docx

    本文将详细介绍如何在VMware 10上安装CentOS 6.0,这是一个适合初学者和专业人士了解Linux环境的实践过程。 首先,我们需要下载VMware 10的安装程序和CentOS 6.0的ISO镜像文件。VMware 10提供了稳定且功能丰富的...

    iredmail安装Centos6.0下安装说明

    iredmail安装Centos6.0下安装说明

    CentOS-6.0-x86_64-bin-DVD.torrent

    centos6.0种子文件 操作系统下载

    linux CentOS 6.0下安装 Oracle10g

    linux CentOS 6.0下安装 Oracle10g,有详细的说明,有配置自动启动服务说明。

    centos 6.0最简化编译安装Nginx+Mysql+PHP+Zend

    由于采用的是CentOS 6.0 minimal安装,很多必要的软件包需要手动安装。这些软件包包括: - PCRE(Perl Compatible Regular Expressions):用于Nginx的URL重写和正则表达式支持。 - Nginx:Web服务器软件。 - MySQL...

    XP下硬盘安装CentOS 6.0

    在不具备光驱、U盘、移动硬盘等外部存储设备的情况下,并且主板不支持U盘启动时,如何在Windows XP操作系统下安装CentOS 6.0?本文将详细介绍这一过程。 #### 二、准备工作 在进行安装前,需要准备以下工具和资源:...

    CentOS_6.0_安装教程

    《CentOS 6.0 安装全攻略》 在Linux世界中,CentOS是一款深受广大用户喜爱的开源操作系统,以其稳定性和兼容性著称。本文将详尽解析CentOS 6.0的安装步骤,帮助初学者和经验丰富的系统管理员顺利完成系统的部署。 ...

    U盘安装CentOS 6.0

    U盘安装CentOS 6.0 实现目的:用U盘安装CentOS 6.0到服务器 工具软件: 1、U盘一只,我这里用到的是“朗科(Netac)USB3.0高速优盘 U903 16G” 2、CentOS 6.0系统镜像,我这里下载的是32位的系统CentOS-6.0-i386-...

    CentOS 6.0安装指南

    ### CentOS 6.0 安装与配置指南 #### 一、引言 CentOS 6.0 是一款基于 Red Hat Enterprise Linux (RHEL) 的开源操作系统,它提供了企业级的功能和服务,同时又免费可用。本文档旨在为用户提供一套完整的 CentOS ...

Global site tag (gtag.js) - Google Analytics