Re: [one-users] Specify VM boot order

2011-04-25 Thread Steffen Neumann
Hi,

On Sun, 2011-04-24 at 15:07 -0500, Rangababu Chakravarthula wrote:
> Does Opennebula expose Libvirt's VM border order option ? 
No. There was a thread on this list a few weeks ago,
check the archives.

> If not that would be a good feature to add
I'd second that. Feel free to open a feature request 
on the http://dev.opennebula.org/ tracker.

Do other hypervisors (XEN, etc) support the same concept ?

Yours,
Steffen

-- 
IPB HalleAG Massenspektrometrie & Bioinformatik
Dr. Steffen Neumann  http://www.IPB-Halle.DE
Weinberg 3   http://msbi.bic-gh.de
06120 Halle  Tel. +49 (0) 345 5582 - 1470
  +49 (0) 345 5582 - 0
sneumann(at)IPB-Halle.DE Fax. +49 (0) 345 5582 - 1409


___
Users mailing list
Users@lists.opennebula.org
http://lists.opennebula.org/listinfo.cgi/users-opennebula.org


Re: [one-users] Problem monitoring Xen host 2.2

2011-04-25 Thread Carlos Martín Sánchez
Hi Javier,

Maybe the dom0 is taking all that memory. Take a look at this thread:
http://lists.opennebula.org/htdig.cgi/users-opennebula.org/2009-May/000436.html

Regards,
Carlos.
--
Carlos Martín, MSc
Project Major Contributor
OpenNebula - The Open Source Toolkit for Cloud Computing
www.OpenNebula.org  | cmar...@opennebula.org


On 8 April 2011 11:25, Javier Alcazar Luque  wrote:

> Hello,
>
> I have installed opennebula 2.2 in a Centos 5.6 server, and everything
> works fine except for the hosts. The Kvm hosts seems to be monitoring
> correctly, but the Xen hosts show that the memory used is at 98% and there
> is no running vm in it.
>
> Sunstone information:
> Max Mem 24G
> Used Mem (real) 23.6G
>
> Top in the xen host:
> Mem:  24259584k total,  1012020k used, 23247564k free
>
> Any help?
>
> Thanks
> ___
> Users mailing list
> Users@lists.opennebula.org
> http://lists.opennebula.org/listinfo.cgi/users-opennebula.org
>
___
Users mailing list
Users@lists.opennebula.org
http://lists.opennebula.org/listinfo.cgi/users-opennebula.org


Re: [one-users] setting variables ONE_LOCATION

2011-04-25 Thread Carlos Martín Sánchez
Hi Marco,

If you installed OpenNebula from the packages, then the installation was
made in system-wide mode [1].
You don't need -actually you shouldn't- set the ONE_LOCATION env. variable.

Regards.

[1] http://opennebula.org/documentation:rel2.2:ignc

--
Carlos Martín, MSc
Project Major Contributor
OpenNebula - The Open Source Toolkit for Cloud Computing
www.OpenNebula.org  | cmar...@opennebula.org


On Mon, Apr 11, 2011 at 12:48 PM, Marco Mirabile wrote:

> i have install opnennebula with deb package.
> where is it the directory of installation?
> (i must set the ONE_LOCATION path)
>
> I have searched the home directory in / srv / cloud / one, but I can not
> find the folder
>
> thank you very much
> marco mirable
>
> ___
> Users mailing list
> Users@lists.opennebula.org
> http://lists.opennebula.org/listinfo.cgi/users-opennebula.org
>
>
___
Users mailing list
Users@lists.opennebula.org
http://lists.opennebula.org/listinfo.cgi/users-opennebula.org


Re: [one-users] Directory Xen On opennebula

2011-04-25 Thread Carlos Martín Sánchez
Hi there,

There isn't any requirement as to where to install Xen. Please check the Xen
Driver configuration guide [1] for configuration instructions.

Regards.

[1] http://opennebula.org/documentation:rel2.2:xeng

--
Carlos Martín, MSc
Project Major Contributor
OpenNebula - The Open Source Toolkit for Cloud Computing
www.OpenNebula.org  | cmar...@opennebula.org


On Tue, Apr 12, 2011 at 10:53 AM, mahirudin alkhoir
wrote:

> I have xen host with guest os running, but my directory xen not in
> /srv/cloud because when i create guest with xen, i manage to directory
> /virtual/xen
> is that possible if i want integrated with opennebula???
>
>
>
> ___
> Users mailing list
> Users@lists.opennebula.org
> http://lists.opennebula.org/listinfo.cgi/users-opennebula.org
>
>
___
Users mailing list
Users@lists.opennebula.org
http://lists.opennebula.org/listinfo.cgi/users-opennebula.org


Re: [one-users] user permissions on vnet

2011-04-25 Thread Carlos Martín Sánchez
Hi Ignazio,
This is a quick change to the simple_permissions.rb script. I didn't even
check if this works, but it should help you get the idea of what Daniel
proposed.

When modifying an authorization script, you have to take into account that
oneadmin (user with id = 0) is granted anything in the core.

--- a/src/authm_mad/simple_permissions.rb
+++ b/src/authm_mad/simple_permissions.rb
@@ -71,8 +71,12 @@ class SimplePermissions

 case action
 when 'CREATE'
-auth_result=true if %w{VM NET IMAGE}.include? object
-
+if %w{VM IMAGE}.include? object
+auth_result = true
+elsif object == "NET"
+auth_result = "Regular users can not CREATE NET"
+end
+
 if @quota_enabled and object=='VM' and auth_result
 STDERR.puts 'quota enabled'
 @quota.update(uid.to_i)


Regards.

--
Carlos Martín, MSc
Project Major Contributor
OpenNebula - The Open Source Toolkit for Cloud Computing
www.OpenNebula.org  | cmar...@opennebula.org


On Mon, Apr 18, 2011 at 3:16 PM, wrote:

> Hello Daniel,
> I'd like to ask when new features will be addes do manage user groups.
> I did not understand I can setroles for difeerent users using
> simple_permissions.rb...
> How can I modify the  simple_permissions.rb to deny users crating new
> virtual networks ?
> Please, could ou give me an example ?
> At this time my oneaadmn ha created c virtual network and I don't want any
> other user create furthers vmnet.
> Thanks and Regards
>
> - Messaggio da dmol...@opennebula.org -
>Data: Mon, 28 Mar 2011 16:21:31 +0200
>Da: Daniel Molina 
>  Oggetto: Re: [one-users] user permissions on vnet
>  A: ignazio.cass...@provincia.torino.it
>  Cc: users@lists.opennebula.org
>
>
>  Hi,
>>
>> You can use the auth module [1,2] to disable the VNet creation for
>> users different from oneadmin.
>>
>> Furthermore, we are developing a new feature to mange user groups. You
>> will be able to set roles for different users and even customize your
>> Sunstone to add or remove functionality for these users.
>>
>> [1] http://www.opennebula.org/documentation:rel2.2:users
>> [2] http://www.opennebula.org/documentation:rel2.2:auth
>>
>> Regards
>>
>> On 24 March 2011 14:09,   wrote:
>>
>>> Hello everyone,
>>> I'd like to know if it is possible to set user permissions on virtual
>>> network
>>> creation.
>>> At this time, using sunstone, seems a normale user (not oneadmin) can
>>> create
>>> a virtual
>>> network with the same attributes of vnet created by oneadmin.
>>> Is it strange ?
>>> Thanks and regards
>>> Ignazio
>>>
>>> ___
>>> Users mailing list
>>> Users@lists.opennebula.org
>>> http://lists.opennebula.org/listinfo.cgi/users-opennebula.org
>>>
>>>
>>
>>
>> --
>> Daniel Molina, Cloud Technology Engineer/Researcher
>> Major Contributor
>> OpenNebula - The Open Source Toolkit for Cloud Computing
>> www.OpenNebula.org | dmol...@opennebula.org
>>
>>
>
> - Fine messaggio da dmol...@opennebula.org -
>
>
>
>
> ___
> Users mailing list
> Users@lists.opennebula.org
> http://lists.opennebula.org/listinfo.cgi/users-opennebula.org
>
___
Users mailing list
Users@lists.opennebula.org
http://lists.opennebula.org/listinfo.cgi/users-opennebula.org


Re: [one-users] Asking about VMWARE ESX and OpenNebula

2011-04-25 Thread Tino Vazquez
Hi,

Let's see what happens if the driver is executed by hand, please send
the output of:

$ ruby -dw $ONE_LOCATION/lib/mads/one_im_sh.rb
INIT
MONITOR 0  -

Regards,

-Tino

--
Constantino Vázquez Blanco, MSc
OpenNebula Major Contributor
www.OpenNebula.org | @tinova79



On Tue, Apr 19, 2011 at 2:50 AM, Hoang Dinh Phuc  wrote:
>
> Hello all,
>
>  I've already installed OpenNebula 2.2 on CentOS and add KVM host to
> OpenNebula. Now, i want to add ESX Server (VMWARE) to be managed by the
> OpenNebula. But it make an error. Here is my oned.conf:
>
> VM_MAD = [
>     name   = "vmm_vmware",
>     executable = "one_vmm_sh",
>     arguments  = "vmware",
>     default    = "vmm_sh/vmm_sh_vmware.conf",
>     type   = "vmware" ]
>
>
> #---
> #  VMware Driver Addon Information Driver Manager Configuration
> #---
> IM_MAD = [
>   name   = "im_vmware",
>   executable = "one_im_sh",
>   arguments  = "vmware" ]
> #   arguments = "--username oneadmin --password ' ' " ]
> #---
>
> #---
> # VMware Driver Addon Transfer Manager Driver Configuration
> #---
> TM_MAD = [
>     name   = "tm_vmware",
>     executable = "one_tm",
>     arguments  = "tm_vmware/tm_vmware.conf" ]
>
> When i'm using onehost command to add VMWARE Host, it make an error state.
> And here is the log
> $ onehost esxsrv im_vmware vmm_vmware tm_vmware
>
> Mon Apr 18 14:24:05 2011 [InM][I]: Monitoring host esxsrv (3)
> Mon Apr 18 14:24:05 2011 [ReM][D]: VirtualMachinePoolInfo method invoked
> Mon Apr 18 14:24:05 2011 [InM][D]: Host 3 successfully monitored.
> Mon Apr 18 14:24:05 2011 [ONE][E]: syntax error, unexpected $end, expecting
> VARIABLE at line 2, columns 1:2
> Mon Apr 18 14:24:05 2011 [InM][E]: Error parsing host information:
>
> Please show me the way to add VMWARE host to OpenNebula.
>
> Thanks so much.
> ---
> F:  Hoang Dinh Phuc
> E:  hdp...@gmail.com
> M: +84909398700
>
>
>
>
> --
> ---
> F:  Hoang Dinh Phuc
> E:  hdp...@gmail.com
> M: +84909398700
>
>
> ___
> Users mailing list
> Users@lists.opennebula.org
> http://lists.opennebula.org/listinfo.cgi/users-opennebula.org
>
>
___
Users mailing list
Users@lists.opennebula.org
http://lists.opennebula.org/listinfo.cgi/users-opennebula.org


Re: [one-users] Regular users can not search their information such as userid

2011-04-25 Thread Carlos Martín Sánchez
Hi, this will be implemented for future versions. It was discussed in this
thread:
http://lists.opennebula.org/pipermail/users-opennebula.org/2011-April/004857.html

Regards.
--
Carlos Martín, MSc
Project Major Contributor
OpenNebula - The Open Source Toolkit for Cloud Computing
www.OpenNebula.org  | cmar...@opennebula.org


On Tue, Apr 19, 2011 at 9:06 AM, aiguoxin2008 aiguoxin2008 <
aiguoxin2...@gmail.com> wrote:

> Regular users can not search their information such as
> userid,username,isabled and so on.
>
> --
> aiguoxin
>
> ___
> Users mailing list
> Users@lists.opennebula.org
> http://lists.opennebula.org/listinfo.cgi/users-opennebula.org
>
>
___
Users mailing list
Users@lists.opennebula.org
http://lists.opennebula.org/listinfo.cgi/users-opennebula.org


Re: [one-users] Host hooks aren't triggered

2011-04-25 Thread Tino Vazquez
Hi Zaina,

With the "-2" option, this should work as expected. Ive opened a
ticket [1] to fix this in future releases.

About it not being working yet, could you please add the following
debug info to the script?

--
if mode == "-r"
my_file.puts "Resubmitting VM with id #{vm_id}"
vm.resubmit
elsif mode == "-d"
vm.finalize
end
--

thanks for all the help debugging this!!!

Regards,

-Tino

[1] http://dev.opennebula.org/issues/585

--
Constantino Vázquez Blanco | dsa-research.org/tinova
Virtualization Technology Engineer / Researcher
OpenNebula Toolkit | opennebula.org



On Thu, Apr 14, 2011 at 12:52 PM, Zaina AFOULKI
 wrote:
> Hi Tino,
>
> I have changed the line as you indicated, and it doesn't change anything...
>
> But, I've tried to replace the line with:
> vms = VirtualMachinePool.new(client, -2)
> and the VM goes in pending state. However the VM isn't resubmitted to the
> scheduler (Haizea)
>
> By the way, oned is running as oneadmin.
>
> Here is the /tmp/remove_me.txt file (this time, it isn't empty ;P):
>
> OpenNebula host has failed 31
> 
>  
>    3378
>    1
>    orange
>    orange-ar2
>    130281
>    3
>    3
>    130245
>    0
>    one-3378
>    0
>    0
>    0
>    0
>    0
>    
>      
>      
>        
>        
>        
>      
>      
>        
>      
>      
>        
>        
>        
>      
>      
>      
>      
>        
>        
>        
>        
>        
>      
>      
>        
>        
>      
>      
>        
>        
>      
>      
>    
>    
>      0
>      node1
>      29
>      130275
>      0
>      130275
>      130280
>      130280
>      0
>      0
>      0
>      0
>    
>  
>  
>    3379
>    1
>    orange
>    orange-ar2
>    130295
>    3
>    3
>    130246
>    0
>    one-3379
>    0
>    0
>    0
>    0
>    0
>    
>      
>      
>        
>        
>        
>      
>      
>        
>      
>      
>        
>        
>        
>      
>      
>      
>      
>        
>        
>        
>        
>        
>      
>      
>        
>        
>      
>      
>        
>        
>      
>      
>    
>    
>      0
>      node2
>      31
>      130276
>      0
>      130276
>      130283
>      130283
>      0
>      0
>      0
>      0
>    
>  
> 
> OpenNebula vms info
> OpenNebula host  Array
> Array
> OpenNebula vms array if
> OpenNebula vm_id 1
> OpenNebula vms info return code
> nil
>
> Thanks again, Tino!
>
> --
> Zaina
>
> On Wed, 13 Apr 2011 16:27:17 +0200, Tino Vazquez wrote:
>>
>> Hi Zaina,
>>
>> I think we have a bug here. Could you please try the changing following:
>>
>> vms = VirtualMachinePool.new(client)
>>
>> to
>>
>> vms = VirtualMachinePool.new(client, -1)
>>
>> Regards,
>>
>> -Tino
>>
>> --
>> Constantino Vázquez Blanco | dsa-research.org/tinova
>> Virtualization Technology Engineer / Researcher
>> OpenNebula Toolkit | opennebula.org
>>
>>
>>
>> On Tue, Apr 12, 2011 at 5:21 PM, Tino Vazquez  wrote:
>>>
>>> Hi,
>>>
>>> Just to confirm, are you running "oned" as root or as oneadmin?
>>>
>>> Regards,
>>>
>>> -Tino
>>>
>>> --
>>> Constantino Vázquez Blanco | dsa-research.org/tinova
>>> Virtualization Technology Engineer / Researcher
>>> OpenNebula Toolkit | opennebula.org
>>>
>>>
>>>
>>> On Tue, Apr 12, 2011 at 3:19 PM, Zaina AFOULKI
>>>  wrote:

 Hi,

 I have two VMs running with onevm list. But after I added the lines you
 indicated at the end of the file I get:

 OpenNebula vms info return code
 nil

 Not sure what's wrong here...
 Thanks a lot for your help Tino.

 --
 Zaina

 On Tue, 12 Apr 2011 13:44:30 +0200, Tino Vazquez wrote:
>
> Hi Zaina,
>
> Let's see why the "vms.info" is failing, please add the following to
> the file:
>
> --
> rc = vms.info
>
> my_file.puts "OpenNebula vms info return code"
> my_file.puts rc
> --
>
> Regards,
>
> -Tino
>
> --
> Constantino Vázquez Blanco, MSc
> OpenNebula Major Contributor
> www.OpenNebula.org | @tinova79
>
>
>
> On Tue, Apr 12, 2011 at 1:36 PM, Zaina AFOULKI
>  wrote:
>>
>> Hi Tino,
>>
>> this is the output of "onevm list"
>>   ID     USER     NAME STAT CPU     MEM        HOSTNAME        TIME
>>  3362   orange orange-a runn   0      0K           node2 00 00:06:53
>>  3363   orange orange-a runn   0      0K           node2 00 00:06:53
>>
>> The output in /tmp/remove_me.txt is still 
>>
>> Thanks,
>>
>> --
>> Zaina
>>
>> On Mon, 11 Apr 2011 17:02:10 +0200, Tino Vazquez wrote:
>>>
>>> Hi,
>>>
>>> So it seems like the retrieved collection of VMs is null, and that is
>>> why no VM is scheduled. What is the output of "onevm list"? Running
>>> as
>>> oneadmin.
>>>
>>> Regards,
>>>
>>> -Tino
>>>
>>> --

Re: [one-users] setting variables ONE_LOCATION

2011-04-25 Thread Marco Mirabile
ok, was my uncertainty
Yes, now I installed in systeme-wide mode.
But when I launch "one start" appeare to video a message error.
The message say to set ONE_AUTH, but I created and setted the file
one_auth following the documentation

2011/4/25 Carlos Martín Sánchez :
> Hi Marco,
>
> If you installed OpenNebula from the packages, then the installation was
> made in system-wide mode [1].
> You don't need -actually you shouldn't- set the ONE_LOCATION env. variable.
>
> Regards.
>
> [1] http://opennebula.org/documentation:rel2.2:ignc
>
> --
> Carlos Martín, MSc
> Project Major Contributor
> OpenNebula - The Open Source Toolkit for Cloud Computing
> www.OpenNebula.org | cmar...@opennebula.org
>
>
> On Mon, Apr 11, 2011 at 12:48 PM, Marco Mirabile 
> wrote:
>>
>> i have install opnennebula with deb package.
>> where is it the directory of installation?
>> (i must set the ONE_LOCATION path)
>> I have searched the home directory in / srv / cloud / one, but I can not
>> find the folder
>>
>> thank you very much
>> marco mirable
>> ___
>> Users mailing list
>> Users@lists.opennebula.org
>> http://lists.opennebula.org/listinfo.cgi/users-opennebula.org
>>
>
>
___
Users mailing list
Users@lists.opennebula.org
http://lists.opennebula.org/listinfo.cgi/users-opennebula.org


[one-users] how to disabled a user?

2011-04-25 Thread aiguoxin2008 aiguoxin2008
In java API,There is a class named User that has a method named isEnabled().
I want to know oneadmin how to disabled a regular user ?
___
Users mailing list
Users@lists.opennebula.org
http://lists.opennebula.org/listinfo.cgi/users-opennebula.org


Re: [one-users] There has no parameter to define subnet mask in Virtual Network template.

2011-04-25 Thread qian.shen

I think the "255.255.255.0" is not suitable for the "B" type network.

wen.y...@cs2c.com.cn wrote:


In script vmcontexttty ,the subnet mask of virtual machine is setted 
as "255.255.255.0". If the subnet mask of physical PC isn't equal to 
"255.255.255.0", then the physical PC can communicate with virtual 
machine or not?


 


For example:

The physical PC's IP is "10.1.29.105", subnet mask is "255.255.0.0".

The virtual machine's IP is "10.1.29.106", subnet mask is "255.255.255.0".

The physical PC ping the virtual machine failure.

 

I set virtual machine's subnet mask as "255.255.0.0" by using VNC, 
then The physical PC ping the virtual machine success.




___
Users mailing list
Users@lists.opennebula.org
http://lists.opennebula.org/listinfo.cgi/users-opennebula.org
  


___
Users mailing list
Users@lists.opennebula.org
http://lists.opennebula.org/listinfo.cgi/users-opennebula.org


Re: [one-users] Asking about VMWARE ESX and OpenNebula

2011-04-25 Thread Hoang Dinh Phuc
Hi Tino Vazquez,

I've ran the command

$ ruby -dw $ONE_LOCATION/lib/mads/one_im_sh.rb

But it don't return anything. Do i have to do anything?

Thanks

On 25 April 2011 21:19, Tino Vazquez  wrote:

> Hi,
>
> Let's see what happens if the driver is executed by hand, please send
> the output of:
>
> $ ruby -dw $ONE_LOCATION/lib/mads/one_im_sh.rb
> INIT
> MONITOR 0  -
>
> Regards,
>
> -Tino
>
> --
> Constantino Vázquez Blanco, MSc
> OpenNebula Major Contributor
> www.OpenNebula.org | @tinova79
>
>
>
> On Tue, Apr 19, 2011 at 2:50 AM, Hoang Dinh Phuc  wrote:
> >
> > Hello all,
> >
> >  I've already installed OpenNebula 2.2 on CentOS and add KVM host to
> > OpenNebula. Now, i want to add ESX Server (VMWARE) to be managed by the
> > OpenNebula. But it make an error. Here is my oned.conf:
> >
> > VM_MAD = [
> > name   = "vmm_vmware",
> > executable = "one_vmm_sh",
> > arguments  = "vmware",
> > default= "vmm_sh/vmm_sh_vmware.conf",
> > type   = "vmware" ]
> >
> >
> >
> #---
> > #  VMware Driver Addon Information Driver Manager Configuration
> >
> #---
> > IM_MAD = [
> >   name   = "im_vmware",
> >   executable = "one_im_sh",
> >   arguments  = "vmware" ]
> > #   arguments = "--username oneadmin --password ' ' " ]
> >
> #---
> >
> >
> #---
> > # VMware Driver Addon Transfer Manager Driver Configuration
> >
> #---
> > TM_MAD = [
> > name   = "tm_vmware",
> > executable = "one_tm",
> > arguments  = "tm_vmware/tm_vmware.conf" ]
> >
> > When i'm using onehost command to add VMWARE Host, it make an error
> state.
> > And here is the log
> > $ onehost esxsrv im_vmware vmm_vmware tm_vmware
> >
> > Mon Apr 18 14:24:05 2011 [InM][I]: Monitoring host esxsrv (3)
> > Mon Apr 18 14:24:05 2011 [ReM][D]: VirtualMachinePoolInfo method invoked
> > Mon Apr 18 14:24:05 2011 [InM][D]: Host 3 successfully monitored.
> > Mon Apr 18 14:24:05 2011 [ONE][E]: syntax error, unexpected $end,
> expecting
> > VARIABLE at line 2, columns 1:2
> > Mon Apr 18 14:24:05 2011 [InM][E]: Error parsing host information:
> >
> > Please show me the way to add VMWARE host to OpenNebula.
> >
> > Thanks so much.
> > ---
> > F:  Hoang Dinh Phuc
> > E:  hdp...@gmail.com
> > M: +84909398700
> >
> >
> >
> >
> > --
> > ---
> > F:  Hoang Dinh Phuc
> > E:  hdp...@gmail.com
> > M: +84909398700
> >
> >
> > ___
> > Users mailing list
> > Users@lists.opennebula.org
> > http://lists.opennebula.org/listinfo.cgi/users-opennebula.org
> >
> >
>



-- 
---
F:  Hoang Dinh Phuc
E:  hdp...@gmail.com
M: +84909398700
___
Users mailing list
Users@lists.opennebula.org
http://lists.opennebula.org/listinfo.cgi/users-opennebula.org


[one-users] XENBUS: Waiting for devices to initialise... Can anybody show me a xen vm template on Debian that can work?

2011-04-25 Thread 郭健
After I use opennebula to create a xen vm, it first seems to be running, but
its status becomes “unknown” soon. When its status is still running, I log
in this vm using “xm console one-36”, and the console shows: 

What’s the problem? Can anybody show me a xen vm template on Debian that
can work? I have failed too many times for this job.

 

[0.168531] XENBUS: Device with no driver: device/vbd/2048

[0.168538] XENBUS: Device with no driver: device/vbd/2064

[0.168543] XENBUS: Device with no driver: device/vif/0

[0.168549] XENBUS: Device with no driver: device/console/0

[0.168570] /build/buildd-linux-2.6_2.6.32-30-amd64-d4MbNM/linux-2.6-2.6.
32/d
ebian/build/source_amd64_none/drivers/rtc/hctosys.c: unable to open rtc
device (rtc0)

[0.168595] Initalizing network drop monitor service

[0.168679] Freeing unused kernel memory: 592k freed

[0.168867] Write protecting the kernel read-only data: 4236k

Loading, please wait...

[0.212230] udev[46]: starting version 164

[0.292275] Initialising Xen virtual ethernet driver.

[0.306878] blkfront: xvda: barriers enabled

[0.307190]  xvda: unknown partition table

[5.400019] XENBUS: Waiting for devices to initialise:
295s...290s...285s...2
80s...275s...270s...265s...260s...255s...250s...245s...240s...235s...230s...
225s
...220s...215s...210s...205s...200s...195s...190s...185s...180s...175s...170
s...165s...160s...155s...150s...145s...140s...135s...130s...125s...udevd[46]
: worker [53] unexpectedly returned with status 0x0100

 

udevd[46]: worker [53] failed while handling '/devices/vbd-2048'

 

udevd[46]: worker [54] unexpectedly returned with status 0x0100

 

udevd[46]: worker [54] failed while handling '/devices/vbd-2064'

 

Begin: Loading essential drivers ... done.

Begin: Running /scripts/init-premount ... done.

Begin: Mounting root file system ... Begin: Running /scripts/local-top ...
done.

Begin: Running /scripts/local-premount ... done.

mount: can't read '/etc/fstab': No such file or directory

Begin: Running /scripts/local-bottom ... done.

done.

Begin: Running /scripts/init-bottom ... mount: mounting /dev on /root/dev
failed: No such file or directory

done.

mount: mounting /sys on /root/sys failed: No such file or directory

mount: mounting /proc on /root/proc failed: No such file or directory

Target filesystem doesn't have requested /sbin/init.

No init found. Try passing init= bootarg.

 

 

BusyBox v1.17.1 (Debian 1:1.17.1-8) built-in shell (ash)

Enter 'help' for a list of built-in commands.

 

/bin/sh: can't access tty; job control turned off

(initramfs)
120s...115s...110s...105s...100s...95s...90s...85s...80s...75s...70s...65s..
.60s...55s...50s...45s...40s...35s...30s...25s...20s...15s...10s...5s...0s..
.

[  300.400154] XENBUS: Timeout connecting to device: device/vbd/2064 (local
state 3, remote state 1)

 

(initramfs) [5.400019] XENBUS: Waiting for devices to initialise:
295s...290

s...285s...2
80s...275s..

.270s...265s...260s...255s...250s...245s...240s...235s...230s...225s

 
...220s...215s...210s...205s...200s.

..195s...190s...185s...180s...175s...170s...165s...160s...155s...150s...145s
...1

40s...135s...130s...125s...udevd[46]: worker [53] unexpectedly returned with
sta

tus 0x0100

sh: missing ]

(initramfs)

(initramfs) udevd[46]: worker [53] failed while handling '/devices/vbd-2048'

/bin/sh: udevd[46]:: not found

(initramfs)

(initramfs) udevd[46]: worker [54] unexpectedly returned with status 0x0100

/bin/sh: udevd[46]:: not found

(initramfs)

(initramfs) udevd[46]: worker [54] failed while handling '/devices/vbd-2064'

/bin/sh: udevd[46]:: not found

(initramfs) ls

bin  dev  init lib64root scripts  tmp

conf etc  lib  proc sbin sys  var

 

 

 

 

___
Users mailing list
Users@lists.opennebula.org
http://lists.opennebula.org/listinfo.cgi/users-opennebula.org


[one-users] Regular users can not change their own password

2011-04-25 Thread aiguoxin2008 aiguoxin2008
Regular users can not change their own password.
___
Users mailing list
Users@lists.opennebula.org
http://lists.opennebula.org/listinfo.cgi/users-opennebula.org


[one-users] Regular user can not register on opennebula

2011-04-25 Thread aiguoxin2008 aiguoxin2008
if a regular user want to register on opennebula by sunstone, there is no
interface of XML-RPC to use.

I think a regular user can register on opennebula. when he registered on
opennebula,the method isEnabled()  is false.
Then oneadmin can enabled the user. Of course ,there is no enable user
method currently.
___
Users mailing list
Users@lists.opennebula.org
http://lists.opennebula.org/listinfo.cgi/users-opennebula.org