[BlueOnyx:04535] Re: BX failure: No GUI changes can be made
Michael Stauber
mstauber at blueonyx.it
Mon May 17 11:56:15 -05 2010
Hi Chris,
> Having trouble with a customer system that is not saving any GUI
> changes. It just appears to hang. The issue was first noticed by the
> customer trying to add a new vsite and the GUI issued this error:
> "UNKNOWN ERROR DURING CREATE"
>
> Suggestions and assistance would be welcomed!
>
Create this shell script, make it executeable:
----------------------------------------------------------------------------------------------
#!/bin/bash
LAST=-1
MIN=-1
for X in `ls /usr/sausalito/codb/objects/ | sort -n`
do
MYNEXT=$(( $LAST + 1 ))
if [ $MYNEXT -eq $X ]
then
LAST=$X
else
if [ $LAST -ge 1 ]
then
if [ $MIN -eq $LAST ]
then
echo -n $LAST,
else
echo -n $MIN-$LAST,
fi
fi
LAST=$X
MIN=$X
fi
done
if [ $MYNEXT -lt $X ]
then
echo -n $LAST
else
echo -n $MIN-$LAST
fi
echo ""
echo "/usr/sausalito/codb/codb.oids reports:"
cat /usr/sausalito/codb/codb.oids
echo ""
----------------------------------------------------------------------------------------------
Then stop CCEd:
/etc/init.d/cced.init stop
Afterwards run that script. It will go through the object directories of CODB
and will print out a list of OIDs that CODB uses. Below that it will print the
contends of /usr/sausalito/codb/codb.oids, which contains the object IDs that
CCE *thinks* are used. Ideally both lists should be identical.
If they are not, then copy the reported OIDs into the file
/usr/sausalito/codb/codb.oids and restart CCEd.
That should solve the issue.
--
With best regards
Michael Stauber
More information about the Blueonyx
mailing list