Retrieve nested LDAP groups independent from the network env. (five different approaches)

Hi all,
I want to retrieve a list of nested LDAP groups per user from the Active Directory. I have been searching google for half a day now, but I'm still not sure what approach to use. I have the following requirements:
* The script/program must run in different network environments (I can't be sure if there is a global catelog or AD DS or AD LDS, etc). I will write my own program.
* The membership info will be used in combination with directory ACL's and must be as complete as possible (global groups, universal groups, local groups, perhaps different domains). Distribution groups are not really necessary, because they are not used in
the directory ACL's.
* It would be nice to support other LDAP implementations than Active Directory using the same code, but that not a hard requirement. I could use another approach to support a different LDAP.
Now I have figured out five possible approaches (info comes from different sites, please correct me if I'm wrong):
1) tokengroups attribute:
- The attribute contains Univeral groups of the forest, global groups from the local domain, domain local groups from the local domain (assuming native mode) and local groups from the local machine.
- Returns a list of SIDs which will have to be translated to group names
- The tokenGroups attribute exists on both AD DS and AD LDS
- For AD DS, the tokenGroups attribute is not present if no GC server is available to evaluate the transitive reverse memberships.
- quote from site "Now that I have had a chance to test it though I can definitely say that tokenGroups WILL get the Universal groups from the other domains even if is NOT a GC. I just did it in my test lab."
- Token Groups cannot be retrieved if no Global Catalog is present to retrieve the transitive reverse memberships.
2) tokenGroupsGlobalAndUniversal
- A subset of the tokenGroups attribute. Only the global and universal group SIDs are included.
- If you want consistent results, read tokenGroupsGlobalAndUniversal that will return the same result no matter which DC you are connected to. However, it will not include local groups.
- other source says "tokenGroups will give you all the security groups this user belongs to, including nested groups and domain users, users, etc tokenGroupsGlobalAndUniversal will include everything from tokenGroups AND distribution groups". Not
sure if this is correct, I think it doesn't contain local groups.
- The tokenGroupsGlobalAndUniversal attribute exists on AD DS but not on AD LDS.
3) LDAP_MATCHING_RULE_IN_CHAIN / 1.2.840.113556.1.4.1941
- Use a recursive search query which returns all nested groups for user at once.
- Returns all groups except for the primary group
- It's a fast approach, see performance test from Richard Mueller:
http://social.technet.microsoft.com/Forums/fr-FR/f238d2b0-a1d7-48e8-8a60-542e7ccfa2e8/recursive-retrieval-of-all-ad-group-memberships-of-a-user?forum=ITCG
- It only works on Active Directory, not for other LDAP implementations
4) Recursive retrieval of the memberOf attribute
- Retrieves all groups except the primary group. (also local groups from other domains??)
- works for all LDAP implementations
- executes a lot of queries to the LDAP, especially if you want to scan all users/groups (perhaps limited on OU, but still)
5) Store memberOf attribute in local database and calculate the nested groups using recursive queries to the local database
- No heavy load to the LDAP
- Needs space to store the user/group info locally (embedded Derby database perhaps)
- Performs fast since the queries are executed locally
- Works for all LDAP implementations
My thoughts on these different approaches:
* appreach 1) I understand that the tokengroups attribute is not present if no GC server is available. In how many network environments is this the case? This option won't work because I want to support different network environments.
* approach 2) The tokenGroupsGlobalAndUniversal attribute exists on AD DS but not on AD LDS. Same here, in how many network environments is this the case? I don't think I can rely on this approach.
* approach 3) Seems to be a good option. How will it perform compared to approach 5 (local recursive queries)? Won't work for other LDAP implementations
* approach 4) I don't think I want to execute that many queries to the LDAP. I can limit the scan on OU, but still companies can have thousands of users and groups.
* approach 5) Perhaps the best approach. I want to store user/group info locally for fast filtering / reporting (only group DNs, user names, databse id's and membership info as id-id pairs). I only need the memberOf attribute of users and groups, recursive
loops are done locally. It will work for all LDAP implementations.
What do you guys think? I'm not a network admin, but a programmer, so I'm no expert in network setups and when to use AD DS or AD LDS. The thing is I want to use this code at different customers without knowing their network setup (except for the domain name(s),
LDAP host/port and bind user to connect to LDAP).
Thanks a lot!
Paul

I want to write a tool that can answer questions like "what users from group ABC have delete permission in all the (sub)directories of server MyDataServer?". This results in a list of directories and users and includes nested group membership. So it's about
effective permissions. That's why I want all information in a SQL database so I can answer these questions with a single query in milliseconds. Otherwise, in order to answer these questions, I would have to get all members from group ABC and determine the
nested groups for all these members (which can be thousands) for every report. Using a SQL database I can retrieve this information once a night for all the members.
But I guess I will use the LDAP_MATCHING_RULE_IN_CHAIN syntax which gives me all nested groups for a member and should work for all AD installations from W2K3 SP2 and higher. When I want to support other LDAPs I will use another method for that specific
LDAP.
Again - note that this question has nothing to do with LDAP or AD.  It just asks what group has permissions on what resources.
I really think you would do well to spend time understanding the NTFS and its security along with how we sue security in Windows.  By assuming this has something to do with AD you are making it a bigger issue than needed.  AD is a repository for
accounts and trusts and manages authentication and security group membership.  All file security is managed by the OS that hosts the files and not by AD.  Users are not normally granted access to resources through direct inclusion in the DACL but
are given access through membership in one or more groups.  Loading AD into a SQLL database will not help you.
¯\_(ツ)_/¯

Similar Messages

  • Prompt if you please, to me are necessary programs making it possible to draw off music from the network VK, program- analog Ward, program- analog of adob Flesch pleer. if there are free, the thanks a lot

    prompt if you please, to me are necessary programs making it possible to draw off music from the network VK, program- analog Ward, program- analog of adob Flesch pleer. if there are free, thanks a lot

    Hi Christoffer,
    Thanks for the reply, excellent information! I was a bit struggling with the availability of the tokenGroups attribute, but your info makes it pretty clear.
    Do you also happen to have experience with the LDAP_MATCHING_RULE_IN_CHAIN method to retrieve nested groups? It seems to perform pretty well, retrieves all nested groups using the memberOf attribute and works on all AD environments (W2K3 SP2 or higher).
    Richard Mueller did a performance test using both methods:
    http://social.technet.microsoft.com/Forums/fr-FR/f238d2b0-a1d7-48e8-8a60-542e7ccfa2e8/recursive-retrieval-of-all-ad-group-memberships-of-a-user?forum=ITCG
    User with 14 groups:
    Method                      Groups   Ave. (10 runs) 1 standard deviation
    LDAP_MATCHING_RULE_IN_CHAIN    11     0.1664 sec.   +/- 0.0325 sec.
    tokenGroups                    13     0.0895 sec.   +/- 0.0038 sec.
    Recursive memberOf             11     0.0774 sec.   +/- 0.0021 sec.
    User with 308 groups:
    Method                      Groups   Ave. (10 runs) 1 standard deviation
    LDAP_MATCHING_RULE_IN_CHAIN   305     0.2664 sec.   +/- 0.0151 sec.
    tokenGroups                   306     1.2147 sec.   +/- 0.0271 sec.
    Recursive memberOf            305     1.2813 sec.   +/- 0.1190 sec.

  • How can i do a RMAN backup of my database from the network ?

    i'm using oracle 8i.1.7.3 with win server 2003
    i want to know how can i do a RMAN backup of my database (sever machine A) from the network.
    i'd like to save the backup in another machine (the same LAN, the same OS ).
    to do that i've mapped a logical device in my comptur (z):
    when i run rman command i got this error:
    channel ORA_DISK_1: starting piece 1 at .......
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03009: failure of backup command ON ORA_DISK_1 channel at .......
    00
    ORA-19504: failed TO CREATE file "\\remote\save\"
    ORA-27040: skgfrcre: create error, unable to create file
    OSD-04002: unable to open file
    O/S-Error: (OS 123) The filename, directory name, or volume label syntax is inco
    rrect.

    Hi,
    ORA-19504: failed TO CREATE file "\\remote\save\"make sure you have created this directory and change it's ownership (chown command)to oracle.
    also make sure that oracle user has permission to write to this direcotry (chmod command)
    hope this helps
    cheers, walrus

  • Weird: Backup file works fine from the network but not when moved into sandbox environment

    We have a valid full backup of a database. We know it is valid, we have restored it twice from the network with no problems, but we do not have access to the network location from our sandbox environment.
    The .bak file is sizable at about 9GB. The .bak file resides on our internal network, in a SAN drive. No problems there. When we copy the file from there into a sandbox environment to attempt the restore in the sandbox environment it gets corrupted. We've
    tried three different times and all three different times it gets corrupted. First time we copied the file over to the sandbox the restore went up to 50% and failed. The second time we copied the file again and attempted the restore again it failed at 70%.
    The third time it failed at 60%. The error message we get during the restore is "...Read on ... failed: 13(The data is invalid) Msg 3013, Level 16, State 1, Line 1 Restore database is terminating abnormally."
    Now some background here. To move the file our network team is doing this: they have this .vmdk file that they mount out in our production environment (which has access to the network location where the .bak file is), copy the file into the drive, then move
    the .vmdk file into the sandbox environment(which does not have access to the network location), mount the drive in the sandbox environment, and then I have access to the .bak file from within the sandbox environment.
    Something in the process of using the .vmdk file to move the .bak file from production into the sandbox is causing the file to get corrupted.
    Any thoughts? Has anyone seen this before? Any idea? TIA,
    Raphael
    rferreira

    Original server that generated the .bak file:
    Microsoft SQL Server 2008 R2 (SP1) - 10.50.2550.0 (X64) 
    Jun 11 2012 16:41:53 
    Copyright (c) Microsoft Corporation
    Enterprise Edition (64-bit) on Windows NT 6.1 <X64> (Build 7601: Service Pack 1) (Hypervisor)
    Server where I CAN restore the .bak file from the network location (not inside the sandbox):
    Microsoft SQL Server 2012 (SP1) - 11.0.3128.0 (X64) 
    Dec 28 2012 20:23:12 
    Copyright (c) Microsoft Corporation
    Enterprise Edition (64-bit) on Windows NT 6.1 <X64> (Build 7601: Service Pack 1) (Hypervisor)
    Server inside the sandbox where I get the error when attempting to restore the backup:
    Microsoft SQL Server 2008 R2 (SP1) - 10.50.2550.0 (X64)   Jun 11 2012 16:41:53   Copyright (c) Microsoft Corporation  Enterprise Edition (64-bit) on Windows NT 6.1 <X64> (Build 7601: Service Pack 1) (Hypervisor) 
    rferreira

  • Unable to remove the redundant group header from the bottom of page

    Hi,
    In one of my projects in I am facing a problem.
    I need to display the details of all available products of the company. While displaying the details, I need to group the products based on some criteria (like type of product, release date) and the grouping is upto 4 level grouping. Grouping criteria can se said as, I need to firstly group all the products based on the type, then on the Release Date and then on two of the client specific values on the Product.
    Along with this, the view of product details is a thumbnail view (Image on top with all details below that line after line) due to which I need to display multiple (5) products in one row.
    The problem which I am facing is:
    The most important criterion for the customer is that there should not be any wastage of space.
    Secondly, they also donu2019t want to see partial data like only the header data in one page and the Product related Data (Image and Info) on the next page.
    In my case, when first page has insufficient space for the next grouped products, it simply displays the group header on the first page. On the second page, it again displays the group header along with the data.
    For reference, images are available at:
    Image1: http://farm4.static.flickr.com/3454/3224626688_aa3cfb8236_m.jpg
    Image2: http://farm4.static.flickr.com/3373/3224626782_0501cf566f_m.jpg
    My requirement is to remove the redundant group header from the first page as it does not make sense without having any data below it.
    I have tried the following options:
    1. I tried to apply setting "Keep Group Together" on the group and "Repeat Group Header On Each Page". But when I apply this, when my second group has more than 5 products (two rows of data) and space on first page can accommodate only 1 row of data, it moves the data on to the second page instead of keeping the 1st row on first page and 2nd on second page. This solution is not acceptable to the customer as it wastes space.
    2. If I remove setting "Keep Group Together" on all the groups, but keep the "Repeat Group Header On Each Page" and remove the "Keep Object Together" in the details section, I can save space. But this is not acceptable to the user as it leaves dangling headers (Orphaned Header Information).
    Need some pointers to overcome this issue as it is very critical for me.
    Thanks in advance,
    Vibhav Agrawal

    Thanks Raghavendra for your reply.
    These solutions provided on the link are not useful for me because of the peculiar layout of my report.
    In my report I am supposed to show details of multiple items (upto 5/6) in a single row.
    All solutions suggest about adding additional header (below group header) and use the formula to use that header to put the data for initial first object and details section for the subsequent objects.
    But, since i need to display multiple items in same row...and data cannot be set as 'format with multiple columns' in the header, hence this solution does not work for me
    Thanks,
    Vibhav Agrawal

  • Error while executing SSIS package - Error: 4014, Severity:20, State: 11. A fatal error occurred while reading the input stream from the network. The session will be terminated (input error: 109, output error: 0)

    Hi,
    We are getting the following error when running our SSIS packages on Microsoft SQL Server 2012 R2 on Windows Server 2008 R2 SP1:
    Error: 4014, Severity:20, State: 11.   A fatal error occurred while reading the input stream from the network. The session will be terminated (input error: 109, output error: 0)
    SQL Server Data Tools and SQL Server Database Engine reside on the same server.
    We tried the following:
    Disabling TCP Chimney Offload
    Installed Windows Server 2008 SP1
    Splitting our SSIS code into multiple steps so it is not all one large continuous operation
    The error occurs during a BulkDataLoad task.
    Other options we are investigating with the engineering team (out-sourced, so delayed responses):
    Firewall configurations (everything is local, so this should not make a difference)
    Disabling the anti-virus scanner
    Are there other things we can try?
    Any insight is greatly appreciated.
    Thanks!

    Hi HenryKwan,
    Based on the current information, the issue can be caused by many reasons. Please refer to the following tips:
    Install the latest hotfix based on your SQL Server version. Ps: there is no SQL Server 2012 R2 version.
    Change the MaxConcurrentExecutables property from -1 to another one based on the MAXDOP. For example, 8.
    Set "RetainSameConnection" Property to FALSE on the all the connection managers.
    Reference:
    https://connect.microsoft.com/SQLServer/feedback/details/774370/ssis-packages-abort-with-unexpected-termination-message
    If the issue is still existed, as Jakub suggested, please provide us more information about this issue.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Flex 2 14 periodically disconnects from the network on Wi-Fi.

    My brand new Flex 2 14 periodically disconnects from the network on Wi-Fi.  This is pretty unacceptable.  Other PC's in the house are not experiencing the problem, so it's difficult to blame the router.,
     I have a Broadcom 802.11N Network Adapter device with driver version 6.30.223.201, which is the latest on the Lenovo site.  I am running Windows 8.1, as provided on the system.  I've installed Windows updates and some other software, but have not otherwise changed the OS.
    I have seen other users with similar problems, but no fixes for Broadcom.
    Any ideas anyone?  May be a "back to lenovo" thing.
    Moderator Note; subject edited
    Solved!
    Go to Solution.

    I called Lenovo Tech Support and they had me try something that seems to be working.  Apparently there are *two* drivers available for the Broadcom 802.11n Network Adapter: one published by Broadcom, one published by Microsoft.  My system *was* configured to use the Broadcom driver, Lenovo Tech support had me change to use the Microsoft published driver.  I have not had a disconnect since.
    To change the selected driver:
    0. Make sure you have the latest drivers from the Lenovo support site installed.
    1. Launch "Device Manager"
    2. Expand "Network adapters"
    3. Right-click on "Broadcom 802.11n Network Adapter" and select "Properties".
    4. In the properies window, select the "Driver' tab and click "Update Driver..."
    5. In the update window, select "Browse my computer for driver software"
    6. On the next page, select "Let me pick from a list of device drivers on my computer"
    7. On the next page, you should have a choice of selecting from one of two drivers.  Select the one from *Microsoft*.
    8. Click "Next" and complete the driver install.

  • SOLUTION to your HP printer going offline and/or constantly disconnecting from the network

    If you are having a problem printing, scanning or faxing with any HP Printer because of it going offline and constantly disconnecting from the network, here is the fix!
    I figured this all out after many unsuccessful attempts with HP Support, my Internet Service Provider and various troubleshooting tasks including reinstalling HP software over and over and over.  Well, through self teaching on the internet and 6 grueling months of research, I FINALLY figured it out.  OMG!  I am a Paramedic (not IT) and somewhat computer literate but by far no expert.  I here all of you!  Nobody seems to have the answer but I am 97% sure that I do.  Either way, please reply back and let me know that this did in fact work for you!  :-)   
    It doesn't matter if your printer is installed wirelessly or wired.  Don’t worry about reinstalling your software, no recycling your printers’ power or your Router/Modem.  The reason your printer is unstable on the network and continues to either go offline or disconnect from the network is NOT because the software is glitched, it’s not a firewall problem per say, it’s not a router problem, there isn’t a problem with your power cord, it’s because most networks use a “range” of IP addresses and for security purposes, it sort of “cycles” the various devices’ IP addresses to decrease the chance of an attack.  A printer is no threat but the “network” doesn’t possess human intelligence so it doesn’t know this.  Below are my step by step instructions on how to basically make your printer hold its IP address (static IP) instead of changing back and forth through a cycle therefore dropping your printer off the network or disconnecting. 
    Funny, if you are someone who has had items in your print cue, they won’t print, and you turn your printer off and then back on and suddenly your documents print…well, join my club.  The reason this works is because when you first turn on the printer, it starts with the same IP address before it cycles.  If you are someone who sits there for a while and suddenly your documents print without you changing anything…this is because through the IP cycle change, it hits your printers IP address and the network will allow it to print.  Not very funny, I know.  It took me forever to figure out why my printer would print sometimes but not all the time.  Since I figured this out, I can SCAN, PRINT and use all of the features of my installed HP software such as HP Solution Center, Photosmart Essentials.   
    On your printer, go to menu/setup/network and press OK.  Inside the network menu, print a "network configuration page" so you can see the IP address and other settings for your printer.
    Now, go back to main menu on your printers’ screen.  Or you can go to your web browser and type in the IP address using the decimals too and this will take you to your printers’ web page.  Choose: setup\network and press OK.  Look for IP settings and press OK. Choose "manual" instead of "automatic". Enter the IP address there manually as well as the default gateway which you can see on the network configuration page that you printed earlier.  Note: If you manually set the printer's IP, make sure that it is outside of your router's DHCP range. Otherwise you may run into an issue with duplicate IP's on your network. (If you don’t know how to do this, write back and I will explain).  Don’t forget to click “save changes”.  Now, restart your computer and print anything you want.  :-) 
    A trick I often use with printers in DHCP networks:
    In Printers and Faxes right click on the printer and select “properties”.  Click add a new port.  Choose standard TCP/IP port configured to the printer host name. Read the hostname from the printer's network configuration sheet.
    Using my method means that you always connect to the printer even if its IP changes (which may happen with dynamic configuration). This does not jeopardize your network security.  It just tells your printer to stay put and stop traveling the IP address highway.  :-)
    This question was solved.
    View Solution.

    The DHCP range is the range of IP addresses the router hands out automatically as devices join the network.  The DHCP range is determined by the router and each brand has a range set at the factory (that can be changed by you).
    Your D-link's DHCP default range is 192.168.0.100 to 192.168.0.199.  So, outside the DHCP range is .2 to .99 and .200 to .254.
    Attached is a handy cheat sheet.
    You can change this range by entering the router's settings page - type the router's IP address into a browser, enter the login info and navigate to the DHCP settings area (varies based on router, hunt around).
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP
    Attachments:
    Router Facts.pdf ‏25 KB

  • Oracle Personal Edition (disconnected from the network)

    Hello everyone,
    I have oracle PE 10.1.0.2 installed on my laptop (running windows xp pro sp2). I have the laptop connected to the network most of the time. Yesterday, I was trying to access my database while I am in the coffee shop but I couldn't. I was getting a "no listener" error from the application I am using. I took a look at the running services and I found out "OracleDBConsoleorcl" and "OracleServiceORCL" did not start. I tried to start them. But I was getting a type 2 error. tried to reboot. no good
    When I connected my computer to network, I was able to connect to the database from my application and from the enterprise manager.
    I searched this forum and I found out that I need to configure a loopback adaptor if Oracle DB is installed on a DHCP computer. In my case, I am disconnected from the network. Would a loop back adaptor fix the issue? Would it cause any problems when I connect back to network? In another word, would the database listener and OracleServiceORCL services work if I am connected and disconnected from the network?
    Thanks for the help

    I do not have Personal Edition, but if you can a check, make a copy/backup, and then change the entries in $ORACLE_HOME\sysman\config
    $ORACLE_HOME\sysman\config\emoms.properties $ORACLE_HOME\sysman\config\emd.properties
    and any httpd configuration files in that directory.

  • How to resolve "The server is unavailable and could not be accessed. The server is probably disconnected from the network." error in Sharepoint serach crawl.

    Hi all,
    I have created a content source in Search service application for a particular site collection "http://spwebapp/sites".
    I performed reset crawl index of Search service application and then performed a full crawl.
    But i get errors on running crawl on this content source for most of the files. The error is "The server is unavailable and could not be accessed. The server is probably disconnected from the network." Though the site is accessible.
    But before performing reset index the crawl was working fine on this content source. Crawl is working fine for other site collections. Only one site collection is facing this problem. Please let me know if what I can do to resolve this error.
    Thanks in advance.

    Are you seeing any error messages in the URL related to the Gatherer?  And in your content source, are there any site URLs that are no longer active or do you have any crawl rules set up that might be affecting access to the site collection?
    I've seen this happen for a variety of reason, SSL issues, proxy issues, permissions issues.  The Eventvwr and ULS logs should help you narrow down the real problem.
    Sometimes this is an issue because the indexer and the site are sitting on the same box, you could try doing a disable loopback check to see if that resolves the issue and if it does then go through the hassle of setting up a specific LSA :
    http://iedaddy.com/2009/04/sharepointdisable-loopback-check/
    ieDaddy
    Blog: http://iedaddy.com
    Twit: @iedaddy

  • Oracle VM 3 - only one virtual host accessible from the network (DELL R410)

    Hi,
    I have installed Oracle VM 3.0.3 and created the network for Virtual hosts. After installing two systems on the server only one is accessible from the network at a time. The second one is not.
    Have no idea how e to enable the second host to reach a network.
    Maby You have some idea?
    Thanks,
    Jarek

    Hello!!
    I'm not an expert but /OVS/Pool should be the directory naming of OVM 2.x, replaced by /OVS/Repositories/REPOS_ID in OVM 3.x
    The "wierd directory name" it's the unique ID that OVM assigns to Repository, infact if you go to VM Manager in Repository tab and edit your current repository you will see this ID: 0004fb0000030000839f2d2faa5014c3
    Under "0004fb0000030000839f2d2faa5014c3" folder, as you noticed, there are the classic folders ISO, VirtualDisk, VirtualMachine, etc. where files are placed.
    I've never tried to import a pre-packaged template from Oracle but I would try importing it as an assembly from http/ftp! ;)
    Hope this helps.
    Greets!

  • How to make the audio track independent from the video track?

    Can someone remind me how to make the audio track independent from the video track? My memory just went blank. Must be the age.
    Thanks

    Hi -
    Select the clip in the timeline.
    Type Command + L or go to the menu Modify > Link to toggle it off.
    MtD

  • How to play  received voice chunks from the network ?

    How to build java media player that will play received voice chunks from the network , the application should play all received chunks continuously with no time span .

    i have written the below code :
    Player player = null;
            int i = 0;
            try {
                for (i = 0; i < 20; i++) {
                    player = Manager.createPlayer(new URL("file://c:/xtmp/1-" + i + ".wav"));
                    player.start();
            } catch (IOException ex) {
                System.out.println(i);
                Logger.getLogger(Main.class.getName()).log(Level.SEVERE, null, ex);
            } catch (NoPlayerException ex) {
                Logger.getLogger(Main.class.getName()).log(Level.SEVERE, null, ex);
            } catch (Exception ex) {
                Logger.getLogger(Main.class.getName()).log(Level.SEVERE, null, ex);
            } finally {
                player.close();
            }but It doesn't work , although the file path is correct

  • Cannot start WAS when disconnected from the network

    Hi, I have recently installed NW2004s (Developer Workplace) on my laptop, 1.5 G RAM, Windows xp. The WAS will not start when I am disconnected from the network b/c it is looking for the
    <host>
    sapmnt
    .... folder. I want to be able to run the WAS when disconnected from the network. I'd like to change this setting to point to the local usr/sap/... drive. I found the properties file in the bootstrap component where you can change it, but can't find it in the dispatcher or server. The logs are showing the following:
    #1.5#000F1FCD2E4900000000001200001EA800040E5C5AD7E178#1141689730714#com.sap.engine.core.configuration##com.sap.engine.core.configuration#######Thread[Thread-1,5,main]##0#0#Error#1#/System/Server#Plain###Error occurred: Secure Store lib Dir does not exist
    <host>
    sapmnt
    J2E
    SYS
    global
    security
    lib
    engine
    =======================================================
    com.sap.engine.frame.core.configuration.ConfigurationException: Error occurred: Secure Store lib Dir does not exist
    <host>
    sapmnt
    J2E
    SYS
    global
    security
    lib
    engine
         at com.sap.engine.core.configuration.impl0.ConfigurationManagerImpl.initInternal(ConfigurationManagerImpl.java:138)
         at com.sap.engine.core.configuration.AbstractConfigurationManagerImpl.init(AbstractConfigurationManagerImpl.java:169)
         at com.sap.engine.core.Framework.loadSingleManager(Framework.java:476)
         at com.sap.engine.core.Framework.loadManagers(Framework.java:246)
         at com.sap.engine.core.Framework.start(Framework.java:180)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.engine.boot.FrameThread.run(FrameThread.java:58)
         at java.lang.Thread.run(Thread.java:534)
    Anybody know where this
    <host>
    sapmnt
    ... path is set?
    Thanks in advance!!

    Hi David,
    did you try to run the WAS, using the Ms Loopback Adapter?
    Regards
    Gregor

  • WRT54GX2 does not pick up time from the network...

    I have a WRT54GX2 running firmware 1.01.14 and it does not pick up time from the network. I have PacBell (now AT&T) as an ISP and a DSL link. My old Netgear router picks up the time immediately. I am trying to figure out if I have a defective unit or if this is a firmware bug. Without the time, I can not use any of the scheduling functions, nor measure uptime.
    Does anyone have this router with the time working? I have set the appropriate time zone.
    Thanks,
    Martin

    mneiman wrote:
    Thanks for you ideas.
    The backup file appears to be binary. However in searching through it I did see 3 time related text strings, namely: clock.stdtime.gov.tw, time-b.nist.gov and time.nist.gov. I can successfully ping clock.stdtime.gov.tw and time.nist.gov. This reinforces my belief that my ISP (AT&T nee PacBell) is not blocking access.
    however ntp works on TCP port 123. ping works on udp 7 afaik. if your old netgear works i guess this is a router problem.
    have you reset the router yet? afaik press reset button for 10 seconds.
    you will however loose all settings and need to enter them again. it may however fix the issue.Message Edited by linksysinfo on 07-09-2006 03:09 AM
    Regards Simon
    NAS: TS-459 Pro - 3.6.1 Build0302T - 4 x 1TB Samsung HD103SJ : EXT4 - APC ES 700VA UPS
    QPKG: WordPress 3.4, TwonkyMedia 6.0.39 QPKG - Zenphoto1.4.2.1 [7802] - phpMyAdmin v3.3.10
    Network: Netgear DG834G V4.01.40 - DGTeam Rev. 0849 -> Cisco RV220W 1.0.4.13, Cisco SLM2008, Dlink DSM-520, Xbox360

Maybe you are looking for

  • From MAC to windows

    Hi, I just loaded all of my songs onto my new iPod using my Mac Powerbook. I also loaded all of the same playlists onto my wife's new iPod Nano from my Powerbook. She doesn't use Mac, she uses Windows. Now, she wants to add songs to her Nano from her

  • SQL*LOADER and date formatted data

    Hi there, I don't want to load complex things in my table - just a simple date.... The control file is: load data infile 'c:\data\mydata.csv' into table test_table fields terminated by "," optionally enclosed by '"' ( sampledate, name ) The mydata.cs

  • About Adobe Interactive Form license price

    Hello experts, We need to develop some Adobe Interactive Form with Netweaver Developer Studio . I know that if customer create their own Adobe  interactive forms then they need to purchase the license. How much the license of Adobe Interactive Form ?

  • Since installing os x and appletv my wireless network changes

    my wireless connection worked fine until installed os x and connected my appletv...my orginal setting was configured to linksys....now i can only connect to my network by changing to apple network 3107c. By doing this, I can't connect with my appletv

  • Query By Example -- Audio File

    Can someone please tell if Intermedia Java API has any methods or interfaces that supports QBE ? What i am trying to achieve is , store audio records in database and let user give an option to input an audio file and then let search for audio records