[SOLVED] xhost access control does not work for specified users

After last upgrade of xorg to v1.17.1-1 I get message: "unable to open display ":0" " when trying to run any window application as user specified in xhost. My xhost list looks like:
access control enabled, only authorized clients can connect
SI:localuser:steam
SI:localuser:root
But if I disable access control for everyone by invoking "xhost +" applications run on another accounts without problems. Does anyone has that problem too?
Last edited by slx (2015-02-22 12:24:17)

slx wrote:I see that fix is pending http://lists.x.org/archives/xorg-devel/ … 45644.html
Can you test package here http://pkgbuild.com/~lcarlier/test/ ?

Similar Messages

  • MB Air two finger scroll does not work for a user but does for another

    Hi
    MB Air. 10.9.3.
    Defective Trackpad was just replaced. Two finger scroll does not work for the main user. I made a test log in and two finger scroll works. I booted off an external drive and two finger scroll works.
    I pulled all of the user preferences out, logged out and in and still does not work. Zapped PRAM. Checked all trackpad settings. No luck.
    Tried this in Terminal:
    defaults write -g com.apple.trackpad.scrollBehavior 2
    Any ideas?

    This sounds strange but check the settings in Settings>Accessability for the track pad. I belive your problem lies there not in Track Pad set up in Settings.

  • Time access control does not work

    I set up the time access control for my kids devices, but they can still access the internet.

    Several possibilities exist:
    1) The Timed Access entries are not being set up correctly. Have you tested each device yourself?
    2) The kids are smart enough to know how to work around the settings
    3) The kids know how to get on another nearby wireless network.
    Regarding 2) and 3), there are numerous popular sites on the Internet that kids visit that provide them with tips and techniques to get around security on popular routers, so that possibility may be more real than you might imagine.
    Regarding 1), we may be able to help, as there are two basic ways to set up Timed Access.....one being quite a bit more secure than the other. Unfortunately, this means a more time consuming and tedious set up.

  • List search box does not work for some users Sharepoint 2013

    Hello,
    I have a list for which I've enabled a search box (from web part settings, miscellaneous).
    The problem is that for me and the others admins the search works perfectly, but for the other users who have only Read
    privilege the search doesn't work and shows the loading icon forever.
    Why does this happen?
    How can I enable search box
    for the list for all users?
    Please help
    me

    Hi,
    For troubleshooting your issue, please go to Central Administration -> Application Management ->Manage Service applications->  select search service application -> click Permissions -> add "Everyone" with Full Control.
    Best Regards,
    Eric           
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Exe created with Report Generation toolkit does not work for all users

    I created a exicutable with the report generation toolkit and it only works with some of my users. I use microsoft 2007 and anyone that has microsoft 2007 my exe works well. Most of my users that have microsoft 2010 are able to use my program as well. However, there is one user with 2010 and Windows 2007 that cant get my program to work.
    Any suggestions for troubleshooting this?
    Thanks

    The most likely issue is due to the fact that Microsoft changes the ActiveX object model of Office for each version of Office. The Report Generation Toolkit does a pretty good job of handling this, but it is not 100% effective. Search, for example on the "Set Cell Border" function and you will see what I mean. In these cases it's up to you to handle this issue. How you handle it really depends on your situation. For us to provide a more concrete answer you will need to provide further details, such as what toolkit function is "not working" (whatever that means), and who you "users" are. Is this an internal distribution? Are you selling this program? Is this code written for a project with a specific customer?

  • Wwa_app_module.file_download does not work for public user

    I have a dynamic page that shows images stored in the database using the wwa_app_module.file_download procedure.
    This works fine if I login as the portal user, but if the page is viewed by a public user the image is not shown. I have granted the package to public but this does not help.
    Any ideas?

    Don't use wwa_app_module.file_download procedure in reports yet.
    The best way is to create your own download procedure by copying,pasting and slighty modifying one of the download_x (where x is a number) procedures in a form's package.
    A form's package will have the download_x procedures if the form has intermedia/blob columns.

  • After deploy in server, integrated Security works for all users but only one user does not work for one user

    hi
       i'd like to ask for help.here is a brief introduction.
          i publish a web project on a server(the name,"server-deploy"),(it connect with sql server datavvase with connection string  of database  "Trusted_Connection=Yes",with web config file <authentication
    mode="Windows" />    <identity impersonate="true"/>
       there are some users whose Impersonae_clients_after_authentication are enabled. and most of them can connect to database via the deployed project .
      but one user,he was told 'NT AUTHORITY\ANONYMOUS LOGON', and according to even viewer("security of "windows log") of "server-deploy",it shows "Audit failure"(the Task category is "credential validation")
    and here is some information
    [ Name]  Microsoft-Windows-Security-Auditing
       EventID 4776
    The computer attempted to validate the credentials for an account.
      PackageName MICROSOFT_AUTHENTICATION_PACKAGE_V1_0
      TargetUserName (user)
      Workstation (Workstation)
      Status 0xc0000064
       while when other user do login ,there is no log whose Task category is "credential validation".
      COULD ANY ONE CAN DO ME A FAVOR TO HELP ME?ANY HELP IS APPRECIAT. THANK U VERY MUCH IN ADVANCE :)
    best regards
    martin

    and i made a small windows form application here
       private bool impersonateValidUser(String userName, String domain, String password)
                WindowsIdentity tempWindowsIdentity;
                IntPtr token = IntPtr.Zero;
                IntPtr tokenDuplicate = IntPtr.Zero;
                if (RevertToSelf())
                    if (LogonUserA(userName, domain, password, LOGON32_LOGON_INTERACTIVE,
                        LOGON32_PROVIDER_DEFAULT, ref token) != 0)
                        if (DuplicateToken(token, 2, ref tokenDuplicate) != 0)
                            tempWindowsIdentity = new WindowsIdentity(tokenDuplicate);
                            impersonationContext = tempWindowsIdentity.Impersonate();
                            if (impersonationContext != null)
                                CloseHandle(token);
                                CloseHandle(tokenDuplicate);
                                return true;
                if (token != IntPtr.Zero)
                    CloseHandle(token);
                if (tokenDuplicate != IntPtr.Zero)
                    CloseHandle(tokenDuplicate);
                return false;
      and here is the code of buttonclick
     if (impersonateValidUser(user,psw,doman))
                    if (!System.IO.Directory.Exists(this.textBox1.Text))
                        MessageBox.Show("not exist with imper");
                    else
                        MessageBox.Show("exist with imper");
                    undoImpersonation();
                else
                    MessageBox.Show("fail login.");
       and i was told "exist with imper"(usually if Impersonae_clients_after_authentication is not enaled would told "not exist with imper" )

  • After Upgradation BPF is not working for some users

    Hi All,
    We have recently upgraded from BPC 5.1 to 7MS SP7.  we are having multi server setup with one application / reporting server (windows 2003 and one sql server 2008 (windows 2003 64 bit).
    Intially before upgradation we don't have any issues with BPF and it worked fine for all users. But post upgradation tasks within the BPF  does not work for other users except for the first two people who first  used it. Other users have the same rights as the ones who can access the tasks.
    when they  click on the link it gets them to eExcel and the right application but doesnt open the package or report assigned to the task. It doesn't give us any errors, on the status bar we get a message finalising but does  not getting any thing.
    Any inputs ??

    Hi,
    Are you sure that those users have installed BPC 7 SP7 clients on their machine? Meaning that you uninstalled 5.1 clients and installed the new client from http://servername/Osoft?
    If yes, you should maybe run a client diagnostic on the machines and also check the Management Console for any error messages.
    Hope this will drive you to a potential solution.
    Best Regards,
    Patrick

  • Link does not work for-End-of-Sale and End-of-Life Announcement for the Cisco Secure Access Control System 5.4

    Link does not work for
    End-of-Sale and End-of-Life Announcement for the Cisco Secure Access Control System 5.4
    How do we get Cisco to fix?
    see attachment

    Give it a couple of days - it looks like they just sent out the notification before the notice was published on the public page.
    Once the ACS 5.4 EoS/EoL notice is published you should see it linked from this page.

  • My laptops QWERTY row of keys does not work for long periods at random intervals and only after pushing all the buttons on the row does it eventually turn back on and then will still cut out every now and again, anyone know how to solve this?

    My laptops QWERTY row of keys does not work for long periods at random intervals and only after pushing all the buttons on the row does it eventually turn back on and then will still cut out every now and again, anyone know how to solve this? If not is there any way to actually get a genuis appointment lol to get one of them to have a look at the hardware on the keyboard?

    Apple Support (formerly ExpressLane):
    https://getsupport.apple.com/GetproductgroupList.do
    https://getsupport.apple.com/GetSASO?SG=SG001&locale=en_US

  • Downloaded ios7 to my iphone4s and now my volume control does not work 99 % of the time. what can i do to solve the problem

    I downloaded ios7 to my iphone and now my volume control does not work 99% of the time. Is there something I need to do to correct this?

    Adjust the Volume Control in Control Center, or try a RESET.............

  • My Bose SIE2i volume control does not work. (pause/play does work). This is the secone set - the apple store in Sydney replaced the firsat set that had the same problem. It was working OK and has stopped.

    My Bose SIE2i volume control does not work. (pause/play does work). This is the second set - the apple store in Sydney replaced the first set that had the same problem. It was working OK and has stopped.

    Thanks again V.K. I did check the layout, and it was listed as alphabet when I inputted the password. So that doesn't seems to the the issue.
    Just finished a truly mystifying experiment, but I put in a shorter password in the way mentioned earlier and it worked. I then systematically kept increasing the characters of that password and it seems that if the password starts to exceed about 16, it stops recognizing it. I am fairly sure it is not the password itself since it never gives an error when typing in the verification password. So unless I systematically make the exact mistake twice at the setup screen, and then don't or make a different mistake every time at the login screen, I don't think its my typing skill.
    So problem solved for now, but I am still a bit worried. Maybe I should completely reinstall and use a shorter password.
    Is there supposed to be a length limit?

  • 2002 G3 600 mhz iMac display stays dim with an unidentified sign displayed.  The contrast control does not work.

    My display screen is dim and the contrast control does not work.  There is a sign on the screen that I have been unable to identify.  It is a white circle outline with a half moon solid circle within it.  Does anyone know what's wrong?

    There is a sign on the screen that I have been unable to identify.  It is a white circle outline with a half moon solid circle within it
    That would be a screen contrast symbol     
    My display screen is dim and the contrast control does not work.
    Did you reset the PRAM? http://support.apple.com/kb/ht1379 And the pram battery may need to be replaced if it is over 3 years old it is under the iMac under the ram cover and there is a little button in there to reset the pmu as well. you have to have it pluged in when you do a pmu reset. there is a lot more stuff to try before the worst case scenario that is a bad PAV board the Pav is what runs the monitor and if it is going bad That may be a syptom that it is haveing and they can not be fixed (Well not for under $250 and that is useing old parts because they do not make them any more) but that wood be worst case scenario. Lets just hope it just needs to be reset Try that and Keep us posted

  • Brightness control does not work with the bluetooth keyboard connected on my iPad2. Please someone could help me ?

    Brightness control does not work with the bluetooth keyboard connected on my iPad2. Please someone could help me ?

    Julien-
    I have the Apple MC184LL/A Bluetooth Wireless Keyboard.  The brigtness control works with mine, as do most of the other functions.
    Try cycling the keyboard off and on.  Hold the power button until the green LED goes out.  Then press it one more time to turn it back on.
    You might try resetting the iPad's network.  Go to Settings-General-Reset-Reset Network Settings.  Then you may need to reconnect your WiFi and Bluetooth.
    If that doesn't help, try resetting/rebooting the iPad.  Hold both the Home and Sleep buttons for several seconds until the Apple logo appears.  Ignore the "Slide to power off" arrow.  The iPad will restart in a couple of minutes.  Resetting this way will not hurt anything, and sometimes clears up mysterious problems.
    Fred

  • I have an event in my calendar that was sent by someone who does not work for the company anymore and I am reminded 2 times a week. How can I remove it?

    I have an event in my calendar that was sent by someone that does not work for the company anymore and I am reminded 2 times a week. How do I delete it?

    Tap on the event to open the event. Click the 'Edit' button in the event bubble, then press the 'Delete Event' button at the bottom of the Edit pop-up. It's a little different for events that come through Microsoft Exchange, you tap the event to bring up bubble and click the 'Details' button, and then press 'Decline' to remove the event.

Maybe you are looking for

  • 2 iphones on one itunes account imessage problems

    My husband and I each have a 4s both linked to the same itunes account - both were working fine using facetime and imessage, but my husband had to get ihs replaced at the apple store today all fine EXCEPT thefacetime/imessaging as all messages are no

  • Error messages "iTunes could not back up iPhone because the backup may be corrupted..." "1 item could not be synced. See iTunes for more information. Not syncing music.

    I'm a recent iPhone 4 user and I just upgraded through AT&T to the 16gb iPhone 5s. The employee at the AT&T store who hooked my family up with phones, told me I could start out with a new phone or back it up to my iPhone 4. So I get home and it takes

  • C7 TV-out cable

    Does anybody know which cable should be used with Nokia C7 for TV-out? I have not found any compatible one on nokia websites. I have tried CA-75U but it did not work. Solved! Go to Solution.

  • Automatic Opening on Start Up

    Hello, For some reason Captivate has started to automatically load up and open to the welcome screen on start up. It doesn't happen consistently but both my colleague and I have experienced it several times over the past couple of days. It happens wh

  • Certification questions

    hi,        How is the certification valuation.  Any negative marks will be there.  If one question is having 3 answers,  I have put 1 right and 1 wrong then how many marks i can get?  Pl give the suggestions to follow the answers in exam.  Pl send an