Permissions for PIAPPLUSER for running remote RFC

Hi guys,
I want the PIAPPLUSER in ABAP stack to have permissions to run RFC. Which permissions/role is needed for this? I will be connecting from Java stack via PIAPPLUSER to ABAP and want to run remote RFC using it.
Thanks, Olian

Hi Olian,
You can create a new Z role and add the below authorization objects and attach the role to the created user.
S_RFC
S_RFC_ADM
S_RFCACL
Cheers....,
Raghu

Similar Messages

  • Mac Mini Sever - Public Share - how enable read and write permissions for new remote files

    Hi,
    this Sunday a friend ask me to help hum with a problem on is Man Mini Server. He has a small office and uses the mini server to share a public folder to all his employees.
    Everyone that creates a file, saves it to the public folder at the mini mac.
    That problem is that, who creates the file owns it and remains with read-only permissions to everyone else. The owner has to change the file permission in order to the rest of the employees can work on it.
    I do not know mac arquitecture, I only work with windows and linux, but i suspect the principles are the same.
    We try to create another folder , and share it, but it happens the same. Have you any ideas on what is wrong?
    I suspect it has anything to do with de file Sharing at the mini mac, but it has read and write permissions for everyone.
    Thanks for your help.

    signed applet. You aren't going to find any easy way to distribute that policy file to users, and that policy file, if you asked me to put it on my PC, I'd tell you to take a flying leap. That would open any applet to access.

  • Remote Desktop Service Manager - configure permissions for Remote Desktop Users to Send Message, Disconnect, Logoff

    Hello, dear colleagues.
    We are using Windows Server 2012 R2 as Remote Desktop Server. Also use Windows Server 2008 R2 with Remote Desktop Service Manager to control RDS user sessions (Send Message, Disconnect, Logoff, Query Info). 
    Send Message, Disconnect, Logoff options works only for users in Administrators group.
    I can't to configure permissions for Remote Desktop Users, specific user or AD group. 
    To set permissions I'm running RDS Host Configuration on Windows Server 2008 R2 and connect to Windows Server 2012 R2. Then double-click
    RDP-Tcp, Security tab, add specific user account , AD group or configure
    advanced permissions
    for Remote Desktop Users.  
    But, as I sad above, these options works only for users in Administrators group. How to make it work for Remote Desktop Users or specific user, AD group?
    Thanks.
    P.S. If move specific user from Remote Desktop Users group to Administrators group on
    Windows Server 2012 R2 - it works. 

    Hi,
    You can prevent administrators from changing the permissions for a connection by applying the
    Do not allow local administrators to customize permissions Group Policy setting. 
    This Group Policy setting is located in Computer Configuration\Policies\Administrative Templates\Windows Components\Remote Desktop Services\Remote Desktop Session Host\Security
    Apart there is one command with which you can set the permission for that check the related
    article. Additionally checkthis
    thread for more detail.
    Hope it helps!
    Thanks.
    Dharmesh Solanki
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • I am running Lion 10.7.2 and I have an external drive hooked to my time machine. I can't rename folders and when trying, I get an error code 8076. The checkbox "ignore permissions for this device" does not show on volume info. Help please???

    I am running Lion 10.7.2 and I have an external drive hooked to my time machine. I can't rename folders and when trying, I get an error code 8076. The checkbox "ignore permissions for this device" does not show on volume info. Help please???

    The TIme Machine volume does not have that checkbox.
    I think the issue is with your Finder...
    Go to Finder "Go" menu hold the option key and choose Library. Then go to Preferences trash these files:
    com.apple.finder.plist
    com.apple.sidebarlists.plist
    Then, restart, or log out and in again.
    (You will have to reset a few finder prefs the way you like them.)

  • Running one rmiregistry for multiple remote object servers

    Hi,
    I don't find any clear answer for this situation. I want that multiple objet servers (running in separated JVMs) share one rmiregistry placed on a dedicated server. Servers stays in a same network (no firewall at all). If this feature is covered, could you give me any example or link that describe the source code ?
    Thanks very well for yours answers.
    Manuel

    Thanks again for your help, and sorry for my weak usage of english language.
    I've tried to bind some remote objects from distinct 'physical' hosts (or computers) to a dedicated registry located on another host.
    To resume: I want to use one unique registry for multiple remote objects hosts.
    EJP you have posted : But they must all be running on the same host as the Registry.
    After reading again the official rmi tutorial, I found :
    For security reasons, an application can only bind, unbind, or rebind remote object references with a registry running on the same host. This restriction prevents a remote client from removing or overwriting any of the entries in a server's registry. A lookup, however, can be requested from any host, local or remote.
    This confirm that I wanted to do was not possible.
    To override this limitation, do you think it's possible to write a remote object located on the registry host, that propose a method used from other hosts to register their remote objects ? Something like that:
    // Interface
    public interface recordFromHost extends Remote {
        int recordObject(String name, Remote obj) throws RemoteException;
    // Implementation of interface
    public class recordFromHostImpl extends UnicastRemoteObject implements recordFromHost {
        public recordFromHostImpl () throws RemoteException {
            super();
        public int recordObject(String name, Remote obj) {
           int ret=0;
            try {
                Registry registry = LocateRegistry.getRegistry();
                registry.bind(name, obj);
            } catch (Exception e) {
                System.err.println("recordObject exception:");
                e.printStackTrace();
                ret = -1;
        return ret;
    // Server code on registry host
    public class Serveur {
    public static void main(String args[]) {
            // Security manager
            if (System.getSecurityManager() == null) {
                System.setSecurityManager(new SecurityManager());
            // Start of registry
            try{
                LocateRegistry.createRegistry(1099);
            }catch(RemoteException e){
                System.exit(1);
            try {
                String name = "recordFromHost";
                recordFromHost myObj = new recordFromHostImpl ();
                Registry registry = LocateRegistry.getRegistry();
                registry.bind(name, myObj);
            } catch (Exception e) {
                System.err.println("bind exception:");
                e.printStackTrace();
    // Code used from a server host to register his remote object in the distant registry
    Registry registry = LocateRegistry.getRegistry(registry host adress);
    recordFromHost  myRecord  = (recordFromHost) registry.lookup("recordFromHost");
    Create local remote object to register (remoteObject : interface, remoteObjectImpl : implementation)
    remoteObject myRemoteObject = new remoteObjectImpl();
    // register myRemoteObject
    myRecord.recordObject("myRemoteObject", myRemoteObject );
    ...Finally, a client who want to use myRemoteObject ask the registry for this object, and use it without limitation : the remote object host will not be the registry host.
    I hope that you understand what I mean :-)
    Manuel

  • Permissions for /etc/ ?

    I accidentally forced permissions for /etc/ after adding a line for sieve scripts in webmail/squirrelmail.
    I am sure I have not touched anything else....
    Now mail services says they are running in Server admin, but not when I telnet to them.
    web:~ admin$ telnet localhost 110
    Trying ::1...
    telnet: connect to address ::1: Connection refused
    Trying ::1...
    telnet: connect to address ::1: Connection refused
    Trying 127.0.0.1...
    telnet: connect to address 127.0.0.1: Connection refused
    telnet: Unable to connect to remote host
    Is there a way to save this situation?
    All other services like web and afp works fine,
    just not pop, imap and SMTP.
    How do I fix permissions back=
    Thanx for listening, grateful for any help!
    Janne A.

    Thanx ever so much you are very kind...
    I changed permissions by way of Get Info on the folder etc and then propagate prmissions from there....
    Your suggestions:
    I tried it and the output out of the first command is:
    lrwxr-xr-x@ 1 root admin 11 Dec 25 18:15 etc -> private/etc
    And for the second one:
    Last login: Wed Jan 2 21:46:49 on ttys000
    web:~ admin$ cd /
    web:/ admin$ sudo chmod 755 /etc
    web:/ admin$ ls -al /
    total 41125
    drwxrwxr-t 32 root admin 1156 Dec 28 14:17 .
    drwxrwxr-t 32 root admin 1156 Dec 28 14:17 ..
    -rw-rw-r--@ 1 admin admin 12292 Jan 2 19:10 .DS_Store
    drwx------ 3 root admin 102 Dec 25 19:01 .Spotlight-V100
    d-wx-wx-wt 2 root staff 68 Dec 25 18:13 .Trashes
    drwx------ 63 root admin 2142 Jan 2 19:19 .fseventsd
    -rw------- 1 root wheel 65536 Dec 25 18:53 .hotfiles.btree
    drwxr-xr-x@ 2 root wheel 68 Sep 24 09:08 .vol
    -rw-r--r-- 1 root admin 199 Dec 25 19:59 2.66
    drwxrwxr-x+ 35 root admin 1190 Dec 30 14:09 Applications
    drwxrwx---+ 7 admin admin 238 Dec 29 12:25 Groups
    drwxrwxr-t+ 57 root admin 1938 Dec 28 14:22 Library
    drwxr-xr-x@ 3 root wheel 102 Jan 2 19:19 Network
    drwxrwxr-x 3 admin admin 102 Dec 25 18:32 Shared Items
    drwxr-xr-x 4 root wheel 136 Dec 28 14:21 System
    drwxr-xr-x 5 root admin 170 Dec 25 19:00 Users
    drwxrwxrwt@ 3 root admin 102 Jan 2 19:19 Volumes
    drwxr-xr-x@ 40 root wheel 1360 Dec 25 18:15 bin
    drwxrwxr-t@ 2 root admin 68 Sep 23 23:37 cores
    dr-xr-xr-x 2 root wheel 512 Jan 2 19:19 dev
    lrwxr-xr-x@ 1 root admin 11 Dec 25 18:15 etc -> private/etc
    dr-xr-xr-x 2 root wheel 1 Jan 2 19:19 home
    -rw-r--r--@ 1 root wheel 10256044 Nov 1 01:48 mach_kernel
    -rw-r--r--@ 1 root wheel 10696809 Oct 10 06:38 mach_kernel.ctfsys
    dr-xr-xr-x 2 root wheel 1 Jan 2 19:19 net
    drwxr-xr-x@ 6 root wheel 204 Dec 25 18:23 private
    drwxr-xr-x@ 67 root wheel 2278 Dec 28 14:17 sbin
    lrwxr-xr-x@ 1 root admin 11 Dec 25 18:15 tmp -> private/tmp
    drwxr-xr-x@ 11 root wheel 374 Dec 25 21:01 usr
    lrwxr-xr-x@ 1 root admin 11 Dec 25 18:15 var -> private/var
    web:/ admin$ ls -al /etc/
    total 2592
    drwxr-xr-x 124 root wheel 4216 Jan 2 21:51 .
    drwxr-xr-x@ 6 root wheel 204 Dec 25 18:23 ..
    -rw-r--r-- 1 root wheel 753 Sep 24 07:55 6to4.conf
    -rwxrwxrwx 1 root wheel 24 Dec 28 22:52 AFP.conf
    -rw-r--r-- 1 root wheel 1404 Sep 24 04:38 IPAliases.conf.default
    -rwxrwxrwx 1 root wheel 1532 Jan 2 21:51 MailServicesOther.plist
    -rw-r--r-- 1 root wheel 739 Sep 29 08:25 af.plist
    -rw-r--r-- 1 root wheel 515 Sep 23 23:37 afpovertcp.cfg
    lrwxr-xr-x 1 root wheel 15 Dec 25 18:23 aliases -> postfix/aliases
    -rw-r--r-- 1 root wheel 16384 Jan 2 21:52 aliases.db
    -rw-r--r-- 1 root wheel 31865 Jan 2 15:20 amavisd.conf
    -rwxrwxrwx 1 root wheel 31858 Sep 27 06:43 amavisd.conf.personal
    drwxr-xr-x 24 root wheel 816 Jan 2 10:12 apache2
    -rw-r--r-- 1 root wheel 88 Sep 23 23:37 asl.conf
    -rw-r--r-- 1 root wheel 21691 Jan 2 19:19 authorization
    -rw-r--r-- 1 root wheel 67 Oct 10 06:53 auto_home
    -rw-r--r-- 1 root wheel 164 Oct 10 06:53 auto_master
    -rw-r--r-- 1 root wheel 1759 Oct 10 06:53 autofs.conf
    -r--r--r-- 1 root wheel 196 Sep 24 03:45 bashrc
    -rwxrwxrwx 1 root wheel 1379 Dec 25 18:53 bootpd.plist
    drwxr-xr-x 5 root wheel 170 Jan 2 19:19 caldavd
    drwxrwxrwx 12 root wheel 408 Dec 28 20:06 certificates
    -rw-r--r-- 1 root wheel 9185 Oct 5 04:41 clamd.conf
    -rw-r--r-- 1 root wheel 9185 Oct 5 04:41 clamd.conf.default
    -rw-r--r-- 1 root wheel 189 Sep 24 04:10 csh.cshrc
    -rw-r--r-- 1 root wheel 121 Sep 24 04:10 csh.login
    -rw-r--r-- 1 root wheel 39 Sep 24 04:10 csh.logout
    drwxr-xr-x 12 root _lp 408 Dec 25 18:45 cups
    -rwxrwxrwx 1 root wheel 1142 Jan 2 17:18 cyrus.conf
    -rw-r----- 1 root wheel 1146 Sep 24 07:22 cyrus.conf.default
    drwxr-xr-x 3 root wheel 102 Sep 29 05:39 defaults
    drwxr-xr-x 11 root wheel 374 Dec 26 03:15 diskspacemonitor
    drwxrwxrwx 5 root wheel 170 Dec 25 19:00 dns
    -rw-r--r-- 1 root wheel 2378 Oct 11 09:22 dnsextd.conf
    -rwxrwxrwx 1 root wheel 0 Dec 26 03:15 dumpdates
    -rw-r--r-- 1 root wheel 587 Sep 24 04:30 efax.rc
    drwxr-xr-x 5 root wheel 170 Dec 25 19:02 emond.d
    -rw-r--r-- 1 root wheel 0 Sep 23 23:37 find.codes
    -rw-r--r-- 1 root wheel 3616 Oct 5 04:41 freshclam.conf
    -rw-r--r-- 1 root wheel 3616 Oct 5 04:41 freshclam.conf.default
    -rw-r--r-- 1 root wheel 150 Sep 23 23:37 fstab.hd
    -rw-r--r-- 1 root wheel 119 Sep 23 23:37 ftpusers
    -rw-r--r-- 1 root wheel 5678 Sep 23 23:37 gettytab
    -rw-r--r-- 1 root wheel 1444 Sep 23 23:37 group
    -rw-r--r--@ 1 root wheel 223 Dec 29 00:47 hostconfig
    -rwxrwxrwx 1 root wheel 185 Oct 2 05:54 hostconfig.personal
    -rw-r--r-- 1 root wheel 236 Sep 23 23:37 hosts
    -rw-r--r-- 1 root wheel 0 Sep 23 23:37 hosts.equiv
    drwxr-xr-x 24 root wheel 816 Dec 25 19:03 httpd
    -rw-r--r-- 1 root wheel 22854 Sep 24 07:51 hwmond.SMART
    -rwxrwxrwx 1 root wheel 847 Jan 2 17:18 imapd.conf
    -rw-r----- 1 root wheel 618 Sep 24 07:22 imapd.conf.default
    drwxr-xr-x 8 root wheel 272 Dec 25 18:55 ipfilter
    -r--r--r-- 1 root wheel 1097 Sep 29 06:52 irbrc
    drwxr-xr-x 19 root wheel 646 Dec 25 19:01 jabberd
    -rwxrwxrwx 1 root wheel 12 Dec 25 19:05 kcpassword
    -rw-r--r-- 1 root wheel 0 Sep 23 23:37 kern_loader.conf
    -rwxrwxrwx 1 root wheel 4713 Dec 25 20:15 krb5.keytab
    lrwxr-xr-x 1 root wheel 36 Dec 25 19:01 localtime -> /usr/share/zoneinfo/Europe/Stockholm
    -r--r--r-- 1 root wheel 616 Sep 24 04:34 locate.rc
    drwxr-xr-x 3 root wheel 102 Dec 25 18:23 mach_init.d
    drwxr-xr-x 2 root wheel 68 Oct 2 05:54 machinit_per_loginsession.d
    drwxr-xr-x 2 root wheel 68 Oct 2 05:54 machinit_peruser.d
    drwxr-xr-x 6 root wheel 204 Jan 2 17:18 mail
    -rw-r--r-- 1 root wheel 106 Sep 24 04:10 mail.rc
    -rw-r--r-- 1 root wheel 4589 Sep 24 03:54 man.conf
    -rw-r--r-- 1 root wheel 36 Sep 23 23:37 manpaths
    drwxr-xr-x 3 root wheel 102 Sep 24 05:53 manpaths.d
    -rw------- 1 root wheel 3088 Sep 23 23:37 master.passwd
    -rwxrwxrwx 1 root wheel 124 Dec 25 18:53 memberd.conf
    -rw-r--r-- 1 root wheel 132839 Sep 24 07:11 moduli
    -rw-r--r--@ 1 root wheel 1084 Dec 25 18:59 named.conf
    -rwxrwxrwx 1 root wheel 1238 Sep 25 03:34 named.conf-2007-12-25.migrated
    -r--r--r-- 1 root wheel 11 Sep 24 04:12 nanorc
    drwxr-xr-x 4 root wheel 136 Dec 25 19:01 nat
    -rw-r--r-- 1 root wheel 53 Sep 23 23:37 networks
    -r--r--r-- 1 root wheel 1581 Sep 29 05:39 newsyslog.conf
    -rw-r--r-- 1 root wheel 132 Sep 24 03:51 notify.conf
    -rwxrwxrwx 1 root wheel 26 Dec 25 19:01 ntp.conf
    drwxr-xr-x 12 root wheel 408 Dec 25 19:00 openldap
    drwxr-xr-x 13 root wheel 442 Dec 25 18:21 pam.d
    -rw-r--r-- 1 root wheel 2888 Sep 23 23:37 passwd
    -rw-r--r-- 1 root wheel 45 Sep 23 23:37 paths
    drwxr-xr-x 3 root wheel 102 Sep 24 05:53 paths.d
    drwxr-xr-x 5 root wheel 170 Sep 24 03:56 periodic
    -r--r--r-- 1 root wheel 45029 Sep 24 07:35 php.ini.default
    drwxr-xr-x 6 root wheel 204 Oct 6 08:56 podcastproducer
    drwxr-xr-x 23 root wheel 782 Jan 2 21:52 postfix
    drwxr-xr-x 2 root wheel 68 Oct 10 06:53 ppp
    -r--r--r-- 1 root wheel 189 Sep 24 03:45 profile
    -rw-r--r-- 1 root wheel 5766 Sep 23 23:37 protocols
    drwxr-xr-x 5 root wheel 170 Dec 25 18:23 racoon
    drwxr-xr-x 25 root wheel 850 Sep 24 07:52 raddb
    -rw-r--r-- 1 root wheel 1660 Oct 2 05:54 rc.common
    -rw-r--r-- 1 root wheel 4641 Oct 2 05:54 rc.netboot
    -rwxr-xr-x 1 root wheel 2853 Sep 24 04:38 rc.server
    lrwxr-xr-x 1 root wheel 20 Dec 25 18:21 resolv.conf -> /var/run/resolv.conf
    -rw-r--r-- 1 root wheel 0 Sep 23 23:37 rmtab
    -rwxrwxrwx 1 root wheel 77 Dec 25 19:00 rndc.key
    -rw-r--r-- 1 root wheel 971 Sep 23 23:37 rpc
    -rw-r--r-- 1 root wheel 983 Sep 24 07:55 rtadvd.conf
    drwxr-xr-x 11 root wheel 374 Dec 25 18:32 sbs_backup
    drwxr-xr-x 3 root wheel 102 Oct 3 07:02 servermgrd
    -rw-r--r-- 1 root wheel 677959 Sep 23 23:37 services
    -rw-r--r-- 1 root wheel 178 Dec 25 18:33 shells
    -rwxrwxrwx 1 root wheel 179 Sep 23 23:37 shells.personal
    -rw-r--r-- 1 root wheel 2904 Sep 26 05:08 smb.conf
    -rw-r--r-- 1 root wheel 2904 Sep 26 05:08 smb.conf.template
    drwxr-xr-x 4 root wheel 136 Sep 24 05:56 snmp
    drwxr-xr-x 4 root wheel 136 Dec 25 18:32 squirrelmail
    -rw-r--r-- 1 root wheel 1466 Dec 25 19:02 ssh_config
    -rw-r--r-- 1 root wheel 3356 Dec 25 19:02 sshd_config
    -rwxrwxrwx 1 root wheel 3362 Sep 24 07:11 sshd_config.personal
    -r--r----- 1 root wheel 1135 Sep 24 04:29 sudoers
    drwxr-xr-x 5 root wheel 170 Dec 25 18:53 swupd
    -rw-r--r-- 1 root wheel 2274 Sep 24 04:38 sysctl.conf.default
    -rw-r--r-- 1 root wheel 985 Jan 2 17:18 syslog.conf
    drwxrwxrwx 3 root wheel 102 Dec 25 18:59 systemserialnumbers
    -rw-r--r-- 1 root wheel 1441 Sep 23 23:37 ttys
    drwxr-xr-x 4 root wheel 136 Sep 24 07:23 webperfcache
    drwxr-xr-x 4 root wheel 136 Jan 2 10:12 wikid
    drwxr-xr-x 4 root wheel 136 Sep 24 07:09 xgrid
    -rw-r--r-- 1 root wheel 0 Sep 23 23:37 xtab
    -r--r--r-- 1 root wheel 113 Sep 24 03:40 zprofile
    Can you decuce anything from this?
    Still can't telnet into pop imap and smtp...
    thanx a bunch if you can do anything with this?
    I am stuck...
    all the best for 08
    Janne A.
    Message was edited by: Jan Anderson
    twice pasted

  • The grace period for the Remote Desktop Session Host server has expired

    <p>I'm running Windows Server 2012, we only have 1 server and it's a DC.  I'm trying to RD to the server from my Windows 7 laptop. It was working fine on Friday but when I came in on Monday I got message saying that 'The remote session was disconnnected
    because there are no Remote Desktop License Servers available to provide a license'
    So after a bit of digging I found out my 'grace period' had expired, so ordered a new license which I got today, installed this all ok but still i cannot connect via RD I get the same message....went into the RD License Diagnoser and it said the problem
    was as follows
    'The grace period for the Remote Desktop Session Host server has expired, but the RD Session Host server has not been configured with any license servers. Connections to the RD Session Host server will be denied unless a license server is configured for
    the RD Session Host server.'
    Suggested Resolution as follows
    Configure a license server for the Remote Desktop Session Host server. If you have an existing license server, specify that license server for the RD Session Host Server. Otherwise, install RD Licensing on a computer on your network and Configure RD Session
    Host Server to use it.'
    I cannot figure out how to do this as I cannot find the RD Session Host Server tool. 
    Can any of you lovely people help me please

    Hello,
    Best option would be to assign the license server by using AD GPO. Youl will need to configure the following:
    Computer Configuration\Administrative Templates\Windows Components\Remote Desktop Services\Remote Desktop Session Host\Licensing
    and define the settings for:
    Use the specified Remote Desktop License Server
    Set the Remote Desktop Licensing mode
    Then assign the policy tho your server.
    regards Robert Maijen

  • Error message: There is a problem accessing one or more files in your iPhoto library. Do you want iPhoto to repair permissions for this library for you?

    I have been using iPhoto for years.  Today when I tried to upload pictures from camera, I received the above error message.  I select "Repair", enter my password, and then a message "iPhoto was unable to repair permissions for the library" appears. I select "Quit" and it closes iPhoto.  Quit is the only option.  What has happened?  I have tried to access the photos via other avenues such as uploading to gmail, and the photos load fine.  I have about 28,000 photos.
    I do not know what version of iPhoto I am using as I am unable to access the software.  I have a iMac OS X (10.7.5).  What should I do?

    Select the iPhoto application in the Applications folder and type Command+i to bring up its Info Window. There will tell the version number. If it's iPhoto 9 or later apply the two fixes below in order as needed: 
    Fix #1
    Launch iPhoto with the Command+Option keys held down and rebuild the library.
    Since only one option can be run at a time start with Option #3, followed by #4 and then #1 as needed.
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    1 - download iPhoto Library Manager and launch.
    2 - click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
    3 - Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu option.
    4 - In the next  window name the new library and select the location you want it to be placed.
    5 - Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments.  However, books, calendars, cards and slideshows will be lost. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

  • When I repair disk permissions I get the following:Repairing permissions for "MacIntosh HD" Determining correct file permissions. Permissions differ on ./Library/Widgets, should be drwxr-xr-x , they are drwxrwxr-x  Owner and group corrected on ./Library/W

    Repairing permissions for “MacIntosh HD”
    Determining correct file permissions.
    Permissions differ on ./Library/Widgets, should be drwxr-xr-x , they are drwxrwxr-x
    Owner and group corrected on ./Library/Widgets
    Permissions corrected on ./Library/Widgets
    Permissions differ on ./System/Library/User Template, should be drwx------ , they are drwxr-xr-x
    Owner and group corrected on ./System/Library/User Template
    Permissions corrected on ./System/Library/User Template
    Group differs on ./usr/bin/fetchmail, should be 0, group is 6
    Permissions differ on ./usr/bin/fetchmail, should be -rwxr-xr-x , they are -rwxr-sr-x
    Owner and group corrected on ./usr/bin/fetchmail
    Permissions corrected on ./usr/bin/fetchmail
    Permissions differ on ./usr/lib/php/build/Makefile.global, should be -r--r--r-- , they are -r-xr-xr-x
    Owner and group corrected on ./usr/lib/php/build/Makefile.global
    Permissions corrected on ./usr/lib/php/build/Makefile.global
    Permissions differ on ./usr/lib/php/build/acinclude.m4, should be -r--r--r-- , they are -r-xr-xr-x
    Owner and group corrected on ./usr/lib/php/build/acinclude.m4
    Permissions corrected on ./usr/lib/php/build/acinclude.m4
    Permissions differ on ./usr/lib/php/build/mkdep.awk, should be -r--r--r-- , they are -r-xr-xr-x
    Owner and group corrected on ./usr/lib/php/build/mkdep.awk
    Permissions corrected on ./usr/lib/php/build/mkdep.awk
    Permissions differ on ./usr/lib/php/build/phpize.m4, should be -r--r--r-- , they are -r-xr-xr-x
    Owner and group corrected on ./usr/lib/php/build/phpize.m4
    Permissions corrected on ./usr/lib/php/build/phpize.m4
    Permissions differ on ./usr/lib/php/build/scan_makefile_in.awk, should be -r--r--r-- , they are -r-xr-xr-x
    Owner and group corrected on ./usr/lib/php/build/scan_makefile_in.awk
    Permissions corrected on ./usr/lib/php/build/scan_makefile_in.awk
    Permissions differ on ./usr/lib/system/libmathCommon.A.dylib, should be -r-xr-xr-x , they are -rwxr-xr-x
    Owner and group corrected on ./usr/lib/system/libmathCommon.A.dylib
    Permissions corrected on ./usr/lib/system/libmathCommon.A.dylib
    Permissions differ on ./usr/libexec/dumpemacs, should be -r-sr-xr-x , they are -r-xr-xr-x
    Owner and group corrected on ./usr/libexec/dumpemacs
    Permissions corrected on ./usr/libexec/dumpemacs
    Permissions repair complete
    The privileges have been verified or repaired on the selected volume
    Then I sometimes get the brown screen that states,You must re-start your computer.
    I have already zeroed out the hard drive and re-installed Panther and the upgrade Tiger disc.
    I repair permissions using the Tiger disc upgrade.
    Can anyone help me with this??

    > I repair permissions using the Tiger disc upgrade.
    One thing to note...  When running Repair Disk Permissions, it is best to run it while started up normally, from your normal startup disk, not from a Mac OS X installation disc.  The only time you should run it while started up from an installation disc is if some problem is preventing you from starting up normally. OTOH, Repair Disk can only be used when starting up from a different disk (such as an installation disc).
    So, I would start up normally, run Disk Utility, and use Repair Disk Permissions on your normal startup disk.
    NOTE:  Repair Disk Permissions often gives alerts messages that can be ignored.  They are more "informational," not serious errors.
    http://support.apple.com/kb/TS1448
    You should still run it periodically.  When you run it, what needs to be repaired has been repaired; consider the rest of it an FYI.  I've never experience a problem, where a Repair Disk Permissions message actually caused a problem.  But, if you ever get an error while running Repair Disk (or Verify Disk), that is usually a serious problem.

  • [SOLVED] Problems in permissions for accessing files

    Hi everyone
    let's say I want to copy a folder to /etc/
    the problems is my user can't copy files anywhere other then it's home it doesn't even have access to any file or folder other then home.
    on the other hand I can use root to view and copy or access but the files that root creates or copies are only for root , I mean other groups or users can't access them .
    I tried changing permissions on files ( chmod , chown) but sometimes it takes a lot of time .
    can you tell me how I can give my own user those permissions ?(permission of copying file to a folder like /etc/ or creating a file in there )
    is there a way to change root's default setting so when i create something with root that file or folder be accessible for others automatically ?!
    sorry if my questions are dumb
    --N3mo
    Last edited by N3mo (2012-11-16 16:49:43)

    You can indeed do that. I have no intention of telling you how.
    What you are trying to do is dangerous and, frankly, idiotic. I am sure that you are no idiot but your strategy is idiotic. (Smart people often do dumb things.)
    If you insist on doing this, you can do it. But you should learn about the security system you are disregarding so that you know the risks. If you do that, you will know how to run those risks if you wish.
    What packages are you downloading? Do you mean pacman's cache? Why do you want your user to have write access there?
    Note that apart from the general idiocy of this strategy, it will also prevent some programmes from working at all because some of them check for sane permissions and refuse to run if they find the permissions are insane.
    I don't even understand why you want to change root's settings. If you are working as root anyway, why do you also want your user to have access?
    You can keep themes etc. in your home directory in appropriate places. Then you have complete control of them. You should not be adding additional themes to the system's collection except by installing packages with pacman.
    Please learn about the way that the file structure, permissions and access controls are supposed to work and the protection that they offer you. (From yourself as well as other people.)

  • How to check whether a file got read permissions for perticular user

    Problem: Let JRE is running with some x as effective user in LINUX then while checking file permission it is checking permission on that file for that x user.
    File f = new File(�file name�)
    if(f.exists())
         System.out.println(�exists�);
    Else
         System.out.println(�does not exists�);
    The above code prints exists only when x user have permissions on that file
    Requirement: I would like to check whether a file got read permissions for particular user i.e. whether y user got permissions on that file.
    Any help is appreciated

    In Linux a user has to have read permission on a file to even see that it exists. As a result, if a user (or a group to which they belong) doesn't have read access to the file File.exists() will return false. Windows which doesn't have as tightly controlled access to files will admit that a file exists whether it can be read or not.
    PS.
    This is proof that I should never answer a question off the top of my head when I haven't had my red bull yet. This is wrong. You will be able to see it if you have read and execute on the directory.
    thumps self in head
    Message was edited by:
    puckstopper31

  • Security Permissions for simple file transfer

    Hey All
    I'm transferring a file using RMI as part of an enhancement. I want to restrict where the file can be transferred to and thus will use a security manager (On the destination object). However the object its being transferred to shares the same JVM with another quite complex application that currently doesn't need a security manager.
    Will I need to set a whole host of permissions for this application even though I only want to restrict file writing?
    I suspect this is the case just want confirmation.

    Hi,
    In the code which receives the file being transferred, you might try calling System.setSecurityManager(new SecurityManager()). Use the configured Java policy to limit where the file can be written. After calling setSecurityManager(), save the file. Before returning to the rest of the application, call System.setSecurityManager(null). Ensure that your code has setSecurityManager permission or this call will fail. If this idea doesn't work, you could simply use a security manager for the whole application, and just grant AllPermission to everything except the file receiving code. Everyone says AllPermission is dangerous, but it's no more dangerous than running with no security manager at all :)

  • Processing data for a remote command failed with the following error message: Error occurred during the Kerberos reponse.

    Hi!
    We have 5 Exchange 2013 servers and when I’m trying to run a script that includes the cmd-let Get-MessageTrackinglog with StartDate = the first of the month and with EndDate = the end of the month I get the following error message after
    a couple of hours. The script is run on the server SERVER01 and goes through the Message Tracking logs of all Exchange servers. I have tried the script on other servers and get the same result.
    Processing data for a remote command failed with the following error message: Error occurred during the Kerberos reponse.
    [Server=SERVER01, TimeStamp = 918/2014 19:32:34]
    For more information, see the about_Remote_Troubleshooting Help topic.
        + CategoryInfo         
    : OperationStopped: (server01.domain.com:String) [], PSRemotingTransportException
        + FullyQualifiedErrorId : JobFailure
        + PSComputerName       
    : server01.domain.com
    I have gone through “about_Remote_Troubleshooting Help topic”, but can’t find anything related to my issue. There is nothing in the Application or the Windows PowerShell log either.
    /Henrik

    Hi Henado 
    Check the time on your Exchange server(s) relative to the DCs and ensure they are in correct sync
    Use another account which is assigned the Organization Management permission and log to to the server run the command in shell and see the results
    Run 
    Add-PSSnapin -Name Microsoft.Exchange.Management.PowerShell.E2010
    Set-Adserversettings -ViewEntireForest $True and then run message tracking command and see the results
    If none of the above helps you may need to remove and re-install the WinRM and see the results
    Good Luck :)
    Remember to mark as helpful if you find my contribution useful or as an answer if it does answer your question.That will encourage me - and others - to take time out to help you Check out my latest blog posts on http://exchangequery.com

  • In-ear for running

    i'm surprised that the Creative in-ear earphone sound so much better than my previous sony in-ear earphone but it's not suitable for running as the wire always tangle, swings and eventually fell out. I am hoping that Creative can engineered a sport series wireless in-ear headphone and/or earphone that is engineered for running.

    You could get something like this
    http://www.amazon.com/iLuv-iEA15BLK-3rd-Party-Headphone-Compatible/dp/B002RL9WDQ
    which provides compatible remote control button.  Then, you can connect any set of headphones, including those Apple In-Ear headphones.

  • Security warning wants to install certification for a remote computer

    Every bootup, before opening anything, i get a Security Warning that a "oracle" certificate wants to install for a remote computer to access my machine. I always click no, having no idea what this is, and I certainly do not want to allow a remote computer to access. I have screen shots of the details but I don't see how to attach a jpg here. I've searched the registry and startup items and nothing resembles my issue. Please note this does not occur when opening IE or FF, but as soon as Windows loads the desktop screen, as if the registry is triggering this cert.

    Many thanks. I am somewhat experienced in editing the registry, and know where all the 'run' and 'runonce' strings are located. I have searched them all. I have also searched the reg for terms used in the security warning. I've run CC cleaner, malwarebytes, norton security, and two online security sites, and they call come back normal. No problems.
    But I reboot and there is the warning, telling me that an Oracle certificate wants to install to enable a remote computer access. Of course I click NO, but I cannot find how to kill the beast.

Maybe you are looking for

  • Not able to load pages more than 3 times continuosly

    Hi JDeveloper 11.1.1.6, BPM/SOA 11.1.1.6, WLS 10.3.6, Database : MS SQL Server 2008 R2 I am not very sure if it is related to BPM or ADF, but it looks more like an ADF error.. We have a BPM process with some human tasks. The human tasks pages are ADF

  • In search of Pattern

    I have a situation here and I havent been able to conceptualize a good solution. Background I have an object that processes changes in things that contribute to changes. And then I have this system of objects. Architecture System Component ComponentI

  • Appleworks to iWork

    Hi I recently purchased a new MacBook and am currently using the free trial of iWork. I have plenty of info backed up on a disc from my old computers. I have just recently tried to access my old documents but some of them open in text edit and are al

  • Some general questions about swing

    Hi, I used to do some swing development couple years back but since then I have been more involved in the j2ee scene. I have lost some touch and was wondering if some of my questions can be answered. I'd appreciate every effort. First of all, I am tr

  • Is there a way to set different volumes for Alerts, phone ringing

    I would like to be able to set different volumes for Alerts, Phone ringing, and incomming mail.  Is this possible?