使用xen-shell来管理xen vps

简介:
XEN 的强大管理工具 XEN-SHELL,用他来管理XEN的虚拟机,简直是太方便了。太强大了,支持系统重装,VPS 启动、重启、关 机、暂停,连接控制台。
wget http: //xen-tools.org/software/xen-shell/xen-shell-1.9.tar.gz
tar zxvf xen-shell-1.9.tar.gz
cd xen-shell
make
make install

1.建立连接VPS的用户与密码
useradd eric
passwd eric
useradd yangzi
passwd yangzi

2.给用户 sudo 的命令权限,和登录shell
User_Alias     XENUSERS = eric,yangzi
Cmnd_Alias     XEN            = /usr/sbin/xm
Cmnd_Alias     XENIMG    = /usr/bin/xen-create-image
XENUSERS         ALL        = NOPASSWD: XEN,XENIMG

chsh -s /usr/local/bin/xen-login-shell eric
chsh -s /usr/local/bin/xen-login-shell yangzi

3.修改xen 虚拟机的配置文件,加入
xen_shell =  "eric"

例如:
kernel =  "/boot/vmlinuz-2.6.24-28-xen"
ramdisk =  "/boot/initrd.img-2.6.24-28-xen"
memory =  "64"
name =  "xenyang"
xen_shell =  "eric"
disk = ['phy:/dev/md0,sda1,w']
root =  "/dev/sda1 ro"
on_poweroff = 'destroy'
on_reboot = 'restart'
on_crash = 'restart'
vcpus     = '2'
extra = 'xencons=tty1'
vif = [ '' ]

4.(可选)如果你需要用xen-shell 来重装系统的话,就做这步
在eric 的home 目录下新建image.sh
#!/bin/sh
/usr/bin/sudo /usr/bin/xen-create-image --hostname=yang \
--size=1.5Gb \
--ide \
--ip=192.168.6.36 \
--netmask=255.255.255.0 \
--gateway=192.168.6.1 \
--force    \
--kernel=/boot/vmlinuz-2.6.24-28-xen \
--dist=hardy \
--mirror=http: //mirrors.163.com/ubuntu/ \
--arch=i386 \
--passwd \
--dir=/home/yangzi

5.使用xen-shell 来控制 vps
打开putty 填入 xen 服务器IP地址 输入新建的用户名 eric
xen-shell v1.9
The following commands are available within  this shell:
Use of uninitialized value in sprintf at /usr/bin/xen-shell line 1603.
        author -
            boot - Boot the Xen guest.
     console - Gain access to a Xen guest via the serial console.
            exit - Exit the shell.
            help - Show general, or command-specific, help information.
        passwd - Change the password used to access  this host.
         pause - This will pause the Xen guest.
            quit - Exit  this shell.
        reboot - Reboot the Xen guest.
     reimage - Reset your system to a pristine installation.
        serial - Gain access to the Xen guest via the serial console.
    shutdown - Shutdown the Xen guest.
        status - Show the status of the Xen guest.
        sysreq - Send a 'sysreq' keystroke to the guest.
             top - Show system resource usage.
     unpause - This will unpause the Xen guest.
        uptime - Show the uptime information of your guest system and  this host.
     version - Show the version of  this shell, and of Xen.
        whoami - Show the user you're connected to the host system as.
For command-specific help run  "help command".

xen-shell>

## 命令介绍####

xen-shell> boot

# 启动vps 

xen-shell> console

# 登录VPS,如果用SSH连不上 VPS,你这样可以登录VPS修改IP地址等。
xen-shell> exit

#  退出 xen-shell
xen-shell> help

# 查看帮助信息,显示命令
xen-shell> passwd

# 修改用户登录密码
xen-shell>pause

# 将暂停VPS
xen-shell>quit

# 退出 xen-shell
xen-shell>root

# 重启 VPS 
xen-shell>reimage

# 重新安装系统
xen-shell>serial

# 也是登录VPS控制台
xen-shell> shutdown

# 关闭 vps 虚拟机
xen-shell> status

# VPS 运行的状态
xen-shell>sysreq

# 发送‘sysreq’按键 到VPS
xen-shell>top

# 显示系统资源使用率
xen-shell>unpause

# 取消暂停
xen-shell>uptime

# 显示您的客户系统和该主机的正常运行时间信息
xen-shell>version

# 显示 xen-shell 和 XEN 的版本信息
xen-shell>whoami

# 显示您已经连接到主机系统的用户。




本文转自Deidara 51CTO博客,原文链接:http://blog.51cto.com/deidara/328770,如需转载请自行联系原作者
相关文章
|
7月前
|
Linux 调度 虚拟化
Linux系统——初识Linux、虚拟机介绍、VMware WorkStation安装、在VMware上安装Linux
Linux系统——初识Linux、虚拟机介绍、VMware WorkStation安装、在VMware上安装Linux
142 4
|
8月前
|
Ubuntu Linux Windows
window10 虚拟机 linux ubuntu 环境下samba服务器配置
本文的目的是在windows 10 系统,使用samba服务实现 windows 10共享虚拟机ubuntu系统的文件。
155 0
|
Ubuntu Linux Shell
linux(六)远程登录虚拟机~
接下来,我们应该就可以使用xshell(ssh)来登录ubuntu虚拟机了。 我们打开xshell,配置好虚拟机信息,登录,如下图所示:
85 0
|
XML 存储 安全
【KVM虚拟化】· 命令行KVM安装linux
【KVM虚拟化】· 命令行KVM安装linux
209 0
|
机器学习/深度学习 Linux KVM
cento7安装kvm并通过qemu命令行安装其他虚拟机(红帽)
cento7安装kvm并通过qemu命令行安装其他虚拟机(红帽)
cento7安装kvm并通过qemu命令行安装其他虚拟机(红帽)
|
网络安全 KVM 虚拟化
KVM虚拟化技术(二)之创建虚拟机(命令行方式)
KVM虚拟化技术(二)之创建虚拟机(命令行方式)
1137 0
KVM虚拟化技术(二)之创建虚拟机(命令行方式)
|
Linux 虚拟化 iOS开发
Linux基础命令——虚拟机软件
对应快速学习一个新的操作系统,我们可以借助虚拟机来完成。 虚拟机软件、虚拟机、操作系统它们三者之间的关系:
214 0
Linux基础命令——虚拟机软件