Filesharing on Server 10.8

I have several dozen group and user shared folders - everyone is able to connect to all the folders they need access to - but anyone connecting sees every share there is in the Go window whether they can connect to it or not
If the click on folder they don't have access to it says that the share doesn't exist.
Permissions for "Others" are set to none
What can I do to "hide" the folders from users who don't have permission to access them?
Thanks!

Robert - without a bit more detail, I'd tell you the following: if you want explicit "ownership" privileges for only one user, and no other user/s to see files/folders, then the easiest way is to use the console and two commands: "chown" and "chmod".
>chown will change ownership of a file, and all subordinate contents explicitly to a single user. This can be useful when you want to conceal anything from others. Used in conjunction, is "chmod" which changes the permissions. For instance:
>chown -R "owner" " file
>chmod -R 700 file (this will allow only the specified owner to Read, Write or Execute any file contained. Variations are "Full Control" for Owner, Read for Group, Nothing for Others. 755 will set to Full, R/W, R/W. You can do this through the interface if you want to point and click a lot, but console and CLI is fastest.
Maybe that will help-

Similar Messages

  • Problem form client windows vista in filesharing OSX server 10.5.7

    I have a technical question
    I ve a zip file in OSX filesharing and fail to
    unzip from a windows vista pc in the same network folder
    authorizations are OK
    The unzip on my desktop, it is ok
    The problem there is only Windows Vista and Linux Ubuntu server 9.4
    With Xp System is OK
    The Autentication is with Active Directory
    I hope help Me
    Alex

    There may be many causes for unzip not working within the share.
    Very likely it is a question of permissions within the folder where you try to unzip your ZIP-file.
    Possibly you are not allowed to write. Or there may be ACLs active either on the entire share or the folder in question which may disable writing into directories (that is disabling creating files) or disable writing to files (that is saving files).
    Thus with the information given, you'll probably won't see a satisfying answer for your question here

  • AFP disconnects users, file opening problems, abnormal exits and bus errors

    Hi all
    Since a few weeks we have been having problems with AFP file sharing with OS X Server 10.5.5 (Simple config)
    Several times a day the server stops responding to save commands (especially with Adobe software) or abruptly disconnects users. The console error most frequently associated with these crashes is:
    "com.apple.launchd[1] (com.apple.AppleFileServer[3674]) Exited abnormally: Bus error"
    sometimes starting server preferences we get the following error (roughly translated from French):
    An Error has occured on the server while executing a command.
    the error "CANNOTFSGETVOLINFOERR" occured while executing a command of type "getVolumeList" in the module "servermgr_filebrowser"
    I'm past hoping for a quick fix but any pointers or ideas of what to look for would be greatly appreciated.
    Robin Lambell

    I just want to make sure I have the steps clear.
    disable the automounts in 'Filesharing' in Server Admin
    I disable the automounts in the File Sharing tab of Server Admin by clicking on each share point and clicking the Unshare button.
    then remove the sharepoints
    How? Isn't that automatic? I chose to unshare a share point and it disappeared from the list. Is that enough?
    Then in Terminal.app do:
    sudo rm /private/var/etc/AFP.conf
    Then:
    sudo rm /Library/Preferences/com.apple.AppleFileServer.plist
    Then in Server Admin, restore the sharepoints back and automounts. Then restart the AFP service.
    I restore the share points by manually choosing to share each of them again? I'll have to redefine each one, won't I?
    Thanks for the help. I haven't done this before and I want to make sure I'm doing it right.

  • Reporting Server Web Service- (FileShare) CreateSubscription: The value of parameter 'ExtensionSettings' is not valid

    I've tried to create a subscription by Web Service api calling the method CreateSubscription and I've an error: 
    > The value of parameter 'ExtensionSettings' is not valid. --->
    > Microsoft.ReportingServices.Diagnostics.Utilities.InvalidParameterException:
    > The value of parameter 'ExtensionSettings' is not valid.
     Below is my code:
    ReportingService2010 m_RptManager = new ReportingService2010();     m_RptManager.Url = "<path>/ReportService2010.asmx";     m_RptManager.Credentials = GetCredential();     string filename = Path.GetFileName(m_FileName);     string path = Path.GetDirectoryName(m_FileName);     ParameterValue[] extensionParams = new ParameterValue[7];     for (int i = 0; i < extensionParams.Length; i++)              extensionParams[i] = new ParameterValue();     extensionParams[0].Name = "FILENAME";     extensionParams[0].Value = filename;     extensionParams[1].Name = "FILEEXTN";     extensionParams[1].Value = "False";     extensionParams[2].Name = "PATH";     extensionParams[2].Value = path;     extensionParams[3].Name = "RENDER_FORMAT";     extensionParams[3].Value = m_Format;     extensionParams[4].Name = "WRITEMODE";     extensionParams[4].Value = "Overwrite";     extensionParams[5].Name = "USERNAME";     extensionParams[5].Value = m_UserName;     extensionParams[6].Name = "PASSWORD";     extensionParams[6].Value = m_Password;     ExtensionSettings extensionSettings = new ExtensionSettings();     extensionSettings.Extension = "Report Server FileShare";     extensionSettings.ParameterValues = extensionParams;     MinuteRecurrence pattern = new MinuteRecurrence();     pattern.MinutesInterval = 1;     ScheduleDefinition schedule = new ScheduleDefinition();     schedule.StartDateTime = DateTime.Now;     schedule.EndDateSpecified = false;     schedule.Item = pattern;     XmlSerializer serializer = new XmlSerializer(typeof(ScheduleDefinition));     string dateMatch;     using (StringWriter sw = new StringWriter())            {                serializer.Serialize(sw, schedule);                dateMatch = sw.ToString();            }     string reportPath = "MyReport";     string eventType = "TimedSubscription";     string description = "description";     m_RptManager.CreateSubscription(reportPath, extensionSettings, description, eventType, matchData, GetReportParameters(reportPath));
    Where have I wrong? 

    Thank for reply, I checked my parameter and I seem that (maybe) is  ok below is my parameters, do you see anything of wrong?
    <?xml version="1.0" encoding="utf-16"?>
    <ExtensionSettings xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <Extension xmlns="http://schemas.microsoft.com/sqlserver/reporting/2010/03/01/ReportServer">Report Server FileShare</Extension>
    <ParameterValues xmlns="http://schemas.microsoft.com/sqlserver/reporting/2010/03/01/ReportServer">
    <ParameterValue>
    <Name xmlns="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices">FILENAME</Name>
    <Value xmlns="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices">pippo.xls</Value>
    </ParameterValue>
    <ParameterValue>
    <Name xmlns="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices">FILEEXTN</Name>
    <Value xmlns="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices">False</Value>
    </ParameterValue>
    <ParameterValue>
    <Name xmlns="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices">PATH</Name>
    <Value xmlns="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices">\\10.4.44.253\D$\Data Applications\DBP\Output\DOMAIN\User\14</Value>
    </ParameterValue>
    <ParameterValue>
    <Name xmlns="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices">RENDER_FORMAT</Name>
    <Value xmlns="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices">EXCEL</Value>
    </ParameterValue>
    <ParameterValue>
    <Name xmlns="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices">WRITEMODE</Name>
    <Value xmlns="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices">Overwrite</Value>
    </ParameterValue>
    <ParameterValue>
    <Name xmlns="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices">USERNAME</Name>
    <Value xmlns="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices">domain\user</Value>
    </ParameterValue>
    <ParameterValue>
    <Name xmlns="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices">PASSWORD</Name>
    <Value xmlns="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices">xxxxxx</Value>
    </ParameterValue>
    </ParameterValues>
    </ExtensionSettings>
     

  • Server Time Machine Needs Fileshare Mount

    I've got a Server set up as a Time Machine host. I can see it in the Time Machine preferences on clients if it's volume is mounted via fileshare first, but if I dismount it, I can't see it anymore.
    Once it's selected as the backup source, the client will automatically mount the share during it's regular backup. However, now that I'm trying to restore from backup, I boot from the install disk, go to restore system from backup, and it can't see the server backup. I can't mount the fileshare manually like I do from a normal OS, and I can't boot off another drive and use the Install Disk's restore option.
    I thought perhaps I could use the "mount_afp" command via Terminal, but this mounts the share as unreadable, and inaccessible again via Time Machine.
    1. How do I get Time Machine to show the server's backup volume, without manually mounting it via fileshare?
    2. Barring that, is there any way of doing a complete Time Machine restore, that allows me to first mount a fileshare volume?

    Everyone in my company is having the exact same problem. We bought an Xserve and Xserve RAID with the sole intention of using it for backups and calendar/contact sharing. This Time Machine problem makes the application next to useless for most of the users, as they aren't going to remember to mount the AFP share every single login.
    Coupled with the inability of iCal Server to handle event invitations to individuals not in LDAP, we're questioning sticking with Apple products in the future. This release of Leopard/Leopard Server seems to be missing some major features for some of the most simple workgroup applications.

  • 10.9 Server Filesharing - Duplicate connected user

    Fresh install of 10.9 Server - Did not migrate settings from previous server install *just because*.  User environment < 10 people.  We use file sharing, server time machine, and CardDAV.  No need for anything else.
    From the beginning, had major problem with filesharing borking saved files for all osx users connected over samba.  Lovely.  Had no idea how to fix or why osx clients weren't connecting over AFP, so I partitioned a section for the occasional bootcamp user and turned off samba for the rest of the network drives.
    Now I've got Kerbos authentication failures for the network scanner that sends files to a SMB dropbox share point setup on the server.  A server restart fixes this, but restarting file sharing does not.  On top of that, I've got persisting permissions that seem to manifest in screwed up Numbers files (09', the version that doesn't suck) I can open and edit files, but copy/paste doesn't work nor does it allow you to add a new table unless you copy the file to the desktop.  Then no problem with the file.... otherwise no other finder permissions problems - messed up huh?
    When I go to try to figure this out this morning - now I see this.
    So - Seriously?  I've got one user with over 300 duplicate filesharing connections.  This stuff just used to work despite my lack of experience.  So Apple Community looking for advice - My choices are:
    1. Hire a professional to fix this.  (where do I find one?  Last time I brought in a professional from a local authorized repair shop to fix a previous permissions problem, their answer was, "yeah, ACL's don't work right, you should just use POSIX".  Yeah, thanks, I already knew ACLs weren't working - that's why I called you)
    2. Rebuild the server from the beginning. (what went wrong the last time? Since the last time I setup OSX server, the only thing different this time was that I didn't use workgroup manage to create user profiles because it seemed like it was built into the Server app.  So if I rebuild should I go to yosemite or downgrade to Lion, which seemed to work fine?)
    3. Fix or live with the problems (Any ideas on how to fix, Apple Community?)
    4. Quit. (anyone have a job opening in my field that pays 2x what I make now and doesn't involve relocating or screwing around with this stuff? didn't think so)
    Message was edited by: sgladfelter

    I do use 3.2.2.
    I turned off SMB to my main share point, and left it on for the share point the scanner (which uses an unknown version of the SMB protocol) is setup to drop files on.  The scanner worked for a couple of weeks and then randomly quit - in Console I see Kerbos authentication failures when attempting to connect.  A server restart seemed to fix this problem a couple of times, but it has since quit and I've sort of let this problem go.
    A restart also fixed the duplicate connections, and so far hasn't cropped up again.  I'm still getting Kerbos authentication failures for my CardDAV accounts and my SMB connections, as stated above.
    I haven't gone to yosemite yet since my current setup is working.  The $20 upgrade doesn't phase me.  I'd gladly throw $200 down if it worked as well as it did in snow leopard.  As it is, I feel like I may as well be running linux for the amount of time I've had to spend in a shell the last couple of months.
    Still debating on going back to Lion.  The thing that ***** about this is that when I was considering the downgrade, I realized that since I installed Mavericks on the same machine, albeit a separate drive, the apple recovery utility will now boot into Mavericks instead of Lion as it did before.  So now I've got no way to re-install Lion since disks weren't included.  I can still use the old installation, but that is plagued by problems of an entirely different nature (prompting the update in the first place).
    I sure this whole environment we have now is intentional, but I don't see how its beneficial to the user.  Its analogous to the iDevice marketplace - when you update an app and it gets worse or doesn't work at all, you have no way of going backwards to a previous version.  This wouldn't bother me if you're talking about a free app.  But when I pay for an app and the developer adds in advertisement down the road or breaks it for my iOS version (I don't update my phone either) - well lets just say that in the ideal "user bill of rights" we should have the right to decide whether to use a newer version or go back to the old one. 

  • Filesharing service on the OS X Server 4.0 works only locally

    Hi, the last years i used filesharing only in my local network. but now i would like to use it via internet. I did the port setup in my fritzbox but i can´t get the server via internet. Server 4 status for internet is green, wiki works but no filesharing.
    Thanks.
    Mac mini
    OS 10.10.3
    Server 4.1

    Which ports did you forward through the firewall?  On the FileShare tab, what is listed next to Permissions?  All user, All Networks?  Something different?
    That being asked, as you sure you want to expose your file services ports to the world?  If you are opening the SMB ports, you will likely get hit with a scanner within a few hours.  Have you considered using VPN first, then connect to file services through the VPN tunnel?
    Reid
    Apple Consultants Network
    Author "Yosemite Server – Foundation Services" :: Exclusively available in Apple's iBooks Store
    Author "Mavericks Server – Foundation Services" :: Exclusively available in Apple's iBooks Store
    Author "Mavericks Server – Control and Collaboration" :: Exclusively available in Apple's iBooks Store

  • Set up Failover for Mac server hosting OD, FileSharing, and DNS

    I have a 2008 Mac Pro server running Mavericks. On this server, we are hosting Open Directory with about 250 users, DNS, and File Sharing. All of the users have home directories on the server. 25 of them are using Home Sync. All of the home directories and file sharing are stored on an external RAID device connected by eSATA. The boot drive is an internal 250GB SSD.
    If the server should suffer some catastrophic hardware failure, I would like to be able to restore a clone of the boot drive to another server (Mac-mini) and just move the external RAID device to the new hardware.  This would give me a failover plan that could be implemented in less than an hour. So far this procedure mostly works. The Mini boots up and assumes the identity of the Pro and serves up DNS and File Sharing. The clients all find the Mini at the proper IP address by the FQDN of the original (Pro) server.  However, network users are unable to authenticate with Open Directory on the new server..
    Surely I'm not the first to encounter this situation. Any help would be appreciated.
    Also, if there is a better scheme for having this kind of failover, I'd be glad to consider it. Virtualization might be the key to getting the kind of failover I'm looking for.
    Thanks for your help.

    You must have working forward and reverse name resolution.

  • Slow fileshare transfer speeds with Lion Server

    I'm running Lion Server on a Mac Mini and using SMB to share files between the server and both Windows and Mac machines. I can't figure out why I can only get 2 Mb/s transfer speeds between the server and the other machines. I'm quite certain I'm not limited by my network and the disk write speeds clearly exceed 2 Mb/s. Any suggestions for boosting this speed or is this an actual limit of SMB or Lion Server?

    Have a similar issue on a Macbook Pro mi 2010 : since the 10.7.3 update, Samba file sharing (to access a FreeBsd server over the LAN) is extremely slow. I mean I can't work normally since the update (3 weeks).
    I've reported the bug to Apple. I think it is a bug limited to some machine version (because other mac in the office do not have the issue)

  • Setting up a Server for Filesharing use.

    Hi
    I work for a small UK based charity - we are just 4 employees - helping with conservation of wildlife, promotion of education and support of communities throughout Africa. Each year we raise about £1.8 Million and currently have 42 projects running in 17 African countries.
    We are about to purchase an Mac Mini with Snow Leopard Server as our first ever office server. Initially, the main purpose of new server is for storing sharing files as currently was have no form of centralised storage nor do we have a central back-up policy.
    As we are a small team, we spend a lot of time out of the office and so will need remote access to the central document / fileserver etc.
    I have one question at this stage - is it better to set up remote access via the Snow Leopard’s VPN software - or - is it possible / easier / better to do this via the new Mobile Access Server application?
    If I have to go the VPN route I would welcome any advice on how this is configured / set up - and also whether I need to request a fixed IP from our ISP to make it work.
    I am very new to Mac Server Software and also Networking (IP / security etc.) and so would be really grateful for any help / advice / links to help-sites etc.
    Thank you!
    Bob

    Green, Bob wrote:
    Hi
    I have one question at this stage - is it better to set up remote access via the Snow Leopard’s VPN software - or - is it possible / easier / better to do this via the new Mobile Access Server application?
    If I have to go the VPN route I would welcome any advice on how this is configured / set up - and also whether I need to request a fixed IP from our ISP to make it work.
    I am not familiar with the Mobile Access Server approach, but have implemented the VPN option. There are several factors to consider. Regarding fixed IP address, that is definitely the preferred method, though the dyndns.org approach also works. Of more importance is the bandwidth that your internet connection provides. Most end-user connections have fast download speeds but the upload speed are severely curtailed. If you intend to grab data from within your own facility, the upload speed will be very important.
    The VPN approach, to me, is the correct way to go about it. It basically makes your remote machine pretend it is sitting in your office. You can connect to the OpenDirectory LDAP server, have it tell your machine about automounts, allow remote authentication, and a host of similar things.
    A Mac Mini is certainly a decent platform, though my preference is running on a Mac Pro, that way you have a much stronger hardware platform that can run, for example, a RAID setup.
    The last time I used Rumpus, it was basically an FTP server. If that is the approach you're thinking of using, you might be better off using a 3rd party ftp site, as the access speeds will be way higher.
    Another approach, if the amount of data that is shared is minimal, is dropbox.com. It is by far the best system I've seen to share data, as any modifications you make are very quickly mirrored to every other machine that is part of the group. The caveat is that their large-quantity data plans are pricey.

  • Can't open office files located on a windows server fileshare

    Hi TechNet / Office for Mac Community,
    re: can't open MS Office files located on a windows server file share
    Is anyone else experiencing this issue and/or have a fix?
    Details:
    Clients: Mac OS X 10.6 / 10.7 / 10.8 / 10.9
    File share: Windows Server 2008 R2
    Connecting via SMB or CIFS
    Problem:
    When mounting the Windows Server file share, Mac clients are unable to open MS Office 2011 files (not just powerpoint) from that location.
    Error message: "there was an error accessing /Volumes/data/folder/presentation.pptx"
    There is no issue creating or deleting MS Office files from that location. 
    The Mac 'Preview' application is able to open the same MS Office file without issues.
    The file is not corrupted and can be opened when copied to the desktop.
    Windows clients have no problem opening the file.
    Only this particular file share is having an issue.
    Are there any known issues or requirements for Windows Server file shares and MS Office 2011 that would apply to this problem?
    Your assistance is greatly appreciated.

    WebPhoenix, recommend you post this question here instead:
    http://answers.microsoft.com/en-us/mac
    Thanks,
    Mike
    Unfortunately your post is off topic here, in the TechNet Site Feedback forum, because it is not Feedback about the TechNet Website or Subscription.  This is a standard response I’ve written up in advance to help many people (thousands, really.)
    who post their question in this forum in error, but please don’t ignore it.  The links I share below I’ve collected to help you get right where you need to go with your issue.
    For technical issues with Microsoft products that you would run into as an
    end user of those products, one great source of info and help is
    http://answers.microsoft.com, which has sections for Windows, Hotmail, Office, IE, and other products. Office related forums are also here:
    http://office.microsoft.com/en-us/support/contact-us-FX103894077.aspx
    For Technical issues with Microsoft products that you might have as an
    IT professional (like technical installation issues, or other IT issues), you should head to the TechNet Discussion forums at
    http://social.technet.microsoft.com/forums/en-us, and search for your product name.
    For issues with products you might have as a Developer (like how to talk to APIs, what version of software do what, or other developer issues), you should head to the MSDN discussion forums at
    http://social.msdn.microsoft.com/forums/en-us, and search for your product or issue.
    If you’re asking a question particularly about one of the Microsoft Dynamics products, a great place to start is here:
    http://community.dynamics.com/
    If you really think your issue is related to the subscription or the TechNet Website, and I screwed up, I apologize!  Please repost your question to the discussion forum and include much more detail about your problem, that could include screenshots
    of the issue (do not include subscription information or product keys in your screenshots!), and/or links to the problem you’re seeing. 
    If you really had no idea where to post this question but you still posted it here, you still shouldn’t have because we have a forum just for you!  It’s called the Where is the forum for…? forum and it’s here:
    http://social.msdn.microsoft.com/forums/en-us/whatforum/
    Moving to off topic. 
    Thanks, Mike
    MSDN and TechNet Subscriptions Support

  • Mavericks Server: Fileshare: Setting a Share quota to use

    Hello
    I've a Mavericks Server running  here. All runs well. Version 10.9.1
    But i'am looking for a feature.
    I want to set a limit of GB use for 1 share.
    Example:
    SEVER:  testserver
    SHARE:  Data
    Local User:  luser
    Space on RAID in real:  12 TB
    Connection: SMB and AFP
    Mainquestion:
    What can i do to limit the User "luser" to use max. 500 GB in Share "Data". And not the full avaiable 12 TB?
    There is no OD running. Only a few local users to manage. A Simple Fileserver...
    Thanks for ideas and helps...

    You are correct.  I tend to be lazy and do the following.
    1:  Create a local user account (quotatemplate) and set a quota on that account.
    2:  Use the edquota command to copy quotatemplate's quota to other accounts.
    For example.  Let's say I have a few AD users named alincoln and tjefferson.  I want them to all have a quota of 500 GB.  I would create the quotatemplate user and set a quota of 500 GB.  (yes, I get a home folder created in /Users which is stupid and useless... but more importantly you get the .quota.ops.user and .quota.user files on the root of the drive.)  You can view the settings for quotatemplate with:
    sudo quota -vu quotatemplate
    Then you can apply these settings to other users using:
    sudo edquota -u -p quotatemplate alincoln
    sudo edquota -u -p quotatemplate tjefferson
    etc...
    This should allow you to apply quota to users outside the GUI.
    R-
    Apple Consultants Network
    Apple Professional Services
    Author "Mavericks Server – Foundation Services" :: Exclusively available in Apple's iBooks Store

  • XP Filesharing Working but Vista is not!:  Leopard server

    Can someone post easy direct instructions on how to connect to shared volumes using vista.
    SMB is on.
    With XP I find the server in the work group double click it and put the username and password and booooomm!!!! I'm in and working.
    With Vista I follow the same procedure, and booooommm!!! it rejects it and changes the username to relect the name of the machine\username.
    Can someone lend me a hand. I'm a new Leopard Server Admin, and I really need my staff to embrance this wonderful technology!!
    Thanks

    I haven't tried with Vista yet, but I hoped that it would work just as well! :O
    Since client_machine\username won't work (and shouldn't), have you tried domain\username instead of just username? Are the users local to the server or OD/AD users?

  • OSX Server Fileshareing was fine

    Hello, I am really new to the OS X Server environment, Today one of my servers stopped shareing files. I used to have a drive shared over the network with people able to connect to it. The permissions are all correct. The server no longer lets anyone connect to it in finder. I can Ping it, and see it in finder just cannot connect. Can somone please help me out.

    Did you check that the file sharing services are still running and haven't stopped (either deliberately or unexpectedly?
    Server Admin will tell you the status of your services, along with the associated logs which might provide further clues.

  • Mac Mini with OSX server still OK?

    HI All,
    I was going to purchase the mac mini that was geared up to work best with OSX server however that option is now no longer available and the mac mini's have downgraded slightly in terms of quadcore processors and 2tb harddrives.
    We run a small design studio, file sharing is becoming a large hinderance on workflow and I thought OSX server sounded like a good solution for someone with little knowledge of the area. We have four imacs, and three macbooks. Our team is growing fairly quick and that number should double next year.
    Any ideas would be much appreciated.
    Thanks,

    Just get the latest mac mini, add some external storage with a Thunderbolt 2 connection and that setup will work great for filesharing.
    You will get gigabit network speeds and since it's Thunderbolt 2 the mac mini will have no problem to serve those files across the network.
    Make sure you get external storage with a decent RAID setup like a Promise Pegasus for instance, and invest in a good back-up solution.
    Then clone your mac mini OSX Server setup daily towards the RAID and you're good to go!
    Get a Mac Mini with an SSD or Fusion Drive and 16GB of RAM. That'll keep you going for the next couple of years easy!
    Goodluck!
    Jeffrey

Maybe you are looking for

  • Cisco 525G - 504G - 500 Internal Server Error SIP message

    Hi, We have been experiencing a problem for a while now, but recently it has started to affect our largest customers who are raising questions. Basically we have a call flow that makes the phone generate a 500 Internal Error SIP message which drops t

  • Link between EKBE and EKET for the below scenario

    Hi all We have a requirement to display schedule line number(eket-etenr) for purchase order and for each history of quantities in table EKBE (ekbe-ebeln ,ekbe-ebelp). Please suggest how we can link these two tables, As i need to display the eket-eten

  • Kernel update in MSCS

    Hi, I am now trying to update the kernel from 700-146 to 700-278 in current MSCS environment. I have tried the following process: 1. take SAP/Oracle group offline 2. bring disk resource online (/usr) 3. replace the old kernel as the new one /usr/sap/

  • Can't download extended function program

    I can't download evernotel's webclipper.  I already followed the suggestion made by evernote technician that I deleted all related file and programs related to evernote (using appcleaner, empty trash can), restarted Mac, reinstall evernote, and then

  • OAS and CORBA

    Hi, Can a CORBA object deployed in OAS invoke methods of other CORBA objects in other ORBs? Is it true that with Oracle 8.1.5 this is not possible? Because we have tried and it does not work. Also we have found at the site metalink.oracle.com the doc