Fedora Linux Support Community & Resources Center

Go Back   FedoraForum.org > Fedora 17/18 > Using Fedora
FedoraForum Search

Forgot Password? Join Us!

Using Fedora General support for current versions. Ask questions about Fedora and it's software that do not belong in any other forum.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 9th December 2008, 07:43 AM
no2u Offline
Registered User
 
Join Date: Nov 2008
Posts: 4
system-config-services stopped working after 12/8 update

Since yesterday's "system update", I can no longer run System -> Administration -> Services. When I run system-config-services manually, I get the following output:

Code:
[mark@zm-pc ~]$ /usr/bin/system-config-services
ERROR:dbus.proxies:Introspect error on :1.64:/org/fedoraproject/Config/Services/ServiceHerders/SysVServiceHerder: dbus.exceptions.DBusException: org.freedesktop.DBus.Error.AccessDenied: A security policy in place prevents this sender from sending this message to this recipient, see message bus configuration file (rejected message had interface "org.freedesktop.DBus.Introspectable" member "Introspect" error name "(unset)" destination ":1.64")
Traceback (most recent call last):
  File "/usr/bin/system-config-services", line 945, in <module>
    GUI (use_dbus = use_dbus).run ()
  File "/usr/bin/system-config-services", line 900, in __init__
    self.serviceherders.append (cls (bus = self._bus))
  File "/usr/lib/python2.5/site-packages/scservices/dbus/proxy/serviceherders.py", line 53, in __init__
    for service_name in self.list_services ():
  File "/usr/lib/python2.5/site-packages/slip/dbus/polkit.py", line 48, in enable_proxy_wrapper
    return func (*p, **k)
  File "/usr/lib/python2.5/site-packages/scservices/dbus/proxy/serviceherders.py", line 66, in list_services
    return self.dbus_object.list_services (dbus_interface = "org.fedoraproject.Config.Services.ServiceHerder")
  File "/usr/lib/python2.5/site-packages/dbus/proxies.py", line 68, in __call__
    return self._proxy_method(*args, **keywords)
  File "/usr/lib/python2.5/site-packages/dbus/proxies.py", line 140, in __call__
    **keywords)
  File "/usr/lib/python2.5/site-packages/dbus/connection.py", line 630, in call_blocking
    message, timeout)
dbus.exceptions.DBusException: org.freedesktop.DBus.Error.AccessDenied: A security policy in place prevents this sender from sending this message to this recipient, see message bus configuration file (rejected message had interface "org.fedoraproject.Config.Services.ServiceHerder" member "list_services" error name "(unset)" destination ":1.64")
[mark@zm-pc ~]$
Reply With Quote
  #2  
Old 9th December 2008, 07:59 AM
DCOH Offline
Registered User
 
Join Date: Aug 2006
Location: Circleville, Ohio
Age: 65
Posts: 475
If your logging in to the terminal with just su it will not work you have to log in with su -
__________________
Dan
Registered Linux user #432525
Linux Box # 337563
Reply With Quote
  #3  
Old 9th December 2008, 09:31 AM
glennzo's Avatar
glennzo Online
Un-Retired Administrator
 
Join Date: Mar 2004
Location: Salem, Mass USA
Posts: 13,974
Same here. Doesn't run from the menu, doesn't run from the run dialog and here's the result of trying to run it from the command line:
Code:
[glenn@coolhand ~]$ system-config-services 
ERROR:dbus.proxies:Introspect error on :1.62:/org/fedoraproject/Config/Services/ServiceHerders/SysVServiceHerder: dbus.exceptions.DBusException: org.freedesktop.DBus.Error.AccessDenied: A security policy in place prevents this sender from sending this message to this recipient, see message bus configuration file (rejected message had interface "org.freedesktop.DBus.Introspectable" member "Introspect" error name "(unset)" destination ":1.62")
Traceback (most recent call last):
  File "/usr/bin/system-config-services", line 945, in <module>
    GUI (use_dbus = use_dbus).run ()
  File "/usr/bin/system-config-services", line 900, in __init__
    self.serviceherders.append (cls (bus = self._bus))
  File "/usr/lib/python2.5/site-packages/scservices/dbus/proxy/serviceherders.py", line 53, in __init__
    for service_name in self.list_services ():
  File "/usr/lib/python2.5/site-packages/slip/dbus/polkit.py", line 48, in enable_proxy_wrapper
    return func (*p, **k)
  File "/usr/lib/python2.5/site-packages/scservices/dbus/proxy/serviceherders.py", line 66, in list_services
    return self.dbus_object.list_services (dbus_interface = "org.fedoraproject.Config.Services.ServiceHerder")
  File "/usr/lib/python2.5/site-packages/dbus/proxies.py", line 68, in __call__
    return self._proxy_method(*args, **keywords)
  File "/usr/lib/python2.5/site-packages/dbus/proxies.py", line 140, in __call__
    **keywords)
  File "/usr/lib/python2.5/site-packages/dbus/connection.py", line 630, in call_blocking
    message, timeout)
dbus.exceptions.DBusException: org.freedesktop.DBus.Error.AccessDenied: A security policy in place prevents this sender from sending this message to this recipient, see message bus configuration file (rejected message had interface "org.fedoraproject.Config.Services.ServiceHerder" member "list_services" error name "(unset)" destination ":1.62")
I'm sure that within a day or two this will be fixed. This is the price you pay for running bleeding edge software / operating systems.
__________________
Glenn
The Bassinator © ®


Laptop: Toshiba Satellite / Intel Core 2 Duo 1.73 GHz / 2GB / 160GB / Intel Mobile 945GM/GMS/GME/943/940GML Integrated Graphics
Desktop: BioStar MCP6PB M2+ / AMD Phenom 9750 Quad Core / 4GB / 1TB SATA / 500GB SATA / EVGA GeForce 8400 GS 1GB
Reply With Quote
  #4  
Old 9th December 2008, 10:59 AM
Digo Offline
Registered User
 
Join Date: Jun 2005
Posts: 8
While updates don't come, I solved this problem in my system. It was required to edit /etc/dbus-1/system.conf. Comment the lines:

Code:
<allow send_requested_reply="true" send_type="method_return"/>
<allow send_requested_reply="true" send_type="error"/>
And add the following ones:

Code:
<!-- Fix to avoid access denials on PackageKit and others -->
<allow send_requested_reply="true" />
This workaround has been posted elsewhere here in FedoraForum, just don't remember exactly the topic
Reply With Quote
  #5  
Old 9th December 2008, 01:56 PM
leigh123linux's Avatar
leigh123linux Offline
Retired Administrator
 
Join Date: Oct 2006
Posts: 21,509
Here's a fixed package

http://koji.fedoraproject.org/koji/b...?buildID=74000
__________________
My Hardware
- CPU: AMD Phenom II X6 Hex Core 1055T 95W Edition @3.5Ghz
- Motherboard: Gigabyte GA-880GM-UD2H
- Cooler: Corsair H50 CPU Cooler
- RAM: Corsair Dominator 8GB (4x2GB) DDR3 1600MHz
- Graphics: Gigabyte GeForce GTS 450 OC 1024MB GDDR5
Reply With Quote
  #6  
Old 9th December 2008, 02:09 PM
pwca Offline
Banned
 
Join Date: Nov 2008
Posts: 827
I updated my system and I am not experiencing the problem.

But then this is entirely possible since the OP didn't list which Fedora release and version this occured with. Since I'm using F9 and i386 my guess is the problem occurs on: F10 and x86_64.
Reply With Quote
  #7  
Old 10th December 2008, 02:14 AM
jbkt23 Offline
Registered User
 
Join Date: Mar 2006
Posts: 510
I just installed the Koji update linked by 74000 above and still get an error, though it is different than before. This is f10.i386.
<error>
# system-config-services Traceback (most recent call last):
File "/usr/bin/system-config-services", line 945, in <module>
GUI (use_dbus = use_dbus).run ()
File "/usr/bin/system-config-services", line 900, in __init__
self.serviceherders.append (cls (bus = self._bus))
File "/usr/lib/python2.5/site-packages/scservices/dbus/proxy/serviceherders.py", line 53, in __init__
for service_name in self.list_services ():
File "/usr/lib/python2.5/site-packages/slip/dbus/polkit.py", line 48, in enable_proxy_wrapper
return func (*p, **k)
File "/usr/lib/python2.5/site-packages/scservices/dbus/proxy/serviceherders.py", line 66, in list_services
return self.dbus_object.list_services (dbus_interface = "org.fedoraproject.Config.Services.ServiceHerd er")
File "/usr/lib/python2.5/site-packages/dbus/proxies.py", line 68, in __call__
return self._proxy_method(*args, **keywords)
File "/usr/lib/python2.5/site-packages/dbus/proxies.py", line 140, in __call__
**keywords)
File "/usr/lib/python2.5/site-packages/dbus/connection.py", line 630, in call_blocking
message, timeout)
dbus.exceptions.DBusException: org.freedesktop.DBus.Error.AccessDenied: A security policy in place prevents this sender from sending this message to this recipient, see message bus configuration file (rejected message had interface "org.freedesktop.PolicyKit" member "IsSystemBusNameAuthorized" error name "(unset)" destination ":1.62")
<enderrortext>
__________________
jbkt23
Reply With Quote
  #8  
Old 10th December 2008, 02:30 AM
jbkt23 Offline
Registered User
 
Join Date: Mar 2006
Posts: 510
I can run system-config-services as "su -" but, prior to the seventh I could start it from the menu as a user and only if I made a change was I prompted for the root passwd. This seemed logical to me. I guess another piece of the pie has not been updated yet.
__________________
jbkt23
Reply With Quote
  #9  
Old 10th December 2008, 01:34 PM
Hesham Offline
Registered User
 
Join Date: Dec 2008
Posts: 10
[root@DESKTOP Download]# rpm -Uvh system-config-services-0.99.28-2.fc10.noarch.rpm
Preparing... ########################################### [100%]
1:system-config-services ########################################### [100%]
[root@DESKTOP Download]# /usr/bin/system-config-services
No protocol specified
Traceback (most recent call last):
File "/usr/bin/system-config-services", line 27, in <module>
import gtk
File "/usr/lib/python2.5/site-packages/gtk-2.0/gtk/__init__.py", line 79, in <module>
_init()
File "/usr/lib/python2.5/site-packages/gtk-2.0/gtk/__init__.py", line 67, in _init
_gtk.init_check()
RuntimeError: could not open display
Reply With Quote
  #10  
Old 10th December 2008, 01:45 PM
dmorenop Offline
Registered User
 
Join Date: Nov 2008
Posts: 8
Quote:
Originally Posted by leigh123@linux View Post
I installed both this and the system-config-samba one, still having the problem.
Reply With Quote
  #11  
Old 10th December 2008, 04:51 PM
jbkt23 Offline
Registered User
 
Join Date: Mar 2006
Posts: 510
Which bug on Bugzilla is the most relevant one to post follow up issues to?
__________________
jbkt23
Reply With Quote
  #12  
Old 10th December 2008, 05:22 PM
sideways's Avatar
sideways Offline
Retired User
 
Join Date: Oct 2004
Location: London, UK
Posts: 4,999
Quote:
Originally Posted by jbkt23
Which bug on Bugzilla is the most relevant one to post follow up issues to?
What, you mean you think the bugzilla submission form is convoluted?

FWIW I wouldn't bother submitting bug reports for this, even the local village donkey in a small spanish village I know knows about the problem. It will be fixed soon (apparently), and then pass into folklore soon after. Poems and songs will probably be written about this week in fedoraworld

Reply With Quote
  #13  
Old 10th December 2008, 06:45 PM
jbkt23 Offline
Registered User
 
Join Date: Mar 2006
Posts: 510
The folks who fix the problem only have a limited variety of systems to test the fix on. I have installed all the known fixes from Koji and some things are now working but others like the subject tool are not working as expected. I have output I can post. I guess I can troll bugzilla for the one I thinks is relevant. I just thought there would be others who have done so already.
I'm all for the poems and songs. It's what we install Fedora for anyway isn't it?
__________________
jbkt23
Reply With Quote
  #14  
Old 10th December 2008, 07:20 PM
sideways's Avatar
sideways Offline
Retired User
 
Join Date: Oct 2004
Location: London, UK
Posts: 4,999
Quote:
Originally Posted by jbkt23 View Post
The folks who fix the problem only have a limited variety of systems to test the fix o?
I'm not sure why, for ~$2000 I could purchase and set up at least 10 very varied systems for them, that's probably 1 weeks wage for the guy who put the dbus update into the standard repos.

Reply With Quote
  #15  
Old 11th December 2008, 10:34 AM
bigboss2200 Offline
Wondering Where I Am
 
Join Date: Oct 2005
Posts: 309
I tried to update the system-config-services but i recieved the following error when trying to execute the command:

Quote:
[root@localhost Faris]# system-config-services
Traceback (most recent call last):
File "/usr/bin/system-config-services", line 945, in <module>
GUI (use_dbus = use_dbus).run ()
File "/usr/bin/system-config-services", line 900, in __init__
self.serviceherders.append (cls (bus = self._bus))
File "/usr/lib/python2.5/site-packages/scservices/dbus/proxy/serviceherders.py", line 53, in __init__
for service_name in self.list_services ():
File "/usr/lib/python2.5/site-packages/slip/dbus/polkit.py", line 48, in enable_proxy_wrapper
return func (*p, **k)
File "/usr/lib/python2.5/site-packages/scservices/dbus/proxy/serviceherders.py", line 66, in list_services
return self.dbus_object.list_services (dbus_interface = "org.fedoraproject.Config.Services.ServiceHerd er")
File "/usr/lib/python2.5/site-packages/dbus/proxies.py", line 68, in __call__
return self._proxy_method(*args, **keywords)
File "/usr/lib/python2.5/site-packages/dbus/proxies.py", line 140, in __call__
**keywords)
File "/usr/lib/python2.5/site-packages/dbus/connection.py", line 630, in call_blocking
message, timeout)
dbus.exceptions.DBusException: org.freedesktop.DBus.Error.AccessDenied: A security policy in place prevents this sender from sending this message to this recipient, see message bus configuration file (rejected message had interface "org.freedesktop.PolicyKit" member "IsSystemBusNameAuthorized" error name "(unset)" destination ":1.98")
[root@localhost Faris]#
any suggestions?

EDIT: I tried to excute the command under " su - " and it worked.. but if i go to System->Administrator->Services, it will never work...
__________________
Code:
[Faris@localhost ~]$ cat /dev/urandom > /dev/dsp
http://farisguides.webs.com

Last edited by bigboss2200; 11th December 2008 at 10:44 AM.
Reply With Quote
Reply

Tags
12 or 8, stopped, systemconfigservices, update, working

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
system-config-services hangs dunnigan14 Using Fedora 5 28th December 2008 06:51 PM
F10 system-config-services does not respond pantherfish Installation and Live Media 12 13th December 2008 06:02 PM
system-config-services not working ericdan Using Fedora 1 7th October 2006 07:47 PM
system-config-services services? morganread Using Fedora 2 29th April 2005 04:42 AM


Current GMT-time: 10:50 (Thursday, 20-06-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat