Limiting access to copyright-restricted material on a web server

Hello Folks,
I know this is close in topic to some other recent discussions but please indulge me here.
I have access to a stand-alone web server running OS X 10.5 server. I need to limit access to some copyrighted material on that web server to staff and students of our institution. There is a LDAP database available. The xserve is not currently running Open Directory. On almost any other Apache 2.2.x server, I would probably use a auth-ldap type module but OS X 10.5 doesn't have this.
I know very little about this topic but it seems my options are to compile a new version of Apache with the required modules or to start Open Directory, connect to the ldap database and create a new group of Auth_Users (30,000 records in the LDAP database)and use Realms.
Is this correct? If both options are valid, are there good reasons for going for one rather than the other? Any good documentation out there?
Thank you for your assistance,
Ross.

I would probably use a auth-ldap type module but OS X 10.5 doesn't have this.
No, it has something better.
Since Mac OS X can plug into a number of directory systems (Active Directory, Open Directory, BSD Files, etc.), Apple included the modauthapple which plugs into that system.
Therefore whatever authentication system(s) your Mac is set to use will filter down into Apache.
So step 1 is to join your Mac to the Authentication system (via /Applications/Utilitiy/Directory Utility)
Step 2 is to enable modauthapple
Step 3 is to use Server Admin to define your realm and choose the group from the directory.

Similar Messages

  • Accessing a csv file on a resin web server

    Hi guys,
    Im trying to access a CSV file on a resin web server using the following:
    File csvfile = new File("http://localhost:8080/FYP/"+WebCourse2+".csv");
    and it does not work
    when I use a local file location as follows, it works fine:
    File csvfile = new File("C:\\QMULFOLDER0203\\FYP\\Database\\"+WebCourse2+".csv");
    Am i doing something wrong?
    Thanks
    tzaf

    the only prob with that is that i use the methods exists() and isFile() to make sure the csv file is available and is a file
    File csvfile = new File("C:\\QMULFOLDER0203\\FYP\\Database\\"+WebCourse2+".csv");
                                                           //File csvfile = new File("http://localhost:8080/FYP/"+WebCourse2+".csv");          
                                                           //out.println("http://localhost:8080/FYP/"+WebCourse2+".csv");
                                                           try
                                                           if (csvfile.exists() && csvfile.isFile())
    can I do this with the URL class??
    thanks
    tzaf

  • Can't access folder on a TC drive via web server

    Here's the setup:
    I got a MBA (10.6) as a simple web server sharing files to a remote computer via VPN. For this, I created a symbolic link to the folders I want to share and dropped it into the root user's library/webserver/documents.
    The remote client accesses the folders via web browser with the internal IP (192.168.xxx.xxx/"folder") of the host (I know, there are fancier ways to do this, but that's how I've been doing it so far).
    Now, I wanted to relocate some of the folders to my TC drive. I did so, however I got an error message saying 'Forbidden, You don't have permission to access xxx on this server'. I tried to change the access permissions of the folders in question on the TC, but no avail.
    I couldn't reach them from the local net either.
    Anyone here, who knows how to solve this problem? Put it another way, is it even possible to access the TC that way?
    Any help is appreciated.
    Thanks!

    Thanks for the answer, but it was not the solution I have been looking for.
    I found a provisional workaround installing MAMP. Dropping the symlink folder in htdocs did the job. However, I'd be glad, if someone out there knew how to do this on the native OS X Apache, since running an additional server is pretty bothersome.

  • Access to Oracle 8i DB using iPlanet web server

    Hi ,
    I have been trying to implement Connection Pooling in my application using the built-in features of iPlanet App server 6.5 . For the same i have made the following entries:
    1. web.xml
    <resource-ref>
    <description>Ptrade Entry</description>
    <res-ref-name>jdbc/ptradeDataSource</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
    </resource-ref>
    2. ias-web.xml
    <resource-ref>
    <res-ref-name>jdbc/ptradeDataSource</ref-ref-name>
    <jndi-name>jdbc/ptrade/ptradeDB</jndi-name>
    </resource-ref>
    3. Also my class tries to ge the context using
    try {
    InitialContext ic = new InitialContext();
    ds = (DataSource)ic.lookup("java:comp/env/jdbc/ptradeDataSource");
    catch (NamingException ne) {
    System.out.println("Naming Exception" + ne);
    Connection dbc = ds.getConnection();
    return dbc;
    However i am getting an javax.naming.NameNotfoundException: can't locate jdbc/ptradeDataSource.
    Could somebody pls tell me what is wrong with my configuration and code?

    Hi Rahul,
    Thanks for bringing this page to my
    notice..But there are still a few doubts which i
    have...
    . I have worked on JNDI so far, so could you please
    tell me where exactly i need to define the namespace
    of JNDI ? In which all configuration files would i
    need to declare the database? more specifically,Would
    i need to make any changes to server.xml?Probably web.xml and server.xml
    2. Could you please share any xml files that would
    give the additions that i need to make in my setup?I don't use iPlanet. Not many people do these days that I know of.
    You could look at the Tomcat docs on how to set up a JNDI data source. That should help.
    3. Would i need to explicitly close the DB
    connections in my code?You should be already. If you're not, you're writing bad code. ResultSets and Statements need to be closed as well.
    %

  • Accessing JNDI fscontext provider .bindings file via Web Server

    The filesystem context provider produces a .bindings file. I've been referencing this over a web server with a URL of the form "file://<host><path>/.bindings".
    This works find with IIS. With Netscape Enterprise Web Server it won't show files with a name starting with a period (.).
    How can I make the fscontext .bindings file visible over a web server?

    Look for a configuration option regarding "hidden files". On UNIX, files beginning with a '.' are considered 'hidden', so I would guess they use that terminology.
    Good luck,
    -Derek

  • Access the files of a web server through a JSP page

    Hello,
    Is it possible to access the files of a an Apache web server, just as you access your local machine.
    Basically i want to access the files of a specific folder, such as http://server:8080/foldername/ ,
    and get a list of all the files stored in there. I know how to do it for the local file system.
    File f = new File(server);
              File files[] = f.listFiles();
              for(int i=0;i<files.length;i++){
              if(files.getName().contains(" ")){
                   System.out.println(files[i].getName());

    This is really dependent on your web server. A web server isn't a shell and the closest equivalent I can think of barring webserver extensions is to configure directory listing to be allowed for the directory you're trying to, grab that html file listing, parse it, and use that to get a list of file names. This is not a very clean solution, so I suspect that whatever problem you're trying to solve, you're going about it the wrong way.
    Assuming Apache: [http://httpd.apache.org/docs/1.3/misc/FAQ.html#indexes|http://httpd.apache.org/docs/1.3/misc/FAQ.html#indexes]

  • How to set-up Guest Client Wireless Access "PIN" with Restricted Access ???

    This is my first time, and, I am not familiar with the rules.
    Is it possible for someone to answer a slightly different question...
    I just bought a TC and hooked it up to my cable modem. I have 3 computers that I want to configure, with the following requirements: WPA/WPA2 security all around, only the 3 computers I have to be allowed use of the TC, and, no listing of the network should appear on remote computers (i.e., a "closed network"). With these basic needs, the three computers I want to be in this network are listed below --- subject to the following ACCESS limitations:
    1. A G4 iMAC (10.5.5), wired to the TC via an Ethernet cable: FULL ACCESS; i.e., shared file access, TM back-ups, HP printer access, internet access;
    2. A MacBook (10.5.5), airport wireless access to the TC: FULL ACCESS, as the iMAC.
    3. A (new generation) PC laptop: VERY LIMITED access --- access only to the internet, so that the TC looks only like a "wireless router." Internet access available at any time of the day or week. It would be good if this client did not have to use any of my passwords, just a "PIN." Also, I do NOT want this PC client to see my printer, and, also, to NOT see my TC base station and NOT have access to my TC/TM disks. To set this up, I entered the PC laptop name and the "MAC" address using the Airport Utility. Then, I selected the "PIN" choice for access, so that this client need not have to ever use or know of any of my passwords. After I selected the "PIN" option, the utility asked me to enter the PC client's PIN. How do I obtain the PC's PIN? This is very confusing to me, so, I apologize to you all (I'm very new at this).
    Hopefully, this TC-only network concern is within the guidelines to be answered.
    Thanks,
    David.

    Dear Smokerz,
    Well, this is where I'm confused. I did use the Airport Utility. I went to the place where it asks for the PIN number. So, I made up an 8-digit number and entered it. I assumed that after I entered the number, it would prompt me to do something with the PC. But, the "Continue" button did not become highlighted. Hence, my confusion. Can you please be more specific as to exactly what I should do using the Airport Utility? The detailed instructions are vague to me, unfortunately.
    Also, with respect to the PC Laptop: I only want it to have access to the internet via the TC (so that the TC acts as a wireless router). And, I want to set up restrictions for limited use of the PC: NO ACCESS to the HP printer, and NO ACCESS to the TM/TC (other than as a wireless router). As before, can you please be more specific as to exactly what I should do using the Airport Utility?
    I must be missing a trivial menu item, so, again, I apologize.
    Thank you,
    David.

  • How to Restrict Material Type in MM01 ?

    *Hi experts,*
    *How to restrict material type ? i wanted to restrict the end-user not to access any other material types than Raw material,Semi-finished goods. it means when end user trying to create material then if he enters other than these two material types then he should get error saying that "your not authorized to select that xyz material type".*
    *I have tried to restrict the object M_MATE_MAR(Material Master : Material type) but am unable to do so. is there any other object which take care of Material types ? did i selected correct object or not??*
    *can anyone help out.*

    Hi,
    You have to make few configuration settings before you actually restrict at the object level. The solution is clearly discussed in the below thread:
    how to restrict material master by material type  t-code MM01
    Hope this helps!!
    Regards,
    Raghu

  • I want to buy Adobe Acrobat XI Pro full version... Limited access vs. full access?

    I want to buy Adobe Acrobat XI Pro full version, but I don't know what the difference is between limited access to online services offered by the full version and the full access that's offered by the month-to-month version. In other words, what would I losing by acquiring the full version, rather than just paying the $19.99 per month and get full access to online services? Can someone help clear this up for me? Thanks!

    Hi dmoynihan0421,
    The retail version of Acrobat costs around US449$ and the monthly subscription is available for a very nominal fee of 19.99$ per month.
    The software is the same and there's no difference between the functionality of Acrobat except that in the retail version you have a serial number to permanently activate the software whereas in subscription Acrobat validates the license very month to check if the subscription is active or not.
    The main difference between the two however is the Adobe Online services.
    When you buy Acrobat XI Pro as a one-time purchase, you get only Acrobat software. No online services are included.
    When you subscribe to Acrobat Pro in select countries, you pay a low monthly fee to get:
    Acrobat XI Pro desktop software, including any upgrades
    The FormsCentral Plus online service for creating and distributing web forms
    The Adobe PDF Pack online service that makes it easy to create, convert, and combine PDFs in your browser
    Acrobat.com for storing and sharing files in the cloud
    The details of these services are as follows:
    Adobe online services extend your Acrobat XI working environment to help you streamline and simplify your projects:
    Adobe FormsCentral makes it fast and easy to create, distribute, and analyze forms. A desktop version of the online service is included in Acrobat XI Pro. Using the FormsCentral desktop app, you can create unlimited PDF forms for free from scratch or by using professional templates. If you subscribe to Acrobat Pro† or open a free or paid account with the FormsCentral online service, you can also use the desktop app to build web forms and manage form distribution and analysis.
    Adobe EchoSign makes it easy to get rid of paper signatures forever. If you open a free or paid account with the service, you can use the Sign pane in Acrobat XI to send documents to others for signature approval and track results online. Recipients can sign electronically without installing software or creating an EchoSign account.
    Acrobat.com lets you store and access your files online from within Acrobat or Reader on any device when you sign up for a free account or subscribe† to Acrobat Pro or Acrobat Standard.
    Adobe PDF Pack lets you create, combine, and export PDFs from any browser or mobile device. PDF Pack is included when you subscribe† to Acrobat Pro or Acrobat Standard — or you can open a paid account.
    Adobe Send is an Adobe online service that lets you send and track large files — including audio and video — without the headaches of email size restrictions. Paid subscriptions are available.
    Regards,
    Rave

  • Limited access after securing

    I have just recently secured my wrt54gs router with a WEP security. My laptop however, when I try to connect, will connect to the network with limited access only. It will not let me onto the internet. I have tried new firmware. Powering off the router and resetting it, but none of it has worked. The 2 house laptops do the same thing. One is on vista the other on xp. The network will connect fine and will allow me to use internet as long as there is no security. Help Please!

    You should really try to NOT use WEP security as it is easy for hackers to break.  Use the WPA / WPA2-Personal as they are more secure.
    You MUST be sure the passphrase / hexkey on EACH computer exactly matches the passphrase / hexkey on the router or they wont talk to each other.  But I think you know that already as you have communication from PC to router.
     Look under the 'Wireless' tab. You may have a setting on the router for Wireless security for "Wireless MAC Filter".  This setting restricts what wireless devices can access your network (and thus the internet).  I believe that if you don't specifically either disable the wireless MAC filtering (allowing EVERYONE on your network), or enable it and allow only YOUR machines (by MAC address) on the router, they won't get internet.  I *think* you might be able to 'see' the rest of your network (because of the hexkeys), but not the internet.
    But you need to use WPA or WPA2 encryption if at all possible.  Then you would have to come up the 26 character HEX key (numbers 0-9 and letters a-f).  Actually, I think it is 13 hex 'digits', each hex 'digit' consisting of 2 characters (0-9, a-f as above).  You MAC address is an example of a hex string.
    Hope this helps ya.
    LB

  • Limited access log ons for others in company

    Is there a way for someone else in my company to log on with limited access to submitted forms only and not be able to alter designs/layouts/preferences, etc?
    Thank you

    You can designate someone as a Contributor, which gives them the ability to Tweet the link to the form, Add/Delete responses from the View Responses tab, export responses and print summary reports.  This level of user can see all of the settings, but cannot change them.  The Design tab shows, but they are not able to make changes to the form.
    If you want to be more restrictive there is the Reader user.  A Reader cannot see the Design, Test or Distribute tabs.  The Options tab only has the Email Notifications item and that is only availible if you have enabled the feature (it is greyed out if you have not selected it).  The View Responses and Summary Report tabs appear, but Reaaders are limited to exporting and creating summary reports.
    -Jeff
    Jeff Canepa
    Software Quality Engineer
    Adobe Systems, Inc.
    [email protected]

  • Restrict material master information at the field level

    We have a requirement to restrict change access to certain material master fields, meaning everyone may be able to view the data but not change it.  Beyond that, those people who are allowed to change the data can only change certain fields...other people can change other fields (on the same material master view).  For instance a simple example would be that someone might have access to change the material description on the basic view but not the material group.  Someone else might have access to change the material group but not the description.  (Again, this is just a scenario that I'm using as an example, not as a real live case.)
    Is it even possible to do this?  I'm guessing it's not but I thought I'd ask the "experts" here before I deliver the bad news to our users.
    Thanks!

    Thank you for the information but I was aware of using screen sequence and field selection however how can I use this to allow certain users access to certain fields but not others.
    For example in the Basic view I want one set of users for the same exact material to be able to change the Base of Unit Measure while the other user can only view this field but not change it however this user can change the other fields in the Basic view.  This sounds like a solution for all fields for a particular materials.  I need to be assign fields within a view to different users.

  • Farmville on Facebook - continued malware message and limited access - full access on internet explorer

    When playing farmville on Facebook - for about the last week I have been getting error messages saying that I have malware and that they are restricting my access to limited access and asking me to run virus software. I have Norton running continuously on my computer. How do I resolve this problem - it does not happen when I use internet explorer.

    Do a malware check with some malware scan programs. You need to scan with all programs because each program detects different malware. Make sure that you update each program to get the latest version of the database before doing a scan.
    * http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    * http://www.superantispyware.com/ - SuperAntispyware
    * http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    * http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    * http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    See also "Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked and Searches are redirected to another site
    if you need additional help, please follow this instruction and checkup your pc
    * http://www.bleepingcomputer.com/forums/topic182397.html

  • Limited Access not working as intended

    In SharePoint 2010 when Limited Access (fine grain permissions) is enabled you could assign permissions for a user on a list item or list etc. SharePoint would then grant Limited Access permissions for that same user on parent scopes. This allowed the user
    to have access to shared resources such as navigation and master pages allowing him to traverse to the target item or list without having access to any other content.
    I can't seem to replicate this in SharePoint 2013. I have the following features:
    SharePoint Server Publishing Infrastructure: Enabled (site collection feature)
    Limited-access user permission lockdown mode: Disabled (site collection feature)
    SharePoint Server Publishing: Enabled on all sites (Site feature)
    If I assign permission to a user for a list. The user can view that list via URL, but cannot view the parent webs/sites. Cannot view the navigation (site scope).
    If anyone has any idea as to why Limited Access isn't working as I hoped it would, I would be very appreciative of any help!
    Regards,
    Damien

    Since Publishing is enabled, the pages are stored in the Pages library and CSS etc is stored in the Style library.  Make sure that users have access to those locations.  If they don't then having limited access won't allow viewing the default
    page and navigation.  I suspect in 2010 you were using sites where the default page was stored directly in the site root folder rather than in a library.  Changes in 2013 moved away from that design.  So limited access normally won't allow display
    of the root site unless you also give users access to the page and any additional required material.
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • Limiting access via fingerprints

    Is it possible, or is there an app that enables me to grant access to my iphone 5s via fingerprints to a limited access profile? i.e if I lend my kids my phone, but I dont want them getting access to data/itunes? or I lwnd my phone to a colleague but dont want him accessing my photos?
    tia
    wayno

    Hey Wayno,
    I'd take a look into Restrictions, and see if any of its features work for you:
    You can restrict access to the following applications and features on the device:
    Safari
    Camera (also disables FaceTime)
    FaceTime
    iTunes Store
    iBooks Store2
    Installing apps
    Deleting apps
    In-App Purchases
    Siri
    AirDrop
    You can prevent access to specific content types:
    Ratings (select the country in the ratings section to automatically apply the appropriate content ratings for that region)
    Music and podcasts
    Movies
    TV shows
    Books2
    Apps
    Siri
    websites
    You can also adjust the time necessary before a password is required to purchase content.
    You can prevent changes to privacy settings, including:
    Location Services
    Contacts
    Calendars
    Reminders
    Photos
    Bluetooth sharing
    Microphone
    Twitter
    Facebook
    Advertising
    You can prevent changes to the following settings and accounts:
    Accounts3
    Find My Friends4
    Cellular data use5
    Background app refresh
    Volume limit
    You can restrict features within Game Center:
    Multiplayer games
    Adding friends
    via: iOS: Understanding Restrictions (parental controls)
    https://support.apple.com/kb/HT4213
    Have a good one,
    Delgadoh

Maybe you are looking for

  • Dropdown listbox getting values from domain

    Hi, I want to create a Dropdown listbox that gets its values from a dictionary domain. I usually get the values from a table but there's a case where I need to get them from a domain. Is it possible? Thanks.

  • Trying to do a System Restore with No Luck :(

    I'm trying to do a system restore on my Satellite L455-S5975 following the directions in the actual user's guide here... Satellite L450 Series User’s Guide I'm starting on page 60 and trying to do the "Recover to out-of-box state" ....Following these

  • Cant edit sql files,help!

    when I edit a sql file,I can't delete anything ,if there is any configuretion that can block the rights?But It's strange to see that ,I can append any words to the files,anybody can help me ,thanks!

  • How to open PDF URL with highlighting search term ?

    Hello I am trying to open a PDF URL in a browser and would like the PDF to open at the page coataining the first hit of a specific term and at the same time highlighting all occurences found in the document. Apparently one way to do it is to add this

  • Language Installation - French

    Hello Group! I need to install/ activate French language on my NW 7.0, ECC 6 system. Please let me know if there is any guide or Note. that describes the procedure. Thanks, Shahid Ahmed.