https://bugzilla.novell.com/show_bug.cgi?id=738050https://bugzilla.novell.com/show_bug.cgi?id=738050#c0
Summary: server:database/mongodb: Failure on db.dropDatabase()
using the RPM version
Classification: openSUSE
Product: openSUSE.org
Version: unspecified
Platform: x86-64
OS/Version: SLES 11
Status: NEW
Severity: Normal
Priority: P5 - None
Component: 3rd party software
AssignedTo: asn(a)cryptomilk.org
ReportedBy: patrick.meinusch(a)seitenbau.net
QAContact: opensuse-communityscreening(a)forge.provo.novell.com
Found By: ---
Blocker: ---
to reproduce:
1. install mongodb-2.0.1-5.2.x86_64.rpm from
http://download.opensuse.org/repositories/server:/database/SLE_11_SP1/x86_6…
2. start mongod: /etc/init.d/mongodb start
3. open a mongo shell to localhost:27017
4. use new database: use testdb
(optional) 5. insert document to a collection: db.coll.insert( { "key":"value"
} )
6. try to drop database: db.dropDatabase()
expected: database is dropped without any error
got: database is dropped but getting this error:
in shell:
{
"errmsg" : "exception: assertion db/pdfile.cpp:2158",
"code" : 0,
"ok" : 0
}
in log:
Wed Dec 21 13:31:23 [conn1] dropDatabase newdb
Wed Dec 21 13:31:23 [conn1] removeJournalFiles
Wed Dec 21 13:31:23 [conn1] Assertion failure i <= DiskLoc::MaxFiles
db/pdfile.cpp 2158
0x56ec5e 0x577d4f 0x811b9a 0x8121d8 0x8a0fdc 0x89d661 0x89df85 0x88df2a
0x89071b 0x7f54fa 0x973c3c 0x60c06a 0x7f1841eb45f0 0x7f184065684d
/usr/sbin/mongod(_ZN5mongo12sayDbContextEPKc+0x9e) [0x56ec5e]
/usr/sbin/mongod(_ZN5mongo8assertedEPKcS1_j+0xbf) [0x577d4f]
/usr/sbin/mongod(_ZN5mongo19_applyOpToDataFilesEPKcRNS_6FileOpEbRKSs+0x45a)
[0x811b9a]
/usr/sbin/mongod(_ZN5mongo16_deleteDataFilesEPKc+0xc8) [0x8121d8]
/usr/sbin/mongod(_ZN5mongo15CmdDropDatabase3runERKSsRNS_7BSONObjEiRSsRNS_14BSONObjBuilderEb+0xec)
[0x8a0fdc]
/usr/sbin/mongod(_ZN5mongo11execCommandEPNS_7CommandERNS_6ClientEiPKcRNS_7BSONObjERNS_14BSONObjBuilderEb+0x871)
[0x89d661]
/usr/sbin/mongod(_ZN5mongo12_runCommandsEPKcRNS_7BSONObjERNS_11_BufBuilderINS_16TrivialAllocatorEEERNS_14BSONObjBuilderEbi+0x565)
[0x89df85]
/usr/sbin/mongod(_ZN5mongo11runCommandsEPKcRNS_7BSONObjERNS_5CurOpERNS_11_BufBuilderINS_16TrivialAllocatorEEERNS_14BSONObjBuilderEbi+0x3a)
[0x88df2a]
/usr/sbin/mongod(_ZN5mongo8runQueryERNS_7MessageERNS_12QueryMessageERNS_5CurOpES1_+0x12eb)
[0x89071b]
/usr/sbin/mongod(_ZN5mongo16assembleResponseERNS_7MessageERNS_10DbResponseERKNS_11HostAndPortE+0x6fa)
[0x7f54fa]
/usr/sbin/mongod(_ZN5mongo16MyMessageHandler7processERNS_7MessageEPNS_21AbstractMessagingPortEPNS_9LastErrorE+0xdc)
[0x973c3c]
/usr/sbin/mongod(_ZN5mongo3pms9threadRunEPNS_13MessagingPortE+0x29a)
[0x60c06a]
/lib64/libpthread.so.0(+0x75f0) [0x7f1841eb45f0]
/lib64/libc.so.6(clone+0x6d) [0x7f184065684d]
Wed Dec 21 13:31:23 [conn1] command newdb.$cmd command: { dropDatabase: 1.0 }
ntoreturn:1 reslen:99 113ms
When using the binary package from mongodb.org this bug is not reproducible
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=731320https://bugzilla.novell.com/show_bug.cgi?id=731320#c0
Summary: server:database/mongodb: mongod does not respect
--noprealloc
Classification: openSUSE
Product: openSUSE.org
Version: unspecified
Platform: Other
OS/Version: Other
Status: NEW
Severity: Normal
Priority: P5 - None
Component: 3rd party software
AssignedTo: asn(a)cryptomilk.org
ReportedBy: jmatejek(a)suse.com
QAContact: opensuse-communityscreening(a)forge.provo.novell.com
Found By: ---
Blocker: ---
to reproduce:
1. install mongodb
2. edit /etc/mongodb.conf to say "noprealloc = true"
3. optionally, run mongod manually with --noprealloc option
expected result:
mongo starts without preallocating journals
actual result:
mongo does not care.
from mongodb.log:
note: noprealloc may hurt performance in many applications
Fri Nov 18 12:24:02 [initandlisten] MongoDB starting : pid=4902 port=27017
dbpath=/var/lib/mongodb 64-bit host=limetka.suse.cz
Fri Nov 18 12:24:02 [initandlisten] db version v2.0.1, pdfile version 4.5
Fri Nov 18 12:24:02 [initandlisten] git version: nogitversion
Fri Nov 18 12:24:02 [initandlisten] build info: Linux build05 2.6.37.6-0.7-xen
#1 SMP 2011-07-21 02:17:24 +0200 x86_64 BOOST_LIB_VERSION=1_44
Fri Nov 18 12:24:02 [initandlisten] options: { auth: "true", bind_ip:
"127.0.0.1", config: "/etc/mongodb.conf", dbpath: "/var/lib/mongodb", fork:
"true", logappend: "true", logpath: "/var/log/mongodb/mongodb.log",
nohttpinterface: "true", noprealloc: true, quiet: true }
Fri Nov 18 12:24:02 [initandlisten] journal dir=/var/lib/mongodb/journal
Fri Nov 18 12:24:02 [initandlisten] recover : no journal files present, no
recovery needed
Fri Nov 18 12:24:05 [initandlisten] preallocateIsFaster=true 25.86
Fri Nov 18 12:24:07 [initandlisten] preallocateIsFaster=true 25.88
Fri Nov 18 12:24:10 [initandlisten] preallocateIsFaster=true 24.26
Fri Nov 18 12:24:10 [initandlisten] preallocateIsFaster check took 8.42 secs
Fri Nov 18 12:24:10 [initandlisten] preallocating a journal file
/var/lib/mongodb/journal/prealloc.0
well yes, preallocate might as well be "IsFaster=true", but that still doesn't
justify spending extra three minutes at startup and eating 3GB for no good
reason whatsoever in a friggin development environment where performance does
not matter but 3GB of storage do
</frustratedRant>
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=663358https://bugzilla.novell.com/show_bug.cgi?id=663358#c0
Summary: [zypper] can not install src rpm available on the
local disk
Classification: openSUSE
Product: openSUSE 11.4
Version: Factory
Platform: Other
OS/Version: Other
Status: NEW
Severity: Normal
Priority: P5 - None
Component: libzypp
AssignedTo: zypp-maintainers(a)forge.provo.novell.com
ReportedBy: ma(a)novell.com
QAContact: qa(a)suse.de
Found By: ---
Blocker: ---
While
zypper in /tmp/my.rpm
works by creating a temp. repo containing my.rpm,
zypper si /tmp/my.src.rpm
does not work. Probably possible to use the same trick here as for ordinary
rpms.
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=804607https://bugzilla.novell.com/show_bug.cgi?id=804607#c0
Summary: wrong plymouth on multimonitor (and not visible
cryptohome passphrase)
Classification: openSUSE
Product: openSUSE Factory
Version: 12.3 Beta 1
Platform: All
OS/Version: Other
Status: NEW
Severity: Normal
Priority: P5 - None
Component: Other
AssignedTo: bnc-team-screening(a)forge.provo.novell.com
ReportedBy: noga.dany(a)gmail.com
QAContact: qa-bugs(a)suse.de
Found By: ---
Blocker: ---
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:18.0) Gecko/20100101
Firefox/18.0
When booting on two monitors, plymouth animation on second monitor is
displaced. And therefore is not visible request for passphrase for accessing
encrypted disk.
On openSUSE 12.2 is ok.
Primary monitor 1600 x 900, secondary monitor 1920 x 1080
(bug found in update in RC1, but I can't set it here in bug report options)
Reproducible: Always
Steps to Reproduce:
1. Start boot with connected second monitor
Actual Results:
Wrong plymouth animation on second monitor. Is displaced cca about 10% more
left and more down.
Expected Results:
Good position like in openSUSE 12.2
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=831921https://bugzilla.novell.com/show_bug.cgi?id=831921#c0
Summary: unison segfaults when I try to choose a local
directory
Classification: openSUSE
Product: openSUSE 12.3
Version: Final
Platform: x86-64
OS/Version: Other
Status: NEW
Severity: Normal
Priority: P5 - None
Component: Other
AssignedTo: bnc-team-screening(a)forge.provo.novell.com
ReportedBy: ncutler(a)suse.com
QAContact: qa-bugs(a)suse.de
Found By: IS&T
Blocker: ---
I have unison version 2.40.102-2.1.2 installed on openSUSE 12.3 (KDE, fully
updated). When I run it and try to add a profile via the "Profile Creation"
wizard a.k.a. Unison Profile Creation Assistant, it segfaults when I attempt to
choose a local directory. The directory chooser window (which I assume is not a
part of unison) flashes on the screen for a split-second.
/var/log/messages says:
pantograf kernel: [ 649.287711] unison[9180]: segfault at 30 ip
00007ffda011c958 sp 00007fff5cce51a0 error 4 in
libgtk-x11-2.0.so.0.2400.18[7ffd9ff01000+42c000]
and when I run unison in a bash shell, I get the following messages on-screen:
(unison:9217): Gtk-CRITICAL **: gtk_tree_model_filter_get_value: assertion
`GTK_TREE_MODEL_FILTER (model)->priv->stamp == iter->stamp' failed
(unison:9217): GLib-GObject-WARNING **: gtype.c:4204: type id `0' is invalid
(unison:9217): GLib-GObject-WARNING **: can't peek value table for type
`<invalid>' which is not currently referenced
Segmentation fault
Thanks.
Nathan
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=805767https://bugzilla.novell.com/show_bug.cgi?id=805767#c0
Summary: huge plymouth theme in initrd
Classification: openSUSE
Product: openSUSE 12.3
Version: RC 1
Platform: Other
OS/Version: Other
Status: NEW
Severity: Normal
Priority: P5 - None
Component: Basesystem
AssignedTo: tittiatcoke(a)gmail.com
ReportedBy: lnussel(a)suse.com
QAContact: qa-bugs(a)suse.de
Found By: ---
Blocker: ---
There are 23MB of pylmouth theme files in the initrd. Maybe there is a way to
omit some files to shrink the total size of initrd making boot even faster.
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=629374http://bugzilla.novell.com/show_bug.cgi?id=629374#c0
Summary: desktop-data-openSUSE contains some KDE-specific bits
Classification: openSUSE
Product: openSUSE 11.4
Version: Factory
Platform: Other
OS/Version: Other
Status: NEW
Severity: Normal
Priority: P5 - None
Component: KDE4 Workspace
AssignedTo: kde-maintainers(a)suse.de
ReportedBy: vuntz(a)novell.com
QAContact: qa(a)suse.de
Found By: ---
Blocker: ---
Here are some bits in desktop-data-openSUSE that should probably live in some
of the kde branding packages (or in qt):
+ etc/kde4/: contains kdm/backgroundrc (should live in kdm-branding-openSUSE)
+ etc/profile.d/desktop-data.* and usr/share/desktop-data: the scripts have a
line to set QT_SYSTEM_DIR to /usr/share/desktop-data. This should really
live
in a qt package.
I'm also wondering about everything in etc/xdg/menus/,
usr/share/desktop-directories/ and usr/share/icons/: this contains the XDG menu
structure, except that GNOME now uses something else since we were not happy
with this structure and were unable to make any real progress on changing it.
LXDE also doesn't use it. So it's now more or less KDE-specific...
Finally, etc/skel/ contains public_html. Is this something you want to keep? I
know it annoys me to have this directory created.
--
Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=867041https://bugzilla.novell.com/show_bug.cgi?id=867041#c0
Summary: fontforge segfaults if both libpng12-0 and libpng15-15
are installed
Classification: openSUSE
Product: openSUSE 12.3
Version: Final
Platform: Other
OS/Version: openSUSE 12.3
Status: NEW
Severity: Critical
Priority: P5 - None
Component: X11 Applications
AssignedTo: bnc-team-screening(a)forge.provo.novell.com
ReportedBy: wl(a)gnu.org
QAContact: qa-bugs(a)suse.de
Found By: ---
Blocker: ---
User-Agent: Mozilla/5.0 (X11; Linux i686; rv:27.0) Gecko/20100101
Firefox/27.0
[fontforge 20120731-2.1.2]
[libpng12-0 1.2.50-3.1.1]
[libpng15-15 1.5.13-3.1.1]
Calling fontforge gives
Copyright (c) 2000-2012 by George Williams.
Executable based on sources from 14:57 GMT 31-Jul-2012.
Library based on sources from 14:57 GMT 31-Jul-2012.
Application was compiled with png.h from libpng-1.5.13
Application is running with png.c from libpng-1.2.50
Incompatible libpng version in application and library
Segmentation Fault
Recompiling fontforge from the original sources fixed this issue for me.
Reproducible: Always
Steps to Reproduce:
1.
2.
3.
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=872984https://bugzilla.novell.com/show_bug.cgi?id=872984#c0
Summary: /etc/apparmor.d/usr.lib.apache2.mpm-prefork.apache2
too broad
Classification: openSUSE
Product: openSUSE Factory
Version: 13.2 Milestone 0
Platform: Other
OS/Version: Other
Status: NEW
Severity: Normal
Priority: P5 - None
Component: AppArmor
AssignedTo: suse-beta(a)cboltz.de
ReportedBy: meissner(a)suse.com
QAContact: qa-bugs(a)suse.de
Found By: ---
Blocker: ---
/etc/apparmor.d/usr.lib.apache2.mpm-prefork.apache2 does
/ rw,
/** mrwlkix,
so basically ... every process can do everything.
Correct me if I am wrong, but this profile is then not necessary.
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=803057https://bugzilla.novell.com/show_bug.cgi?id=803057#c0
Summary: PostgreSQL 9.2.3, 9.1.8, 9.0.12, 8.4.16 and 8.3.23
released
Classification: openSUSE
Product: openSUSE 12.2
Version: Final
Platform: Other
OS/Version: Other
Status: NEW
Severity: Normal
Priority: P5 - None
Component: Security
AssignedTo: security-team(a)suse.de
ReportedBy: lijewski.stefan(a)zabka.pl
QAContact: qa-bugs(a)suse.de
Found By: ---
Blocker: ---
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:18.0) Gecko/20100101
Firefox/18.0
>From postgresql.org:
The PostgreSQL Global Development Group has released a security update to all
current versions of the PostgreSQL database system, including versions 9.2.3,
9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS)
vulnerability. All users should update their PostgreSQL installations as soon
as possible.
The security issue fixed in this release, CVE-2013-0255, allows a previously
authenticated user to crash the server by calling an internal function with
invalid arguments. This issue was discovered by independent security researcher
Sumit Soni this week and reported via Secunia SVCRP, and we are grateful for
their efforts in making PostgreSQL more secure.
Today's update also fixes a performance regression which caused a decrease in
throughput when using dynamic queries in stored procedures in version 9.2.
Applications which use PL/pgSQL's EXECUTE are strongly affected by this
regression and should be updated. Additionally, we have fixed intermittent
crashes caused by CREATE/DROP INDEX CONCURRENTLY, and multiple minor issues
with replication.
Reproducible: Always
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.