[Engine-devel] default Vm memory size
by Laszlo Hornyak
Hi,
The default Vm size is 512 MB now. I think A bit more could be useful, e.g. a fedora installer won't start with 512 MB.
What about 1024 MB?
thx,
Laszlo
11 years, 10 months
[Engine-devel] ovirt engine sdk
by navin p
Hi,
I've written the following python program after configuring ovirt.
from ovirtsdk.xml import params
from ovirtsdk.api import API
api=API(url='http://XYZ:80',username='ABC',password='123')
print "\n**********************VMS************************\n"
vmlist = api.vms.list()
hostlist = api.hosts.list()
evenlist = api.events.list();
for vm in vmlist:
print vm.name,vm.memory,vm.id,vm.os.kernel,vm.cluster.id,vm.start_time
print "\n**********************HOSTS ********************\n"
for host in hostlist:
print host.name
#print "\n**********************EVENTS ********************\n"
#for evt in evenlist:
# print evt.description
It prints the output as
*********************VMS************************
fedora18 2147483648 3e4634b7-82a9-4c4f-8599-0f9092a9258e None
99408929-82cf-4dc7-a532-9d998063fa95 None
testdtop1 536870912 c256a1d9-2e3f-42e8-9020-6d08d21d2d73 None
99408929-82cf-4dc7-a532-9d998063fa95 2013-01-23T09:59:36.726Z
testvm1 268435456 f6b2a97d-34b2-4a62-adae-ac0504b96558 None
99408929-82cf-4dc7-a532-9d998063fa95 2013-01-23T09:55:06.727Z
testvmfedora18 536870912 25c14ee6-65dd-4785-af0c-a8df3f87573f None
99408929-82cf-4dc7-a532-9d998063fa95 None
**********************HOSTS ********************
omwin.ind.hp.com
Now i want to get the statistics for each vm like the memory used and
memory installed etc in python. How do i go about getting them ? Do we have
something like a header file in C or C++ where i can see the member
variables and then get the statistics ?
Regards,
Navin
11 years, 10 months
[Engine-devel] ovirt node
by David Michel (ODEC Ltd.)
hi
i cannot add ovirt node to ovirt-engine
ssh error occur although i can connect to the node using ssh from
engine machine
please i need your help to solve this issue
thanks
11 years, 10 months
[Engine-devel] RFC: New Storage API
by Saggi Mizrahi
I've been throwing a lot of bits out about the new storage API and I think it's time to talk a bit.
I will purposefully try and keep implementation details away and concentrate about how the API looks and how you use it.
First major change is in terminology, there is no long a storage domain but a storage repository.
This change is done because so many things are already called domain in the system and this will make things less confusing for new-commers with a libvirt background.
One other changes is that repositories no longer have a UUID.
The UUID was only used in the pool members manifest and is no longer needed.
connectStorageRepository(repoId, repoFormat, connectionParameters={}):
repoId - is a transient name that will be used to refer to the connected domain, it is not persisted and doesn't have to be the same across the cluster.
repoFormat - Similar to what used to be type (eg. localfs-1.0, nfs-3.4, clvm-1.2).
connectionParameters - This is format specific and will used to tell VDSM how to connect to the repo.
disconnectStorageRepository(self, repoId):
In the new API there are only images, some images are mutable and some are not.
mutable images are also called VirtualDisks
immutable images are also called Snapshots
There are no explicit templates, you can create as many images as you want from any snapshot.
There are 4 major image operations:
createVirtualDisk(targetRepoId, size, baseSnapshotId=None,
userData={}, options={}):
targetRepoId - ID of a connected repo where the disk will be created
size - The size of the image you wish to create
baseSnapshotId - the ID of the snapshot you want the base the new virtual disk on
userData - optional data that will be attached to the new VD, could be anything that the user desires.
options - options to modify VDSMs default behavior
returns the id of the new VD
createSnapshot(targetRepoId, baseVirtualDiskId,
userData={}, options={}):
targetRepoId - The ID of a connected repo where the new sanpshot will be created and the original image exists as well.
size - The size of the image you wish to create
baseVirtualDisk - the ID of a mutable image (Virtual Disk) you want to snapshot
userData - optional data that will be attached to the new Snapshot, could be anything that the user desires.
options - options to modify VDSMs default behavior
returns the id of the new Snapshot
copyImage(targetRepoId, imageId, baseImageId=None, userData={}, options={})
targetRepoId - The ID of a connected repo where the new image will be created
imageId - The image you wish to copy
baseImageId - if specified, the new image will contain only the diff between image and Id.
If None the new image will contain all the bits of image Id. This can be used to copy partial parts of images for export.
userData - optional data that will be attached to the new image, could be anything that the user desires.
options - options to modify VDSMs default behavior
return the Id of the new image. In case of copying an immutable image the ID will be identical to the original image as they contain the same data. However the user should not assume that and always use the value returned from the method.
removeImage(repositoryId, imageId, options={}):
repositoryId - The ID of a connected repo where the image to delete resides
imageId - The id of the image you wish to delete.
----
getImageStatus(repositoryId, imageId)
repositoryId - The ID of a connected repo where the image to check resides
imageId - The id of the image you wish to check.
All operations return once the operations has been committed to disk NOT when the operation actually completes.
This is done so that:
- operation come to a stable state as quickly as possible.
- In case where there is an SDM, only small portion of the operation actually needs to be performed on the SDM host.
- No matter how many times the operation fails and on how many hosts, you can always resume the operation and choose when to do it.
- You can stop an operation at any time and remove the resulting object making a distinction between "stop because the host is overloaded" to "I don't want that image"
This means that after calling any operation that creates a new image the user must then call getImageStatus() to check what is the status of the image.
The status of the image can be either optimized, degraded, or broken.
"Optimized" means that the image is available and you can run VMs of it.
"Degraded" means that the image is available and will run VMs but it might be a better way VDSM can represent the underlying data.
"Broken" means that the image can't be used at the moment, probably because not all the data has been set up on the volume.
Apart from that VDSM will also return the last persisted status information which will conatin
hostID - the last host to try and optimize of fix the image
stage - X/Y (eg. 1/10) the last persisted stage of the fix.
percent_complete - -1 or 0-100, the last persisted completion percentage of the aforementioned stage. -1 means that no progress is available for that operation.
last_error - This will only be filled if the operation failed because of something other then IO or a VDSM crash for obvious reasons.
It will usually be set if the task was manually stopped
The user can either be satisfied with that information or as the host specified in host ID if it is still working on that image by checking it's running tasks.
checkStorageRepository(self, repositoryId, options={}):
A method to go over a storage repository and scan for any existing problems. This includes degraded\broken images and deleted images that have no yet been physically deleted\merged.
It returns a list of Fix objects.
Fix objects come in 4 types:
clean - cleans data, run them to get more space.
optimize - run them to optimize a degraded image
merge - Merges two images together. Doing this sometimes
makes more images ready optimizing or cleaning.
The reason it is different from optimize is that
unmerged images are considered optimized.
mend - mends a broken image
The user can read these types and prioritize fixes. Fixes also contain opaque FIX data and they should be sent as received to
fixStorageRepository(self, repositoryId, fix, options={}):
That will start a fix operation.
All major operations automatically start the appropriate "Fix" to bring the created object to an optimize\degraded state (the one that is quicker) unless one of the options is
AutoFix=False. This is only useful for repos that might not be able to create volumes on all hosts (SDM) but would like to have the actual IO distributed in the cluster.
Other common options is the strategy option:
It has currently 2 possible values
space and performance - In case VDSM has 2 ways of completing the same operation it will tell it to value one over the other. For example, whether to copy all the data or just create a qcow based of a snapshot.
The default is space.
You might have also noticed that it is never explicitly specified where to look for existing images. This is done purposefully, VDSM will always look in all connected repositories for existing objects.
For very large setups this might be problematic. To mitigate the problem you have these options:
participatingRepositories=[repoId, ...] which tell VDSM to narrow the search to just these repositories
and
imageHints={imgId: repoId} which will force VDSM to look for those image ID just in those repositories and fail if it doesn't find them there.
11 years, 10 months
[Engine-devel] maven build trick
by Laszlo Hornyak
hi,
I recommend that you add this script to your build script:
rm -rf ~/.m2/repository/org/ovirt
This will remove the generated ovirt artifacts from your local maven repo.
Why is this needed:
If you remove some artifact from the build, that other artifacts are built on, these artifacts will still be able to resolve the missing dependency from the local repo (which is wrong). In this way, your build can still depend on an outdated artifact without breaking the build. This is why you do not notice that the build is broken, maven will just take it as a third party artifact.
Thx,
Laszlo
11 years, 10 months
[Engine-devel] RFE: Health Indication on UI
by Shireesh Anjal
Hi,
Currently, oVirt is intelligent to understand the relationship
hierarchies of various entities in the system, and even allows setting
permissions based on this hierarchy. Can this information further be
used to enhance the health monitoring of various entities in the system?
Let me take an example.
Consider this hierarchy (gluster):
System -> Cluster -> Volume -> Brick
If one or more bricks of a volume are down, which indicates a problem,
following entities should be overlaid with a warning symbol (say, a
yellow exclamation mark)
- Volume to which the brick(s) belong(s)
- it's parent cluster
- System
This helps in highlighting what parts of the system are affected by
failures/problems at the lowest level entities, and gives a better idea
of the overall health of the entire environment to the administrator.
Thoughts?
Thanks,
Shireesh
11 years, 10 months
[Engine-devel] RFE: Actions on tasks (jobs)
by Shireesh Anjal
Hi,
We plan to introduce support for gluster tasks in oVirt, using the
current Jobs/steps framework. Which means, any gluster async task
started on a cluster will be shown as a Job in the "Tasks" tab. While
this helps in listing and monitoring the status of all gluster tasks, we
have a requirement to support a set of actions on such tasks. One should
be able to select a task, and then, if supported for that task, perform
one or more of the following actions on it:
- pause
- resume
- abort
- commit
I think this can probably be achieved by introducing a generic mechanism
for performing actions on task, allowing each type of task to define
what actions are allowed on it in it's current state.
Requesting opinions/suggestions on possible ways to achieve this
requirement.
Thanks,
Shireesh
11 years, 10 months
[Engine-devel] Unable to add second Data domain to my Data Center.
by Alexander Wels
Hello,
I am trying to setup a host for a seperate oVirt engine/node environment
(version 3.1). I managed to get my host up and running and active in my Data
Center. I managed to create 4 storage domains on that host. 2 Data domains and
1 ISO domain and one Export domain.
I am successful in attaching the ISO/Export/smaller Data domain to my Data
Center. The web admin interface is indicating they are active. I activated my
smaller test Data domain because I was having some issues earlier getting my
storage attached. I worked through those issues and now I want to attach my
actual Data storage so I can detach the test one. Whenever I attempt to attach
the storage I get an error message and when I look in the vdsm log I see the
following:
Thread-2801::ERROR::2013-01-17 16:55:22,340::task::853::TaskManager.Task::
(_setError) Task=`fe1ac39e-7681-4043-b2b7-b6e2611e1c10`::Unexpected error
Traceback (most recent call last):
File "/usr/share/vdsm/storage/task.py", line 861, in _run
return fn(*args, **kargs)
File "/usr/share/vdsm/logUtils.py", line 38, in wrapper
res = f(*args, **kwargs)
File "/usr/share/vdsm/storage/hsm.py", line 960, in attachStorageDomain
pool.attachSD(sdUUID)
File "/usr/share/vdsm/storage/securable.py", line 63, in wrapper
return f(self, *args, **kwargs)
File "/usr/share/vdsm/storage/sp.py", line 919, in attachSD
dom.acquireClusterLock(self.id)
File "/usr/share/vdsm/storage/sd.py", line 429, in acquireClusterLock
self._clusterLock.acquire(hostID)
File "/usr/share/vdsm/storage/safelease.py", line 205, in acquire
"Cannot acquire cluster lock", str(e))
AcquireLockFailure: Cannot obtain lock:
"id=807c2e91-52c3-4779-9ebb-771b96bf5a4c, rc=28, out=Cannot acquire cluster
lock, err=(28, 'Sanlock resource not acquired', 'No space left on device')"
Thread-2801::DEBUG::2013-01-17 16:55:22,341::task::872::TaskManager.Task::
(_run) Task=`fe1ac39e-7681-4043-b2b7-b6e2611e1c10`::Task._run:
fe1ac39e-7681-4043-b2b7-b6e2611e1c10 ('807c2e91-52c3-4779-9ebb-771b96bf5a4c',
'58
49b030-626e-47cb-ad90-3ce782d831b3') {} failed - stopping task
Which seems to indicate the disk is full. Which is not the case as this is a
brand new machine with a fresh install and a 1T drive in it. The error does
point to sanlock so when I look at the sanlock log I see this:
2013-01-17 16:55:22-0500 4161 [3187]: r12 cmd_acquire 3,14,3830 invalid
lockspace found -1 failed 0 name 807c2e91-52c3-4779-9ebb-771b96bf5a4c
I googled around for that particular error message and I couldn't find anyone
with any suggestions as to the source of that problem.
Could someone please give me a pointer of where to look or help me debug the
issue.
Thanks,
Alexander
11 years, 10 months
[Engine-devel] Error while trying to read parameter HTTP_PORT from user
by Chen, Wei D
--_000_C5A0092C63E939488005F15F736A8112114522SHSMSX101ccrcorpi_
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: quoted-printable
Hi,
There is a problem in setup ovirt-engine, "Error while trying to read par=
ameter HTTP_PORT from user."
The env is setup with ovirt-engine 3.2.0 from http://www.ovirt.org/Building=
_oVirt_engine , at last i try to
input 'make' to configure ovirt engine.
Selinux is 'SELINUX=3Denforcing' in /etc/selinux/config
Iptalbles is running, and the below ports in open.
iptables -I INPUT 1 -p tcp --dport 443 -j ACCEPT
iptables -I INPUT 1 -p tcp --dport 80 -j ACCEPT
iptables -I INPUT 1 -p tcp --dport 4457 -j ACCEPT
iptables -I INPUT 1 -p tcp --dport 8443 -j ACCEPT
iptables -I INPUT 1 -p tcp --dport 8083 -j ACCEPT
iptables -I INPUT 1 -p tcp --dport 1090 -j ACCEPT
/usr/share/jboss-as/bin/standalone.sh can run too.
The below is printing out information when I input engine-setup:
###################################
#engine-setup
Welcome to oVirt Engine setup utility
In order to proceed the installer must stop the ovirt-engine service
Would you like to stop the ovirt-engine service? (yes|no): yes
oVirt Engine uses httpd to proxy requests to the application server.
It looks like the httpd installed locally is being actively used.
The installer can override current configuration .
Alternatively you can use JBoss directly (on ports higher than 1024)
Do you wish to override current httpd configuration and restart the service=
? ['yes'| 'no'] [yes] : yse
Error: response is not part of the following accepted answers: yes, no
oVirt Engine uses httpd to proxy requests to the application server.
It looks like the httpd installed locally is being actively used.
The installer can override current configuration .
Alternatively you can use JBoss directly (on ports higher than 1024)
Do you wish to override current httpd configuration and restart the service=
? ['yes'| 'no'] [yes] : yes
HTTP Port [80] : 80
Error while trying to read parameter HTTP_PORT from user.
Please check log file /var/log/ovirt-engine/engine-setup_2013_01_17_04_18_1=
7.log for more information
Below is /var/log/ovirt-engine/engine-setup_2013_01_17_04_18_17.log
###########/var/log/ovirt-engine/engine-setup_2013_01_17_04_18_17.log #####=
#####
2013-01-17 04:18:17::DEBUG::common_utils::1255::root:: checking if firewall=
d service is available
2013-01-17 04:18:17::DEBUG::common_utils::430::root:: Executing command -->=
'/bin/systemctl show firewalld'
2013-01-17 04:18:17::DEBUG::common_utils::468::root:: output =3D
2013-01-17 04:18:17::DEBUG::common_utils::469::root:: stderr =3D Failed to =
issue method call: Unit name firewalld is not valid.
2013-01-17 04:18:17::DEBUG::common_utils::470::root:: retcode =3D 1
2013-01-17 04:18:17::DEBUG::common_utils::1255::root:: checking if iptables=
service is available
2013-01-17 04:18:17::DEBUG::common_utils::430::root:: Executing command -->=
'/bin/systemctl show iptables'
2013-01-17 04:18:17::DEBUG::common_utils::468::root:: output =3D
2013-01-17 04:18:17::DEBUG::common_utils::469::root:: stderr =3D Failed to =
issue method call: Unit name iptables is not valid.
2013-01-17 04:18:17::DEBUG::common_utils::470::root:: retcode =3D 1
2013-01-17 04:18:17::DEBUG::common_utils::430::root:: Executing command -->=
'/sbin/ip addr'
2013-01-17 04:18:17::DEBUG::common_utils::468::root:: output =3D 1: lo: <LO=
OPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue state UNKNOWN
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: em1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state U=
P qlen 1000
link/ether 2c:41:38:a8:41:13 brd ff:ff:ff:ff:ff:ff
inet 10.239.131.232/24 brd 10.239.131.255 scope global em1
inet6 fe80::2e41:38ff:fea8:4113/64 scope link
valid_lft forever preferred_lft forever
2013-01-17 04:18:17::DEBUG::common_utils::469::root:: stderr =3D
2013-01-17 04:18:17::DEBUG::common_utils::470::root:: retcode =3D 0
2013-01-17 04:18:17::DEBUG::common_utils::589::root:: Found IP Address: 10.=
239.131.232
2013-01-17 04:18:17::DEBUG::engine-setup::2139::root:: initiating command l=
ine option parser
2013-01-17 04:18:17::DEBUG::engine-setup::2106::root:: checking total memor=
y
2013-01-17 04:18:17::DEBUG::common_utils::430::root:: Executing command -->=
'/usr/bin/free -m'
2013-01-17 04:18:17::DEBUG::common_utils::468::root:: output =3D =
total used free shared buffers cached
Mem: 7945 627 7317 0 15 406
-/+ buffers/cache: 205 7739
Swap: 9983 0 9983
2013-01-17 04:18:17::DEBUG::common_utils::469::root:: stderr =3D
2013-01-17 04:18:17::DEBUG::common_utils::470::root:: retcode =3D 0
2013-01-17 04:18:17::DEBUG::engine-setup::2118::root:: Found a match, amoun=
t of memory: 7945
2013-01-17 04:18:17::DEBUG::engine-setup::2008::root:: Entered main(configF=
ile=3D'None')
2013-01-17 04:18:17::DEBUG::engine-setup::1802::root:: stopping ovirt-engin=
e service
2013-01-17 04:18:17::DEBUG::common_utils::967::root:: asking user: Would yo=
u like to stop the ovirt-engine service? (yes|no):
2013-01-17 04:18:19::DEBUG::common_utils::971::root:: user answered: yes
2013-01-17 04:18:19::DEBUG::common_utils::1211::root:: stopping ovirt-engin=
e
2013-01-17 04:18:19::DEBUG::common_utils::1248::root:: executing action ovi=
rt-engine on service stop
2013-01-17 04:18:19::DEBUG::common_utils::430::root:: Executing command -->=
'/sbin/service ovirt-engine stop'
2013-01-17 04:18:19::DEBUG::common_utils::468::root:: output =3D
2013-01-17 04:18:19::DEBUG::common_utils::469::root:: stderr =3D
2013-01-17 04:18:19::DEBUG::common_utils::470::root:: retcode =3D 0
2013-01-17 04:18:19::DEBUG::engine-setup::1532::root:: going over group POR=
TS
2013-01-17 04:18:19::DEBUG::common_utils::1289::root:: retrieving version f=
or ipa-server rpm
2013-01-17 04:18:19::DEBUG::common_utils::1310::root:: getRpmVersion failed
Traceback (most recent call last):
File "/usr/local/share/ovirt-engine/scripts/common_utils.py", line 1307, =
in installed
getRpmVersion(rpmName=3Drpm)
File "/usr/local/share/ovirt-engine/scripts/common_utils.py", line 1301, =
in getRpmVersion
raise Exception(output_messages.ERR_READ_RPM_VER % rpmName)
Exception: Error reading version number for package ipa-server
2013-01-17 04:18:19::DEBUG::common_utils::1289::root:: retrieving version f=
or freeipa-server rpm
2013-01-17 04:18:19::DEBUG::common_utils::1310::root:: getRpmVersion failed
Traceback (most recent call last):
File "/usr/local/share/ovirt-engine/scripts/common_utils.py", line 1307, =
in installed
getRpmVersion(rpmName=3Drpm)
File "/usr/local/share/ovirt-engine/scripts/common_utils.py", line 1301, =
in getRpmVersion
raise Exception(output_messages.ERR_READ_RPM_VER % rpmName)
Exception: Error reading version number for package freeipa-server
2013-01-17 04:18:19::INFO::engine-setup::1541::root:: Comparing pre-conditi=
ons; condition: 'True', and match: 'True'
2013-01-17 04:18:20::INFO::engine_validators::199::root:: validateOverrideH=
ttpdConfAndChangePortsAccordingly yse as part of ['yes', 'no']
2013-01-17 04:18:20::INFO::engine_validators::182::root:: Validating yse as=
part of ['yes', 'no']
2013-01-17 04:18:22::INFO::engine_validators::199::root:: validateOverrideH=
ttpdConfAndChangePortsAccordingly yes as part of ['yes', 'no']
2013-01-17 04:18:22::INFO::engine_validators::182::root:: Validating yes as=
part of ['yes', 'no']
2013-01-17 04:18:22::DEBUG::engine_validators::207::root:: stopping httpd s=
ervice
2013-01-17 04:18:22::DEBUG::common_utils::1211::root:: stopping httpd
2013-01-17 04:18:22::DEBUG::common_utils::1248::root:: executing action htt=
pd on service stop
2013-01-17 04:18:22::DEBUG::common_utils::430::root:: Executing command -->=
'/sbin/service httpd stop'
2013-01-17 04:18:22::DEBUG::common_utils::468::root:: output =3D
2013-01-17 04:18:22::DEBUG::common_utils::469::root:: stderr =3D
2013-01-17 04:18:22::DEBUG::common_utils::470::root:: retcode =3D 0
2013-01-17 04:18:24::DEBUG::engine_validators::62::root:: Validating 80 as =
a valid TCP Port
2013-01-17 04:18:24::DEBUG::common_utils::394::root:: Checking if TCP port =
80 is open by any process
2013-01-17 04:18:24::DEBUG::common_utils::430::root:: Executing command -->=
'/usr/sbin/lsof -i -n -P'
2013-01-17 04:18:24::ERROR::engine-setup::601::root:: Traceback (most recen=
t call last):
File "/usr/local/bin/engine-setup", line 574, in _getInputFromUser
if param.getKey("VALIDATION_FUNC")(userInput, param.getKey("OPTION_LIST=
")):
File "/usr/local/share/ovirt-engine/scripts/engine_validators.py", line 8=
1, in validatePort
(portOpen, process, pid) =3D utils.isTcpPortOpen(param)
File "/usr/local/share/ovirt-engine/scripts/common_utils.py", line 399, i=
n isTcpPortOpen
output, rc =3D execCmd(cmdList=3Dcmd, failOnError=3DTrue, msg=3Doutput_=
messages.ERR_EXP_LSOF)
File "/usr/local/share/ovirt-engine/scripts/common_utils.py", line 454, i=
n execCmd
env=3Denv,
File "/usr/lib64/python2.7/subprocess.py", line 679, in __init__
errread, errwrite)
File "/usr/lib64/python2.7/subprocess.py", line 1249, in _execute_child
raise child_exception
OSError: [Errno 2] No such file or directory
2013-01-17 04:18:25::ERROR::engine-setup::1577::root:: Traceback (most rece=
nt call last):
File "/usr/local/bin/engine-setup", line 1546, in _handleInteractiveParam=
s
input_param(param)
File "/usr/local/bin/engine-setup", line 628, in input_param
_getInputFromUser(param)
File "/usr/local/bin/engine-setup", line 602, in _getInputFromUser
raise Exception(output_messages.ERR_EXP_READ_INPUT_PARAM % (param.getKe=
y("CONF_NAME")))
Exception: Error while trying to read parameter HTTP_PORT from user.
2013-01-17 04:18:25::DEBUG::engine-setup::1875::root:: *** The following pa=
rams were used as user input:
2013-01-17 04:18:25::DEBUG::engine-setup::1880::root:: override-httpd-confi=
g: yes
2013-01-17 04:18:25::ERROR::engine-setup::2295::root:: Traceback (most rece=
nt call last):
File "/usr/local/bin/engine-setup", line 2290, in <module>
main(confFile)
File "/usr/local/bin/engine-setup", line 2028, in main
_handleParams(configFile)
File "/usr/local/bin/engine-setup", line 1589, in _handleParams
_handleInteractiveParams()
File "/usr/local/bin/engine-setup", line 1546, in _handleInteractiveParam=
s
input_param(param)
File "/usr/local/bin/engine-setup", line 628, in input_param
_getInputFromUser(param)
File "/usr/local/bin/engine-setup", line 602, in _getInputFromUser
raise Exception(output_messages.ERR_EXP_READ_INPUT_PARAM % (param.getKe=
y("CONF_NAME")))
Exception: Error while trying to read parameter HTTP_PORT from user.
Best Regards,
Dave Chen
--_000_C5A0092C63E939488005F15F736A8112114522SHSMSX101ccrcorpi_
Content-Type: text/html; charset="us-ascii"
Content-Transfer-Encoding: quoted-printable
<html xmlns:v=3D"urn:schemas-microsoft-com:vml" xmlns:o=3D"urn:schemas-micr=
osoft-com:office:office" xmlns:w=3D"urn:schemas-microsoft-com:office:word" =
xmlns:m=3D"http://schemas.microsoft.com/office/2004/12/omml" xmlns=3D"http:=
//www.w3.org/TR/REC-html40">
<head>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Dus-ascii"=
>
<meta name=3D"Generator" content=3D"Microsoft Word 14 (filtered medium)">
<style><!--
/* Font Definitions */
@font-face
{font-family:\5B8B\4F53;
panose-1:2 1 6 0 3 1 1 1 1 1;}
@font-face
{font-family:\5B8B\4F53;
panose-1:2 1 6 0 3 1 1 1 1 1;}
@font-face
{font-family:Calibri;
panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
{font-family:"\@\5B8B\4F53";
panose-1:2 1 6 0 3 1 1 1 1 1;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{margin:0cm;
margin-bottom:.0001pt;
text-align:justify;
text-justify:inter-ideograph;
font-size:10.5pt;
font-family:"Calibri","sans-serif";}
a:link, span.MsoHyperlink
{mso-style-priority:99;
color:blue;
text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
{mso-style-priority:99;
color:purple;
text-decoration:underline;}
span.EmailStyle17
{mso-style-type:personal-compose;
font-family:"Calibri","sans-serif";
color:windowtext;}
.MsoChpDefault
{mso-style-type:export-only;
font-family:"Calibri","sans-serif";}
/* Page Definitions */
@page WordSection1
{size:612.0pt 792.0pt;
margin:72.0pt 90.0pt 72.0pt 90.0pt;}
div.WordSection1
{page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext=3D"edit" spidmax=3D"1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext=3D"edit">
<o:idmap v:ext=3D"edit" data=3D"1" />
</o:shapelayout></xml><![endif]-->
</head>
<body lang=3D"ZH-CN" link=3D"blue" vlink=3D"purple" style=3D"text-justify-t=
rim:punctuation">
<div class=3D"WordSection1">
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">Hi,<=
o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">&nbs=
p; There is a problem in setup ovirt-engine,</span><span lang=3D"EN-US"> &#=
8220;</span><span lang=3D"EN-US" style=3D"font-size:14.0pt">Error while try=
ing to read parameter HTTP_PORT from user.”<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">The =
env is setup with ovirt-engine 3.2.0 from
<a href=3D"http://www.ovirt.org/Building_oVirt_engine">http://www.ovirt.org=
/Building_oVirt_engine</a> , at last i try to
<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">inpu=
t ‘make’ to configure ovirt engine.<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt"><o:p=
> </o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">Seli=
nux is ‘SELINUX=3Denforcing’ in /etc/selinux/config<o:p></o:p><=
/span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">Ipta=
lbles is running, and the below ports in open.<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt"><o:p=
> </o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">ipta=
bles -I INPUT 1 -p tcp --dport 443 -j ACCEPT<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">ipta=
bles -I INPUT 1 -p tcp --dport 80 -j ACCEPT<o:p></o:p></span></=
p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">ipta=
bles -I INPUT 1 -p tcp --dport 4457 -j ACCEPT<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">ipta=
bles -I INPUT 1 -p tcp --dport 8443 -j ACCEPT<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">ipta=
bles -I INPUT 1 -p tcp --dport 8083 -j ACCEPT<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">ipta=
bles -I INPUT 1 -p tcp --dport 1090 -j ACCEPT<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt"><o:p=
> </o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt"><o:p=
> </o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">/usr=
/share/jboss-as/bin/standalone.sh can run too.<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt"><o:p=
> </o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">The =
below is printing out information when I input engine-setup:<o:p></o:p></sp=
an></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">####=
###############################
<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">#eng=
ine-setup<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">Welc=
ome to oVirt Engine setup utility<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">In o=
rder to proceed the installer must stop the ovirt-engine service<o:p></o:p>=
</span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">Woul=
d you like to stop the ovirt-engine service? (yes|no): yes<o:p></o:p></span=
></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">oVir=
t Engine uses httpd to proxy requests to the application server.<o:p></o:p>=
</span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">It l=
ooks like the httpd installed locally is being actively used.<o:p></o:p></s=
pan></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">The =
installer can override current configuration .<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">Alte=
rnatively you can use JBoss directly (on ports higher than 1024)<o:p></o:p>=
</span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">Do y=
ou wish to override current httpd configuration and restart the service? ['=
yes'| 'no'] [yes] : yse<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">Erro=
r: response is not part of the following accepted answers: yes, no<o:p></o:=
p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">oVir=
t Engine uses httpd to proxy requests to the application server.<o:p></o:p>=
</span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">It l=
ooks like the httpd installed locally is being actively used.<o:p></o:p></s=
pan></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">The =
installer can override current configuration .<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">Alte=
rnatively you can use JBoss directly (on ports higher than 1024)<o:p></o:p>=
</span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">Do y=
ou wish to override current httpd configuration and restart the service? ['=
yes'| 'no'] [yes] : yes<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">HTTP=
Port [80] : 80<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">Erro=
r while trying to read parameter HTTP_PORT from user.<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">Plea=
se check log file /var/log/ovirt-engine/engine-setup_2013_01_17_04_18_17.lo=
g for more information<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">Belo=
w is /var/log/ovirt-engine/engine-setup_2013_01_17_04_18_17.log<o:p></o:p><=
/span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">####=
#######/var/log/ovirt-engine/engine-setup_2013_01_17_04_18_17.log #########=
#<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"><o:p>&nb=
sp;</o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:17::DEBUG::common_utils::1255::root:: checking if firewalld servic=
e is available<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:17::DEBUG::common_utils::430::root:: Executing command --> '/bi=
n/systemctl show firewalld'<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:17::DEBUG::common_utils::468::root:: output =3D<o:p></o:p></span><=
/p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:17::DEBUG::common_utils::469::root:: stderr =3D Failed to issue me=
thod call: Unit name firewalld is not valid.<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"><o:p>&nb=
sp;</o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:17::DEBUG::common_utils::470::root:: retcode =3D 1<o:p></o:p></spa=
n></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:17::DEBUG::common_utils::1255::root:: checking if iptables service=
is available<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:17::DEBUG::common_utils::430::root:: Executing command --> '/bi=
n/systemctl show iptables'<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:17::DEBUG::common_utils::468::root:: output =3D<o:p></o:p></span><=
/p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:17::DEBUG::common_utils::469::root:: stderr =3D Failed to issue me=
thod call: Unit name iptables is not valid.<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"><o:p>&nb=
sp;</o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:17::DEBUG::common_utils::470::root:: retcode =3D 1<o:p></o:p></spa=
n></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:17::DEBUG::common_utils::430::root:: Executing command --> '/sb=
in/ip addr'<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:17::DEBUG::common_utils::468::root:: output =3D 1: lo: <LOOPBAC=
K,UP,LOWER_UP> mtu 16436 qdisc noqueue state UNKNOWN<o:p></o:p></span></=
p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> &n=
bsp; link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00<o:p></o:p>=
</span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> &n=
bsp; inet 127.0.0.1/8 scope host lo<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> &n=
bsp; inet6 ::1/128 scope host<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> &n=
bsp; valid_lft forever preferred_lft forever<o:p></=
o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2: em1: =
<BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP =
qlen 1000<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> &n=
bsp; link/ether 2c:41:38:a8:41:13 brd ff:ff:ff:ff:ff:ff<o:p></o:p></s=
pan></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> &n=
bsp; inet 10.239.131.232/24 brd 10.239.131.255 scope global em1<o:p><=
/o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> &n=
bsp; inet6 fe80::2e41:38ff:fea8:4113/64 scope link<o:p></o:p></span><=
/p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> &n=
bsp; valid_lft forever preferred_lft forever<o:p></=
o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"><o:p>&nb=
sp;</o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:17::DEBUG::common_utils::469::root:: stderr =3D<o:p></o:p></span><=
/p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:17::DEBUG::common_utils::470::root:: retcode =3D 0<o:p></o:p></spa=
n></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:17::DEBUG::common_utils::589::root:: Found IP Address: 10.239.131.=
232<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:17::DEBUG::engine-setup::2139::root:: initiating command line opti=
on parser<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:17::DEBUG::engine-setup::2106::root:: checking total memory<o:p></=
o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:17::DEBUG::common_utils::430::root:: Executing command --> '/us=
r/bin/free -m'<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:17::DEBUG::common_utils::468::root:: output =3D &=
nbsp; total &nbs=
p; used free&nb=
sp; shared buffers &nb=
sp; cached<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">Mem:&nbs=
p; 7945 &=
nbsp; 627 7317 &n=
bsp; 0 &nb=
sp; 15 406<o:p>=
</o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">-/+ =
buffers/cache: 205 &nb=
sp; 7739<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">Swap:&nb=
sp; 9983 &=
nbsp; 0 9983<o:=
p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"><o:p>&nb=
sp;</o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:17::DEBUG::common_utils::469::root:: stderr =3D<o:p></o:p></span><=
/p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:17::DEBUG::common_utils::470::root:: retcode =3D 0<o:p></o:p></spa=
n></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:17::DEBUG::engine-setup::2118::root:: Found a match, amount of mem=
ory: 7945<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:17::DEBUG::engine-setup::2008::root:: Entered main(configFile=3D'N=
one')<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:17::DEBUG::engine-setup::1802::root:: stopping ovirt-engine servic=
e<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:17::DEBUG::common_utils::967::root:: asking user: Would you like t=
o stop the ovirt-engine service? (yes|no):<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:19::DEBUG::common_utils::971::root:: user answered: yes<o:p></o:p>=
</span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:19::DEBUG::common_utils::1211::root:: stopping ovirt-engine<o:p></=
o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:19::DEBUG::common_utils::1248::root:: executing action ovirt-engin=
e on service stop<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:19::DEBUG::common_utils::430::root:: Executing command --> '/sb=
in/service ovirt-engine stop'<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:19::DEBUG::common_utils::468::root:: output =3D<o:p></o:p></span><=
/p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:19::DEBUG::common_utils::469::root:: stderr =3D<o:p></o:p></span><=
/p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:19::DEBUG::common_utils::470::root:: retcode =3D 0<o:p></o:p></spa=
n></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:19::DEBUG::engine-setup::1532::root:: going over group PORTS<o:p><=
/o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:19::DEBUG::common_utils::1289::root:: retrieving version for ipa-s=
erver rpm<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:19::DEBUG::common_utils::1310::root:: getRpmVersion failed<o:p></o=
:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">Tracebac=
k (most recent call last):<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> F=
ile "/usr/local/share/ovirt-engine/scripts/common_utils.py", line=
1307, in installed<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> &n=
bsp; getRpmVersion(rpmName=3Drpm)<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> F=
ile "/usr/local/share/ovirt-engine/scripts/common_utils.py", line=
1301, in getRpmVersion<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> &n=
bsp; raise Exception(output_messages.ERR_READ_RPM_VER % rpmName)<o:p>=
</o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">Exceptio=
n: Error reading version number for package ipa-server<o:p></o:p></span></p=
>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:19::DEBUG::common_utils::1289::root:: retrieving version for freei=
pa-server rpm<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:19::DEBUG::common_utils::1310::root:: getRpmVersion failed<o:p></o=
:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">Tracebac=
k (most recent call last):<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> F=
ile "/usr/local/share/ovirt-engine/scripts/common_utils.py", line=
1307, in installed<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> &n=
bsp; getRpmVersion(rpmName=3Drpm)<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> F=
ile "/usr/local/share/ovirt-engine/scripts/common_utils.py", line=
1301, in getRpmVersion<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> &n=
bsp; raise Exception(output_messages.ERR_READ_RPM_VER % rpmName)<o:p>=
</o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">Exceptio=
n: Error reading version number for package freeipa-server<o:p></o:p></span=
></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:19::INFO::engine-setup::1541::root:: Comparing pre-conditions; con=
dition: 'True', and match: 'True'<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:20::INFO::engine_validators::199::root:: validateOverrideHttpdConf=
AndChangePortsAccordingly yse as part of ['yes', 'no']<o:p></o:p></span></p=
>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:20::INFO::engine_validators::182::root:: Validating yse as part of=
['yes', 'no']<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:22::INFO::engine_validators::199::root:: validateOverrideHttpdConf=
AndChangePortsAccordingly yes as part of ['yes', 'no']<o:p></o:p></span></p=
>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:22::INFO::engine_validators::182::root:: Validating yes as part of=
['yes', 'no']<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:22::DEBUG::engine_validators::207::root:: stopping httpd service<o=
:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:22::DEBUG::common_utils::1211::root:: stopping httpd<o:p></o:p></s=
pan></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:22::DEBUG::common_utils::1248::root:: executing action httpd on se=
rvice stop<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:22::DEBUG::common_utils::430::root:: Executing command --> '/sb=
in/service httpd stop'<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:22::DEBUG::common_utils::468::root:: output =3D<o:p></o:p></span><=
/p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:22::DEBUG::common_utils::469::root:: stderr =3D<o:p></o:p></span><=
/p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:22::DEBUG::common_utils::470::root:: retcode =3D 0<o:p></o:p></spa=
n></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:24::DEBUG::engine_validators::62::root:: Validating 80 as a valid =
TCP Port<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:24::DEBUG::common_utils::394::root:: Checking if TCP port 80 is op=
en by any process<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:24::DEBUG::common_utils::430::root:: Executing command --> '/us=
r/sbin/lsof -i -n -P'<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:24::ERROR::engine-setup::601::root:: Traceback (most recent call l=
ast):<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> F=
ile "/usr/local/bin/engine-setup", line 574, in _getInputFromUser=
<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> &n=
bsp; if param.getKey("VALIDATION_FUNC")(userInput, param.ge=
tKey("OPTION_LIST")):<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> F=
ile "/usr/local/share/ovirt-engine/scripts/engine_validators.py",=
line 81, in validatePort<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> &n=
bsp; (portOpen, process, pid) =3D utils.isTcpPortOpen(param)<o:p></o:=
p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> F=
ile "/usr/local/share/ovirt-engine/scripts/common_utils.py", line=
399, in isTcpPortOpen<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> &n=
bsp; output, rc =3D execCmd(cmdList=3Dcmd, failOnError=3DTrue, msg=3D=
output_messages.ERR_EXP_LSOF)<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> F=
ile "/usr/local/share/ovirt-engine/scripts/common_utils.py", line=
454, in execCmd<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> &n=
bsp; env=3Denv,<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> F=
ile "/usr/lib64/python2.7/subprocess.py", line 679, in __init__<o=
:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> &n=
bsp; errread, errwrite)<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> F=
ile "/usr/lib64/python2.7/subprocess.py", line 1249, in _execute_=
child<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> &n=
bsp; raise child_exception<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">OSError:=
[Errno 2] No such file or directory<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"><o:p>&nb=
sp;</o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:25::ERROR::engine-setup::1577::root:: Traceback (most recent call =
last):<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> F=
ile "/usr/local/bin/engine-setup", line 1546, in _handleInteracti=
veParams<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> &n=
bsp; input_param(param)<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> F=
ile "/usr/local/bin/engine-setup", line 628, in input_param<o:p><=
/o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> &n=
bsp; _getInputFromUser(param)<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> F=
ile "/usr/local/bin/engine-setup", line 602, in _getInputFromUser=
<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> &n=
bsp; raise Exception(output_messages.ERR_EXP_READ_INPUT_PARAM % (para=
m.getKey("CONF_NAME")))<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">Exceptio=
n: Error while trying to read parameter HTTP_PORT from user.<o:p></o:p></sp=
an></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"><o:p>&nb=
sp;</o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:25::DEBUG::engine-setup::1875::root:: *** The following params wer=
e used as user input:<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:25::DEBUG::engine-setup::1880::root:: override-httpd-config: yes<o=
:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">2013-01-=
17 04:18:25::ERROR::engine-setup::2295::root:: Traceback (most recent call =
last):<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> F=
ile "/usr/local/bin/engine-setup", line 2290, in <module><o=
:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> &n=
bsp; main(confFile)<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> F=
ile "/usr/local/bin/engine-setup", line 2028, in main<o:p></o:p><=
/span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> &n=
bsp; _handleParams(configFile)<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> F=
ile "/usr/local/bin/engine-setup", line 1589, in _handleParams<o:=
p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> &n=
bsp; _handleInteractiveParams()<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> F=
ile "/usr/local/bin/engine-setup", line 1546, in _handleInteracti=
veParams<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> &n=
bsp; input_param(param)<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> F=
ile "/usr/local/bin/engine-setup", line 628, in input_param<o:p><=
/o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> &n=
bsp; _getInputFromUser(param)<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> F=
ile "/usr/local/bin/engine-setup", line 602, in _getInputFromUser=
<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体"> &n=
bsp; raise Exception(output_messages.ERR_EXP_READ_INPUT_PARAM % (para=
m.getKey("CONF_NAME")))<o:p></o:p></span></p>
<p class=3D"MsoNormal" align=3D"left" style=3D"text-align:left"><span lang=
=3D"EN-US" style=3D"font-size:12.0pt;font-family:宋体">Exceptio=
n: Error while trying to read parameter HTTP_PORT from user.<o:p></o:p></sp=
an></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US"><o:p> </o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US"><o:p> </o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US">Best Regards,<o:p></o:p></span>=
</p>
<p class=3D"MsoNormal"><span lang=3D"EN-US">Dave Chen<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US"><o:p> </o:p></span></p>
</div>
</body>
</html>
--_000_C5A0092C63E939488005F15F736A8112114522SHSMSX101ccrcorpi_--
11 years, 10 months
[Engine-devel] Upgrading Database Schema...error
by Chen, Wei D
--_000_C5A0092C63E939488005F15F736A81121147EESHSMSX101ccrcorpi_
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: quoted-printable
Hi ,
There is a problem in engine-setup-- "Upgrading Database Schema...error".=
The env is setup with ovirt-engine 3.2.0 from http://www.ovirt.org/Buildin=
g_oVirt_engine,
The below are printing out info and log. Could you help me to check it? Th=
anks in advance.
***
Installing:
Configuring oVirt-engine... [ DONE ]
Configuring JVM... [ DONE ]
Creating CA... [ DONE ]
Updating ovirt-engine service... [ DONE ]
Setting Database Configuration... [ DONE ]
Setting Database Security... [ DONE ]
Upgrading Database Schema... [ ERROR ]
Database backup failed
############### log ###################
2013-01-18 08:05:50::DEBUG::common_utils::469::root:: stderr =3D
2013-01-18 08:05:50::DEBUG::common_utils::470::root:: retcode =3D 0
2013-01-18 08:05:50::DEBUG::engine-setup::2125::root:: Found a match, amoun=
t of memory: 7945
2013-01-18 08:05:50::DEBUG::engine-setup::2015::root:: Entered main(configF=
ile=3D'None')
2013-01-18 08:05:50::DEBUG::engine-setup::1809::root:: stopping ovirt-engin=
e service
2013-01-18 08:05:50::DEBUG::common_utils::967::root:: asking user: Would yo=
u like to stop the ovirt-engine service? (yes|no):
2013-01-18 08:05:51::DEBUG::common_utils::971::root:: user answered: yes
2013-01-18 08:05:51::DEBUG::common_utils::1213::root:: stopping ovirt-engin=
e
2013-01-18 08:05:51::DEBUG::common_utils::1250::root:: executing action ovi=
rt-engine on service stop
2013-01-18 08:05:51::DEBUG::common_utils::430::root:: Executing command -->=
'/sbin/service ovirt-engine stop'
2013-01-18 08:05:51::DEBUG::common_utils::468::root:: output =3D
2013-01-18 08:05:51::DEBUG::common_utils::469::root:: stderr =3D
2013-01-18 08:05:51::DEBUG::common_utils::470::root:: retcode =3D 0
2013-01-18 08:05:51::DEBUG::engine-setup::1539::root:: going over group POR=
TS
2013-01-18 08:05:51::DEBUG::common_utils::1291::root:: retrieving version f=
or ipa-server rpm
2013-01-18 08:05:51::DEBUG::common_utils::1312::root:: getRpmVersion failed
Traceback (most recent call last):
File "/usr/local/share/ovirt-engine/scripts/common_utils.py", line 1309, =
in installed
getRpmVersion(rpmName=3Drpm)
File "/usr/local/share/ovirt-engine/scripts/common_utils.py", line 1303, =
in getRpmVersion
raise Exception(output_messages.ERR_READ_RPM_VER % rpmName)
Exception: Error reading version number for package ipa-server
2013-01-18 08:05:51::DEBUG::common_utils::1291::root:: retrieving version f=
or freeipa-server rpm
2013-01-18 08:05:51::DEBUG::common_utils::1312::root:: getRpmVersion failed
Traceback (most recent call last):
File "/usr/local/share/ovirt-engine/scripts/common_utils.py", line 1309, =
in installed
getRpmVersion(rpmName=3Drpm)
File "/usr/local/share/ovirt-engine/scripts/common_utils.py", line 1303, =
in getRpmVersion
raise Exception(output_messages.ERR_READ_RPM_VER % rpmName)
Exception: Error reading version number for package freeipa-server
2013-01-18 08:05:51::INFO::engine-setup::1548::root:: Comparing pre-conditi=
ons; condition: 'True', and match: 'True'
2013-01-18 08:05:52::INFO::engine_validators::199::root:: validateOverrideH=
ttpdConfAndChangePortsAccordingly yes as part of ['yes', 'no']
2013-01-18 08:05:52::INFO::engine_validators::182::root:: Validating yes as=
part of ['yes', 'no']
2013-01-18 08:05:52::DEBUG::engine_validators::207::root:: stopping httpd s=
ervice
2013-01-18 08:05:52::DEBUG::common_utils::1213::root:: stopping httpd
2013-01-18 08:05:52::DEBUG::common_utils::1250::root:: executing action htt=
pd on service stop
2013-01-18 08:05:52::DEBUG::common_utils::430::root:: Executing command -->=
'/sbin/service httpd stop'
2013-01-18 08:05:52::DEBUG::common_utils::468::root:: output =3D
2013-01-18 08:05:52::DEBUG::common_utils::469::root:: stderr =3D
2013-01-18 08:05:52::DEBUG::common_utils::470::root:: retcode =3D 0
2013-01-18 08:05:52::DEBUG::engine-setup::1539::root:: going over group ALL=
_PARAMS
2013-01-18 08:05:52::INFO::engine-setup::1548::root:: Comparing pre-conditi=
ons; condition: 'True', and match: 'True'
2013-01-18 08:05:52::DEBUG::engine-setup::551::root:: setting default value=
(no) for key (RANDOM_PASSWORDS)
2013-01-18 08:05:52::DEBUG::engine-setup::551::root:: setting default value=
(00:1A:4A:EF:83:00-00:1A:4A:EF:83:FF) for key (MAC_RANGE)
2013-01-18 08:05:56::INFO::engine_validators::307::root:: Validating localh=
ost as a FQDN
2013-01-18 08:05:56::INFO::engine_validators::216::root:: validating localh=
ost as a valid domain string
2013-01-18 08:05:56::DEBUG::common_utils::967::root:: asking user: User inp=
ut failed validation, do you still wish to use it? (yes|no):
2013-01-18 08:05:57::DEBUG::common_utils::971::root:: user answered: yes
2013-01-18 08:05:59::DEBUG::engine_validators::161::root:: Validating passw=
ord
2013-01-18 08:05:59::WARNING::engine_validators::175::root:: Password faile=
d check
2013-01-18 08:05:59::WARNING::engine_validators::176::root:: Traceback (mos=
t recent call last):
File "/usr/local/share/ovirt-engine/scripts/engine_validators.py", line 1=
73, in validatePassword
cracklib.FascistCheck(param)
ValueError: it is too simplistic/systematic
2013-01-18 08:06:01::DEBUG::engine-setup::630::root:: Param confirmation pa=
ssed, value for both questions is identical
2013-01-18 08:06:05::INFO::engine_validators::388::root:: validating organi=
zation name
2013-01-18 08:06:07::INFO::engine_validators::182::root:: Validating NFS as=
part of ['NFS', 'FC', 'ISCSI', 'POSIXFS']
2013-01-18 08:06:09::INFO::engine_validators::182::root:: Validating local =
as part of ['remote', 'local']
2013-01-18 08:06:09::DEBUG::engine-setup::1539::root:: going over group REM=
OTE_DB
2013-01-18 08:06:09::INFO::engine-setup::1548::root:: Comparing pre-conditi=
ons; condition: 'False', and match: 'True'
2013-01-18 08:06:09::DEBUG::engine-setup::1577::root:: no post condition ch=
eck for group REMOTE_DB
2013-01-18 08:06:09::DEBUG::engine-setup::1539::root:: going over group LOC=
AL_DB
2013-01-18 08:06:09::INFO::engine-setup::1548::root:: Comparing pre-conditi=
ons; condition: 'False', and match: 'False'
2013-01-18 08:06:11::DEBUG::engine_validators::161::root:: Validating passw=
ord
2013-01-18 08:06:11::WARNING::engine_validators::175::root:: Password faile=
d check
2013-01-18 08:06:11::WARNING::engine_validators::176::root:: Traceback (mos=
t recent call last):
File "/usr/local/share/ovirt-engine/scripts/engine_validators.py", line 1=
73, in validatePassword
cracklib.FascistCheck(param)
ValueError: it is too simplistic/systematic
2013-01-18 08:06:13::DEBUG::engine-setup::630::root:: Param confirmation pa=
ssed, value for both questions is identical
2013-01-18 08:06:13::DEBUG::engine-setup::1539::root:: going over group NFS
2013-01-18 08:06:14::INFO::engine_validators::182::root:: Validating yes as=
part of ['yes', 'no']
2013-01-18 08:06:14::INFO::engine-setup::1548::root:: Comparing pre-conditi=
ons; condition: 'yes', and match: 'yes'
2013-01-18 08:06:17::INFO::engine_validators::26::root:: validating /var/li=
b/exports/iso as a valid mount point
2013-01-18 08:06:17::DEBUG::engine_validators::552::root:: attempting to wr=
ite temp file to /var/lib
2013-01-18 08:06:17::DEBUG::common_utils::636::root:: Checking available sp=
ace on /var/lib
2013-01-18 08:06:17::DEBUG::common_utils::641::root:: Available space on /v=
ar/lib is 45004
2013-01-18 08:06:17::DEBUG::engine-setup::551::root:: setting default value=
(ISO_DOMAIN) for key (ISO_DOMAIN_NAME)
2013-01-18 08:06:17::DEBUG::engine-setup::1539::root:: going over group IPT=
ABLES
2013-01-18 08:06:17::INFO::engine-setup::1548::root:: Comparing pre-conditi=
ons; condition: 'True', and match: 'True'
2013-01-18 08:06:19::INFO::engine_validators::182::root:: Validating None a=
s part of ['None']
2013-01-18 08:06:19::INFO::engine-setup::1618::root:: *** User input summar=
y ***
2013-01-18 08:06:19::INFO::engine-setup::1631::root:: override-httpd-config=
: yes
2013-01-18 08:06:19::INFO::engine-setup::1631::root:: http-port: 80
2013-01-18 08:06:19::INFO::engine-setup::1631::root:: https-port: 443
2013-01-18 08:06:19::INFO::engine-setup::1631::root:: host-fqdn: localhost
2013-01-18 08:06:19::INFO::engine-setup::1627::root:: auth-pass: ********
2013-01-18 08:06:19::INFO::engine-setup::1631::root:: org-name: sh.intel.co=
m
2013-01-18 08:06:19::INFO::engine-setup::1631::root:: default-dc-type: NFS
2013-01-18 08:06:19::INFO::engine-setup::1631::root:: db-remote-install: lo=
cal
2013-01-18 08:06:19::INFO::engine-setup::1627::root:: db-local-pass: ******=
**
2013-01-18 08:06:19::INFO::engine-setup::1631::root:: nfs-mp: /var/lib/expo=
rts/iso
2013-01-18 08:06:19::INFO::engine-setup::1631::root:: config-nfs: yes
2013-01-18 08:06:19::INFO::engine-setup::1631::root:: override-firewall: No=
ne
2013-01-18 08:06:19::INFO::engine-setup::1633::root:: *** User input summar=
y ***
2013-01-18 08:06:19::DEBUG::common_utils::967::root:: asking user: Proceed =
with the configuration listed above? (yes|no):
2013-01-18 08:06:20::DEBUG::common_utils::971::root:: user answered: yes
2013-01-18 08:06:20::DEBUG::engine-setup::1652::root:: user chose to accept=
user parameters
2013-01-18 08:06:20::DEBUG::engine-setup::2044::root:: {'ORG_NAME': 'sh.int=
el.com', 'HOST_FQDN': 'localhost', 'OVERRIDE_FIREWALL': 'None', 'HTTP_PORT'=
: '80', 'HTTPS_PORT': '443', 'DC_TYPE': 'NFS', 'DC_TYPE_ENUM': <common_util=
s.Enum object at 0x19b9bd0>, 'AUTH_PASS': '********', 'DB_LOCAL_PASS': '***=
*****', 'RANDOM_PASSWORDS': 'no', 'ISO_DOMAIN_NAME': 'ISO_DOMAIN', 'AUTH_PA=
SS_CONFIRMED': '********', 'OVERRIDE_HTTPD_CONFIG': 'yes', 'MAC_RANGE': '00=
:1A:4A:EF:83:00-00:1A:4A:EF:83:FF', 'DB_LOCAL_PASS_CONFIRMED': '********', =
'CONFIG_NFS': 'yes', 'DB_REMOTE_INSTALL': 'local', 'NFS_MP': '/var/lib/expo=
rts/iso'}
2013-01-18 08:06:20::DEBUG::engine-setup::2047::root:: Entered Configuratio=
n stage
2013-01-18 08:06:20::DEBUG::setup_sequences::59::root:: running setMaxShare=
dMemory
2013-01-18 08:06:20::DEBUG::common_utils::430::root:: Executing command -->=
'/sbin/sysctl -b kernel.shmmax'
2013-01-18 08:06:20::DEBUG::common_utils::468::root:: output =3D 35554432
2013-01-18 08:06:20::DEBUG::common_utils::469::root:: stderr =3D
2013-01-18 08:06:20::DEBUG::common_utils::470::root:: retcode =3D 0
2013-01-18 08:06:20::DEBUG::engine-setup::1721::root:: current shared memor=
y max in kernel is 35554432, there is no need to update the kernel paramete=
rs
2013-01-18 08:06:20::DEBUG::setup_sequences::59::root:: running _findJavaHo=
me
2013-01-18 08:06:20::DEBUG::common_utils::430::root:: Executing command -->=
'/usr/lib/jvm/java-1.7.0-openjdk.x86_64/bin/java -version'
2013-01-18 08:06:20::DEBUG::common_utils::468::root:: output =3D
2013-01-18 08:06:20::DEBUG::common_utils::469::root:: stderr =3D java versi=
on "1.7.0_b147-icedtea"
OpenJDK Runtime Environment (fedora-2.1.fc17.6-x86_64)
OpenJDK 64-Bit Server VM (build 22.0-b10, mixed mode)
2013-01-18 08:06:20::DEBUG::common_utils::470::root:: retcode =3D 0
2013-01-18 08:06:20::DEBUG::common_utils::430::root:: Executing command -->=
'/usr/lib/jvm/jre-1.7.0-openjdk.x86_64/bin/java -version'
2013-01-18 08:06:20::DEBUG::common_utils::468::root:: output =3D
2013-01-18 08:06:20::DEBUG::common_utils::469::root:: stderr =3D java versi=
on "1.7.0_b147-icedtea"
OpenJDK Runtime Environment (fedora-2.1.fc17.6-x86_64)
OpenJDK 64-Bit Server VM (build 22.0-b10, mixed mode)
2013-01-18 08:06:20::DEBUG::common_utils::470::root:: retcode =3D 0
2013-01-18 08:06:20::DEBUG::common_utils::1395::root:: JVM path "/usr/lib/j=
vm/jre-1.7.0-openjdk.x86_64" doesn't contain the Java compiler.
2013-01-18 08:06:20::DEBUG::setup_sequences::59::root:: running _createCA
2013-01-18 08:06:20::WARNING::engine-setup::867::root:: Keystore already ex=
ists, skipped certificates creation phase
2013-01-18 08:06:20::DEBUG::setup_sequences::59::root:: running _editSyscon=
fig
2013-01-18 08:06:20::DEBUG::common_utils::777::root:: found existing pgpass=
file /etc/ovirt-engine/.pgpass, fetching DB user value
2013-01-18 08:06:20::DEBUG::common_utils::1121::root:: Loading text file ha=
ndler
2013-01-18 08:06:20::DEBUG::common_utils::1153::root:: Engine has been conf=
igured
2013-01-18 08:06:20::DEBUG::setup_sequences::59::root:: running _updatePgPa=
ssFile
2013-01-18 08:06:20::DEBUG::engine-setup::1289::root:: found existing pgpas=
s file, backing current to /etc/ovirt-engine/.pgpass.2013_01_18_08_06_20
2013-01-18 08:06:20::INFO::engine-setup::1313::root:: Using default db cred=
entials
2013-01-18 08:06:20::DEBUG::engine-setup::1890::root:: Checking if db is al=
ready installed..
2013-01-18 08:06:20::DEBUG::engine-setup::1891::root:: Checking the presenc=
e of .pgpass file
2013-01-18 08:06:20::DEBUG::common_utils::477::root:: running sql query 'se=
lect 1' on db server: 'localhost'.
2013-01-18 08:06:20::DEBUG::common_utils::430::root:: Executing command -->=
'/usr/bin/psql -h localhost -p 5432 -U postgres -d engine -c select 1'
2013-01-18 08:06:20::DEBUG::common_utils::468::root:: output =3D ?column?
----------
1
(1 row)
2013-01-18 08:06:20::DEBUG::common_utils::469::root:: stderr =3D
2013-01-18 08:06:20::DEBUG::common_utils::470::root:: retcode =3D 0
2013-01-18 08:06:20::DEBUG::setup_sequences::59::root:: running _encryptDBP=
ass
2013-01-18 08:06:20::DEBUG::setup_sequences::59::root:: running _configEncr=
yptedPass
2013-01-18 08:06:20::DEBUG::common_utils::1183::root:: Encrypting database =
password.
2013-01-18 08:06:20::DEBUG::common_utils::777::root:: found existing pgpass=
file /etc/ovirt-engine/.pgpass, fetching DB user value
2013-01-18 08:06:20::DEBUG::setup_sequences::59::root:: running stopRhevmDb=
RelatedServices
2013-01-18 08:06:20::DEBUG::common_utils::1237::root:: Service was not stop=
ped. there for we're not starting it
2013-01-18 08:06:20::DEBUG::common_utils::1237::root:: Service was not stop=
ped. there for we're not starting it
2013-01-18 08:06:20::DEBUG::setup_sequences::59::root:: running _upgradeDB
2013-01-18 08:06:20::DEBUG::engine-setup::1082::root:: backing up engine db=
to file /var/lib/ovirt-engine/backups/tmpmGCzCX.sql
2013-01-18 08:06:20::DEBUG::common_utils::823::root:: engine DB Backup star=
ted
2013-01-18 08:06:20::DEBUG::common_utils::430::root:: Executing command -->=
'/usr/bin/pg_dump -C -E UTF8 --disable-dollar-quoting --disable-triggers -=
-format=3Dp -f /var/lib/ovirt-engine/backups/tmpmGCzCX.sql -U engine -h loc=
alhost -p 5432 engine'
2013-01-18 08:06:20::DEBUG::common_utils::468::root:: output =3D
2013-01-18 08:06:20::DEBUG::common_utils::469::root:: stderr =3D pg_dump: S=
QL command failed
pg_dump: Error message from server: ERROR: permission denied for relation =
tags_vm_pool_map
pg_dump: The command was: LOCK TABLE public.tags_vm_pool_map IN ACCESS SHAR=
E MODE
2013-01-18 08:06:20::DEBUG::common_utils::470::root:: retcode =3D 1
2013-01-18 08:06:20::DEBUG::setup_sequences::62::root:: Traceback (most rec=
ent call last):
File "/usr/local/share/ovirt-engine/scripts/setup_sequences.py", line 60,=
in run
function()
File "/usr/local/bin/engine-setup", line 1085, in _upgradeDB
utils.backupDB(basedefs.DB_NAME, getDbUser(), dbBackupFile, getDbHostNa=
me(), getDbPort())
File "/usr/local/share/ovirt-engine/scripts/common_utils.py", line 837, i=
n backupDB
output, rc =3D execCmd(cmdList=3Dcmd, failOnError=3DTrue, msg=3Doutput_=
messages.ERR_DB_BACKUP, envDict=3DgetPgPassEnv())
File "/usr/local/share/ovirt-engine/scripts/common_utils.py", line 473, i=
n execCmd
raise Exception(msg)
Exception: Database backup failed
2013-01-18 08:06:20::DEBUG::engine-setup::1882::root:: *** The following pa=
rams were used as user input:
2013-01-18 08:06:20::DEBUG::engine-setup::1887::root:: override-httpd-confi=
g: yes
2013-01-18 08:06:20::DEBUG::engine-setup::1887::root:: http-port: 80
2013-01-18 08:06:20::DEBUG::engine-setup::1887::root:: https-port: 443
2013-01-18 08:06:20::DEBUG::engine-setup::1887::root:: random-passwords: no
2013-01-18 08:06:20::DEBUG::engine-setup::1887::root:: mac-range: 00:1A:4A:=
EF:83:00-00:1A:4A:EF:83:FF
2013-01-18 08:06:20::DEBUG::engine-setup::1887::root:: host-fqdn: localhost
2013-01-18 08:06:20::DEBUG::engine-setup::1887::root:: auth-pass: ********
2013-01-18 08:06:20::DEBUG::engine-setup::1887::root:: org-name: sh.intel.c=
om
2013-01-18 08:06:20::DEBUG::engine-setup::1887::root:: default-dc-type: NFS
2013-01-18 08:06:20::DEBUG::engine-setup::1887::root:: db-remote-install: l=
ocal
2013-01-18 08:06:20::DEBUG::engine-setup::1887::root:: db-host: localhost
2013-01-18 08:06:20::DEBUG::engine-setup::1887::root:: db-local-pass: *****=
***
2013-01-18 08:06:20::DEBUG::engine-setup::1887::root:: nfs-mp: /var/lib/exp=
orts/iso
2013-01-18 08:06:20::DEBUG::engine-setup::1887::root:: iso-domain-name: ISO=
_DOMAIN
2013-01-18 08:06:20::DEBUG::engine-setup::1887::root:: config-nfs: yes
2013-01-18 08:06:20::DEBUG::engine-setup::1887::root:: override-firewall: N=
one
2013-01-18 08:06:20::ERROR::engine-setup::2303::root:: Traceback (most rece=
nt call last):
File "/usr/local/bin/engine-setup", line 2297, in <module>
main(confFile)
File "/usr/local/bin/engine-setup", line 2080, in main
runSequences()
File "/usr/local/bin/engine-setup", line 2002, in runSequences
controller.runAllSequences()
File "/usr/local/share/ovirt-engine/scripts/setup_controller.py", line 54=
, in runAllSequences
sequence.run()
File "/usr/local/share/ovirt-engine/scripts/setup_sequences.py", line 154=
, in run
step.run()
File "/usr/local/share/ovirt-engine/scripts/setup_sequences.py", line 60,=
in run
function()
File "/usr/local/bin/engine-setup", line 1085, in _upgradeDB
utils.backupDB(basedefs.DB_NAME, getDbUser(), dbBackupFile, getDbHostNa=
me(), getDbPort())
File "/usr/local/share/ovirt-engine/scripts/common_utils.py", line 837, i=
n backupDB
output, rc =3D execCmd(cmdList=3Dcmd, failOnError=3DTrue, msg=3Doutput_=
messages.ERR_DB_BACKUP, envDict=3DgetPgPassEnv())
File "/usr/local/share/ovirt-engine/scripts/common_utils.py", line 473, i=
n execCmd
raise Exception(msg)
Exception: Database backup failed
Best Regards,
Dave Chen
--_000_C5A0092C63E939488005F15F736A81121147EESHSMSX101ccrcorpi_
Content-Type: text/html; charset="us-ascii"
Content-Transfer-Encoding: quoted-printable
<html xmlns:v=3D"urn:schemas-microsoft-com:vml" xmlns:o=3D"urn:schemas-micr=
osoft-com:office:office" xmlns:w=3D"urn:schemas-microsoft-com:office:word" =
xmlns:m=3D"http://schemas.microsoft.com/office/2004/12/omml" xmlns=3D"http:=
//www.w3.org/TR/REC-html40">
<head>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Dus-ascii"=
>
<meta name=3D"Generator" content=3D"Microsoft Word 14 (filtered medium)">
<style><!--
/* Font Definitions */
@font-face
{font-family:\5B8B\4F53;
panose-1:2 1 6 0 3 1 1 1 1 1;}
@font-face
{font-family:\5B8B\4F53;
panose-1:2 1 6 0 3 1 1 1 1 1;}
@font-face
{font-family:Calibri;
panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
{font-family:"\@\5B8B\4F53";
panose-1:2 1 6 0 3 1 1 1 1 1;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{margin:0cm;
margin-bottom:.0001pt;
text-align:justify;
text-justify:inter-ideograph;
font-size:10.5pt;
font-family:"Calibri","sans-serif";}
a:link, span.MsoHyperlink
{mso-style-priority:99;
color:blue;
text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
{mso-style-priority:99;
color:purple;
text-decoration:underline;}
span.EmailStyle17
{mso-style-type:personal-compose;
font-family:"Calibri","sans-serif";
color:windowtext;}
.MsoChpDefault
{mso-style-type:export-only;
font-family:"Calibri","sans-serif";}
/* Page Definitions */
@page WordSection1
{size:612.0pt 792.0pt;
margin:72.0pt 90.0pt 72.0pt 90.0pt;}
div.WordSection1
{page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext=3D"edit" spidmax=3D"1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext=3D"edit">
<o:idmap v:ext=3D"edit" data=3D"1" />
</o:shapelayout></xml><![endif]-->
</head>
<body lang=3D"ZH-CN" link=3D"blue" vlink=3D"purple" style=3D"text-justify-t=
rim:punctuation">
<div class=3D"WordSection1">
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">Hi ,=
<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">&nbs=
p; There is a problem in engine-setup-- “Upgrading Database Sche=
ma...error”. The env is setup with ovirt-engine 3.2.0 from
<a href=3D"http://www.ovirt.org/Building_oVirt_engine">http://www.ovirt.org=
/Building_oVirt_engine</a>,<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">The =
below are printing out info and log. Could you help me to check it? T=
hanks in advance.
<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt"><o:p=
> </o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt"><o:p=
> </o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">***<=
o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">Inst=
alling:<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">Conf=
iguring oVirt-engine... &nbs=
p; &=
nbsp; [ DONE ]<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">Conf=
iguring JVM... &=
nbsp; &nbs=
p; =
[ DONE ]<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">Crea=
ting CA...  =
; &n=
bsp;  =
; [ DONE ]<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">Upda=
ting ovirt-engine service...  =
; &n=
bsp; [ DONE ]<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">Sett=
ing Database Configuration... &nbs=
p; =
[ DONE ]<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">Sett=
ing Database Security... &nb=
sp; =
[ DONE ]<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">Upgr=
ading Database Schema... &nb=
sp; =
[ ERROR ]<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt">Data=
base backup failed<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"font-size:14.0pt"><o:p=
> </o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">#########=
###### log ###################
</span><span lang=3D"EN-US" style=3D"color:black"><o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"><o:p>&nbs=
p;</o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:05:50::DEBUG::common_utils::469::root:: stderr =3D<o:p></o:p></span></=
p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:05:50::DEBUG::common_utils::470::root:: retcode =3D 0<o:p></o:p></span=
></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:05:50::DEBUG::engine-setup::2125::root:: Found a match, amount of memo=
ry: 7945<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:05:50::DEBUG::engine-setup::2015::root:: Entered main(configFile=3D'No=
ne')<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:05:50::DEBUG::engine-setup::1809::root:: stopping ovirt-engine service=
<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:05:50::DEBUG::common_utils::967::root:: asking user: Would you like to=
stop the ovirt-engine service? (yes|no):<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:05:51::DEBUG::common_utils::971::root:: user answered: yes<o:p></o:p><=
/span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:05:51::DEBUG::common_utils::1213::root:: stopping ovirt-engine<o:p></o=
:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:05:51::DEBUG::common_utils::1250::root:: executing action ovirt-engine=
on service stop<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:05:51::DEBUG::common_utils::430::root:: Executing command --> '/sbi=
n/service ovirt-engine stop'<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:05:51::DEBUG::common_utils::468::root:: output =3D<o:p></o:p></span></=
p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:05:51::DEBUG::common_utils::469::root:: stderr =3D<o:p></o:p></span></=
p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:05:51::DEBUG::common_utils::470::root:: retcode =3D 0<o:p></o:p></span=
></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:05:51::DEBUG::engine-setup::1539::root:: going over group PORTS<o:p></=
o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:05:51::DEBUG::common_utils::1291::root:: retrieving version for ipa-se=
rver rpm<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:05:51::DEBUG::common_utils::1312::root:: getRpmVersion failed<o:p></o:=
p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">Traceback=
(most recent call last):<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"> Fi=
le "/usr/local/share/ovirt-engine/scripts/common_utils.py", line =
1309, in installed<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"> &nb=
sp; getRpmVersion(rpmName=3Drpm)<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"> Fi=
le "/usr/local/share/ovirt-engine/scripts/common_utils.py", line =
1303, in getRpmVersion<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"> &nb=
sp; raise Exception(output_messages.ERR_READ_RPM_VER % rpmName)<o:p><=
/o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">Exception=
: Error reading version number for package ipa-server<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:05:51::DEBUG::common_utils::1291::root:: retrieving version for freeip=
a-server rpm<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:05:51::DEBUG::common_utils::1312::root:: getRpmVersion failed<o:p></o:=
p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">Traceback=
(most recent call last):<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"> Fi=
le "/usr/local/share/ovirt-engine/scripts/common_utils.py", line =
1309, in installed<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"> &nb=
sp; getRpmVersion(rpmName=3Drpm)<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"> Fi=
le "/usr/local/share/ovirt-engine/scripts/common_utils.py", line =
1303, in getRpmVersion<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"> &nb=
sp; raise Exception(output_messages.ERR_READ_RPM_VER % rpmName)<o:p><=
/o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">Exception=
: Error reading version number for package freeipa-server<o:p></o:p></span>=
</p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:05:51::INFO::engine-setup::1548::root:: Comparing pre-conditions; cond=
ition: 'True', and match: 'True'<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:05:52::INFO::engine_validators::199::root:: validateOverrideHttpdConfA=
ndChangePortsAccordingly yes as part of ['yes', 'no']<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:05:52::INFO::engine_validators::182::root:: Validating yes as part of =
['yes', 'no']<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:05:52::DEBUG::engine_validators::207::root:: stopping httpd service<o:=
p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:05:52::DEBUG::common_utils::1213::root:: stopping httpd<o:p></o:p></sp=
an></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:05:52::DEBUG::common_utils::1250::root:: executing action httpd on ser=
vice stop<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:05:52::DEBUG::common_utils::430::root:: Executing command --> '/sbi=
n/service httpd stop'<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:05:52::DEBUG::common_utils::468::root:: output =3D<o:p></o:p></span></=
p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:05:52::DEBUG::common_utils::469::root:: stderr =3D<o:p></o:p></span></=
p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:05:52::DEBUG::common_utils::470::root:: retcode =3D 0<o:p></o:p></span=
></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:05:52::DEBUG::engine-setup::1539::root:: going over group ALL_PARAMS<o=
:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:05:52::INFO::engine-setup::1548::root:: Comparing pre-conditions; cond=
ition: 'True', and match: 'True'<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:05:52::DEBUG::engine-setup::551::root:: setting default value (no) for=
key (RANDOM_PASSWORDS)<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:05:52::DEBUG::engine-setup::551::root:: setting default value (00:1A:4=
A:EF:83:00-00:1A:4A:EF:83:FF) for key (MAC_RANGE)<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:05:56::INFO::engine_validators::307::root:: Validating localhost as a =
FQDN<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:05:56::INFO::engine_validators::216::root:: validating localhost as a =
valid domain string<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:05:56::DEBUG::common_utils::967::root:: asking user: User input failed=
validation, do you still wish to use it? (yes|no):<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:05:57::DEBUG::common_utils::971::root:: user answered: yes<o:p></o:p><=
/span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:05:59::DEBUG::engine_validators::161::root:: Validating password<o:p><=
/o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:05:59::WARNING::engine_validators::175::root:: Password failed check<o=
:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:05:59::WARNING::engine_validators::176::root:: Traceback (most recent =
call last):<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"> Fi=
le "/usr/local/share/ovirt-engine/scripts/engine_validators.py", =
line 173, in validatePassword<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"> &nb=
sp; cracklib.FascistCheck(param)<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">ValueErro=
r: it is too simplistic/systematic<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"><o:p>&nbs=
p;</o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:01::DEBUG::engine-setup::630::root:: Param confirmation passed, val=
ue for both questions is identical<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:05::INFO::engine_validators::388::root:: validating organization na=
me<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:07::INFO::engine_validators::182::root:: Validating NFS as part of =
['NFS', 'FC', 'ISCSI', 'POSIXFS']<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:09::INFO::engine_validators::182::root:: Validating local as part o=
f ['remote', 'local']<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:09::DEBUG::engine-setup::1539::root:: going over group REMOTE_DB<o:=
p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:09::INFO::engine-setup::1548::root:: Comparing pre-conditions; cond=
ition: 'False', and match: 'True'<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:09::DEBUG::engine-setup::1577::root:: no post condition check for g=
roup REMOTE_DB<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:09::DEBUG::engine-setup::1539::root:: going over group LOCAL_DB<o:p=
></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:09::INFO::engine-setup::1548::root:: Comparing pre-conditions; cond=
ition: 'False', and match: 'False'<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:11::DEBUG::engine_validators::161::root:: Validating password<o:p><=
/o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:11::WARNING::engine_validators::175::root:: Password failed check<o=
:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:11::WARNING::engine_validators::176::root:: Traceback (most recent =
call last):<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"> Fi=
le "/usr/local/share/ovirt-engine/scripts/engine_validators.py", =
line 173, in validatePassword<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"> &nb=
sp; cracklib.FascistCheck(param)<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">ValueErro=
r: it is too simplistic/systematic<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"><o:p>&nbs=
p;</o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:13::DEBUG::engine-setup::630::root:: Param confirmation passed, val=
ue for both questions is identical<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:13::DEBUG::engine-setup::1539::root:: going over group NFS<o:p></o:=
p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:14::INFO::engine_validators::182::root:: Validating yes as part of =
['yes', 'no']<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:14::INFO::engine-setup::1548::root:: Comparing pre-conditions; cond=
ition: 'yes', and match: 'yes'<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:17::INFO::engine_validators::26::root:: validating /var/lib/exports=
/iso as a valid mount point<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:17::DEBUG::engine_validators::552::root:: attempting to write temp =
file to /var/lib<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:17::DEBUG::common_utils::636::root:: Checking available space on /v=
ar/lib<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:17::DEBUG::common_utils::641::root:: Available space on /var/lib is=
45004<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:17::DEBUG::engine-setup::551::root:: setting default value (ISO_DOM=
AIN) for key (ISO_DOMAIN_NAME)<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:17::DEBUG::engine-setup::1539::root:: going over group IPTABLES<o:p=
></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:17::INFO::engine-setup::1548::root:: Comparing pre-conditions; cond=
ition: 'True', and match: 'True'<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:19::INFO::engine_validators::182::root:: Validating None as part of=
['None']<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:19::INFO::engine-setup::1618::root:: *** User input summary ***<o:p=
></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:19::INFO::engine-setup::1631::root:: override-httpd-config: yes<o:p=
></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:19::INFO::engine-setup::1631::root:: http-port: 80<o:p></o:p></span=
></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:19::INFO::engine-setup::1631::root:: https-port: 443<o:p></o:p></sp=
an></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:19::INFO::engine-setup::1631::root:: host-fqdn: localhost<o:p></o:p=
></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:19::INFO::engine-setup::1627::root:: auth-pass: ********<o:p></o:p>=
</span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:19::INFO::engine-setup::1631::root:: org-name: sh.intel.com<o:p></o=
:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:19::INFO::engine-setup::1631::root:: default-dc-type: NFS<o:p></o:p=
></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:19::INFO::engine-setup::1631::root:: db-remote-install: local<o:p><=
/o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:19::INFO::engine-setup::1627::root:: db-local-pass: ********<o:p></=
o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:19::INFO::engine-setup::1631::root:: nfs-mp: /var/lib/exports/iso<o=
:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:19::INFO::engine-setup::1631::root:: config-nfs: yes<o:p></o:p></sp=
an></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:19::INFO::engine-setup::1631::root:: override-firewall: None<o:p></=
o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:19::INFO::engine-setup::1633::root:: *** User input summary ***<o:p=
></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:19::DEBUG::common_utils::967::root:: asking user: Proceed with the =
configuration listed above? (yes|no):<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::common_utils::971::root:: user answered: yes<o:p></o:p><=
/span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::engine-setup::1652::root:: user chose to accept user par=
ameters<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::engine-setup::2044::root:: {'ORG_NAME': 'sh.intel.com', =
'HOST_FQDN': 'localhost', 'OVERRIDE_FIREWALL': 'None', 'HTTP_PORT': '80', '=
HTTPS_PORT': '443', 'DC_TYPE': 'NFS',
'DC_TYPE_ENUM': <common_utils.Enum object at 0x19b9bd0>, 'AUTH_PASS'=
: '********', 'DB_LOCAL_PASS': '********', 'RANDOM_PASSWORDS': 'no', 'ISO_D=
OMAIN_NAME': 'ISO_DOMAIN', 'AUTH_PASS_CONFIRMED': '********', 'OVERRIDE_HTT=
PD_CONFIG': 'yes', 'MAC_RANGE': '00:1A:4A:EF:83:00-00:1A:4A:EF:83:FF',
'DB_LOCAL_PASS_CONFIRMED': '********', 'CONFIG_NFS': 'yes', 'DB_REMOTE_INS=
TALL': 'local', 'NFS_MP': '/var/lib/exports/iso'}<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::engine-setup::2047::root:: Entered Configuration stage<o=
:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::setup_sequences::59::root:: running setMaxSharedMemory<o=
:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::common_utils::430::root:: Executing command --> '/sbi=
n/sysctl -b kernel.shmmax'<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::common_utils::468::root:: output =3D 35554432<o:p></o:p>=
</span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::common_utils::469::root:: stderr =3D<o:p></o:p></span></=
p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::common_utils::470::root:: retcode =3D 0<o:p></o:p></span=
></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::engine-setup::1721::root:: current shared memory max in =
kernel is 35554432, there is no need to update the kernel parameters<o:p></=
o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::setup_sequences::59::root:: running _findJavaHome<o:p></=
o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::common_utils::430::root:: Executing command --> '/usr=
/lib/jvm/java-1.7.0-openjdk.x86_64/bin/java -version'<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::common_utils::468::root:: output =3D<o:p></o:p></span></=
p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::common_utils::469::root:: stderr =3D java version "=
1.7.0_b147-icedtea"<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">OpenJDK R=
untime Environment (fedora-2.1.fc17.6-x86_64)<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">OpenJDK 6=
4-Bit Server VM (build 22.0-b10, mixed mode)<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"><o:p>&nbs=
p;</o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::common_utils::470::root:: retcode =3D 0<o:p></o:p></span=
></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::common_utils::430::root:: Executing command --> '/usr=
/lib/jvm/jre-1.7.0-openjdk.x86_64/bin/java -version'<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::common_utils::468::root:: output =3D<o:p></o:p></span></=
p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::common_utils::469::root:: stderr =3D java version "=
1.7.0_b147-icedtea"<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">OpenJDK R=
untime Environment (fedora-2.1.fc17.6-x86_64)<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">OpenJDK 6=
4-Bit Server VM (build 22.0-b10, mixed mode)<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"><o:p>&nbs=
p;</o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::common_utils::470::root:: retcode =3D 0<o:p></o:p></span=
></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::common_utils::1395::root:: JVM path "/usr/lib/jvm/j=
re-1.7.0-openjdk.x86_64" doesn't contain the Java compiler.<o:p></o:p>=
</span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::setup_sequences::59::root:: running _createCA<o:p></o:p>=
</span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::WARNING::engine-setup::867::root:: Keystore already exists, ski=
pped certificates creation phase<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::setup_sequences::59::root:: running _editSysconfig<o:p><=
/o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::common_utils::777::root:: found existing pgpass file /et=
c/ovirt-engine/.pgpass, fetching DB user value<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::common_utils::1121::root:: Loading text file handler<o:p=
></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::common_utils::1153::root:: Engine has been configured<o:=
p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::setup_sequences::59::root:: running _updatePgPassFile<o:=
p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::engine-setup::1289::root:: found existing pgpass file, b=
acking current to /etc/ovirt-engine/.pgpass.2013_01_18_08_06_20<o:p></o:p><=
/span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::INFO::engine-setup::1313::root:: Using default db credentials<o=
:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::engine-setup::1890::root:: Checking if db is already ins=
talled..<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::engine-setup::1891::root:: Checking the presence of .pgp=
ass file<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::common_utils::477::root:: running sql query 'select 1' o=
n db server: 'localhost'.<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::common_utils::430::root:: Executing command --> '/usr=
/bin/psql -h localhost -p 5432 -U postgres -d engine -c select 1'<o:p></o:p=
></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::common_utils::468::root:: output =3D ?column?<o:p>=
</o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">---------=
-<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"> &nb=
sp; 1<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">(1 row)<o=
:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"><o:p>&nbs=
p;</o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"><o:p>&nbs=
p;</o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::common_utils::469::root:: stderr =3D<o:p></o:p></span></=
p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::common_utils::470::root:: retcode =3D 0<o:p></o:p></span=
></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::setup_sequences::59::root:: running _encryptDBPass<o:p><=
/o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::setup_sequences::59::root:: running _configEncryptedPass=
<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::common_utils::1183::root:: Encrypting database password.=
<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::common_utils::777::root:: found existing pgpass file /et=
c/ovirt-engine/.pgpass, fetching DB user value<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::setup_sequences::59::root:: running stopRhevmDbRelatedSe=
rvices<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::common_utils::1237::root:: Service was not stopped. ther=
e for we're not starting it<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::common_utils::1237::root:: Service was not stopped. ther=
e for we're not starting it<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::setup_sequences::59::root:: running _upgradeDB<o:p></o:p=
></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::engine-setup::1082::root:: backing up engine db to file =
/var/lib/ovirt-engine/backups/tmpmGCzCX.sql<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::common_utils::823::root:: engine DB Backup started<o:p><=
/o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::common_utils::430::root:: Executing command --> '/usr=
/bin/pg_dump -C -E UTF8 --disable-dollar-quoting --disable-triggers --forma=
t=3Dp -f /var/lib/ovirt-engine/backups/tmpmGCzCX.sql
-U engine -h localhost -p 5432 engine'<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::common_utils::468::root:: output =3D<o:p></o:p></span></=
p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::common_utils::469::root:: stderr =3D pg_dump: SQL comman=
d failed<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">pg_dump: =
Error message from server: ERROR: permission denied for relation tags=
_vm_pool_map<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">pg_dump: =
The command was: LOCK TABLE public.tags_vm_pool_map IN ACCESS SHARE MODE<o:=
p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"><o:p>&nbs=
p;</o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::common_utils::470::root:: retcode =3D 1<o:p></o:p></span=
></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::setup_sequences::62::root:: Traceback (most recent call =
last):<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"> Fi=
le "/usr/local/share/ovirt-engine/scripts/setup_sequences.py", li=
ne 60, in run<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"> &nb=
sp; function()<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"> Fi=
le "/usr/local/bin/engine-setup", line 1085, in _upgradeDB<o:p></=
o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"> &nb=
sp; utils.backupDB(basedefs.DB_NAME, getDbUser(), dbBackupFile, getDb=
HostName(), getDbPort())<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"> Fi=
le "/usr/local/share/ovirt-engine/scripts/common_utils.py", line =
837, in backupDB<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"> &nb=
sp; output, rc =3D execCmd(cmdList=3Dcmd, failOnError=3DTrue, msg=3Do=
utput_messages.ERR_DB_BACKUP, envDict=3DgetPgPassEnv())<o:p></o:p></span></=
p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"> Fi=
le "/usr/local/share/ovirt-engine/scripts/common_utils.py", line =
473, in execCmd<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"> &nb=
sp; raise Exception(msg)<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">Exception=
: Database backup failed<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"><o:p>&nbs=
p;</o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::engine-setup::1882::root:: *** The following params were=
used as user input:<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::engine-setup::1887::root:: override-httpd-config: yes<o:=
p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::engine-setup::1887::root:: http-port: 80<o:p></o:p></spa=
n></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::engine-setup::1887::root:: https-port: 443<o:p></o:p></s=
pan></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::engine-setup::1887::root:: random-passwords: no<o:p></o:=
p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::engine-setup::1887::root:: mac-range: 00:1A:4A:EF:83:00-=
00:1A:4A:EF:83:FF<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::engine-setup::1887::root:: host-fqdn: localhost<o:p></o:=
p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::engine-setup::1887::root:: auth-pass: ********<o:p></o:p=
></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::engine-setup::1887::root:: org-name: sh.intel.com<o:p></=
o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::engine-setup::1887::root:: default-dc-type: NFS<o:p></o:=
p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::engine-setup::1887::root:: db-remote-install: local<o:p>=
</o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::engine-setup::1887::root:: db-host: localhost<o:p></o:p>=
</span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::engine-setup::1887::root:: db-local-pass: ********<o:p><=
/o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::engine-setup::1887::root:: nfs-mp: /var/lib/exports/iso<=
o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::engine-setup::1887::root:: iso-domain-name: ISO_DOMAIN<o=
:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::engine-setup::1887::root:: config-nfs: yes<o:p></o:p></s=
pan></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::DEBUG::engine-setup::1887::root:: override-firewall: None<o:p><=
/o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">2013-01-1=
8 08:06:20::ERROR::engine-setup::2303::root:: Traceback (most recent call l=
ast):<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"> Fi=
le "/usr/local/bin/engine-setup", line 2297, in <module><o:=
p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"> &nb=
sp; main(confFile)<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"> Fi=
le "/usr/local/bin/engine-setup", line 2080, in main<o:p></o:p></=
span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"> &nb=
sp; runSequences()<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"> Fi=
le "/usr/local/bin/engine-setup", line 2002, in runSequences<o:p>=
</o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"> &nb=
sp; controller.runAllSequences()<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"> Fi=
le "/usr/local/share/ovirt-engine/scripts/setup_controller.py", l=
ine 54, in runAllSequences<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"> &nb=
sp; sequence.run()<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"> Fi=
le "/usr/local/share/ovirt-engine/scripts/setup_sequences.py", li=
ne 154, in run<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"> &nb=
sp; step.run()<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"> Fi=
le "/usr/local/share/ovirt-engine/scripts/setup_sequences.py", li=
ne 60, in run<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"> &nb=
sp; function()<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"> Fi=
le "/usr/local/bin/engine-setup", line 1085, in _upgradeDB<o:p></=
o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"> &nb=
sp; utils.backupDB(basedefs.DB_NAME, getDbUser(), dbBackupFile, getDb=
HostName(), getDbPort())<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"> Fi=
le "/usr/local/share/ovirt-engine/scripts/common_utils.py", line =
837, in backupDB<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"> &nb=
sp; output, rc =3D execCmd(cmdList=3Dcmd, failOnError=3DTrue, msg=3Do=
utput_messages.ERR_DB_BACKUP, envDict=3DgetPgPassEnv())<o:p></o:p></span></=
p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"> Fi=
le "/usr/local/share/ovirt-engine/scripts/common_utils.py", line =
473, in execCmd<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black"> &nb=
sp; raise Exception(msg)<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US" style=3D"color:black">Exception=
: Database backup failed<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US"><o:p> </o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US"><o:p> </o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US">Best Regards,<o:p></o:p></span>=
</p>
<p class=3D"MsoNormal"><span lang=3D"EN-US">Dave Chen<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span lang=3D"EN-US"><o:p> </o:p></span></p>
</div>
</body>
</html>
--_000_C5A0092C63E939488005F15F736A81121147EESHSMSX101ccrcorpi_--
11 years, 10 months