Using SVN under OS X.5 Leopard Server

Hi there!
We run a Mac Pro with OS X Server Leopard 10.5.1 for collaboration services.
We also need to use SVN for other matters. As this service is not directly accessible from Server Admin, but is always running because it's used as a backend for Wikis and blogs, *is there any way to use it in parallel for other purposes as well*?
Thanks in advance!
Luc

I also also could not get davsvnmodule to load. This is a fresh install of Leopard Server, and the first thing I did with the web settings was to check the box for davsvnmodule, and I get the following error in the log file:
httpd: Syntax error on line 154 of /private/etc/apache2/httpd.conf: Cannot load /usr/libexec/apache2/moddavsvn.so into server: dlopen(/usr/libexec/apache2/moddavsvn.so, 10): Symbol not found: dav_do_findliveprop\n Referenced from: /usr/libexec/apache2/moddavsvn.so\n Expected in: dynamic lookup\n

Similar Messages

  • Using SVN under OS X.5 Leopard

    Hi there!
    We run a Mac Pro with OS X Server for collaboration services.
    We need to use SVN. As this service is not directly accessible from Server Admin, but is always running because it's used as a backend for Wikis and blogs, *is there any way to use it in parallel for other purposes as well?*
    Thanks in advance!
    Luc

    I also also could not get davsvnmodule to load. This is a fresh install of Leopard Server, and the first thing I did with the web settings was to check the box for davsvnmodule, and I get the following error in the log file:
    httpd: Syntax error on line 154 of /private/etc/apache2/httpd.conf: Cannot load /usr/libexec/apache2/moddavsvn.so into server: dlopen(/usr/libexec/apache2/moddavsvn.so, 10): Symbol not found: dav_do_findliveprop\n Referenced from: /usr/libexec/apache2/moddavsvn.so\n Expected in: dynamic lookup\n

  • Installing/using parental controls on a snow leopard server machine

    Here is the question: Is there any way to permanently install parental controls in on a mac mini with Snow leopard server software on it?
    My situation:
    I manage a computer lab of 40ish computers using Apple Remote Desktop, which does not have any support for parental controls. I have these computers set so that their P.C.s can be remotely managed, but they can only be managed from a machine which has parental controls in the system preferences. I can only manage the P.C.s from one of the other lab computers, which are under student use 90% of the time. The server mac mini did not come with the P.C.s preference pane, and so it is fairly useless on that front.
    I have tried various methods of getting around these blocks. I was able to copy the parental controls .prefpane file from one of the lab computers on to the server, and when I ran it, it installed into my server computer and placed the preference pane in System Preferences. For a brief minute I was able to manage the lab computers' P.C.s, but once I restarted System Preferences, the P.C. preference pane disappeared, and will not re-install or anything (I get a "it is not available to you at this time" message).
    Is there any way to use the server to manage parental controls?

    Hi
    +"Is there any way to permanently install parental controls in on a mac mini with Snow leopard server software on it?"+
    I don't think so? Besides there's no need for it. Parental Controls is available as a Managed Preference (or MCX) using WorkGroup Manager either at Users, Group or Hardware Level. Launch the application and click on the Preferences icon and you'll see what I mean.
    Tony

  • How to setup SVN under Lion correctly?

    Using SVN under SnowLeopard (Server) we used the following PLIST:
    sh-3.2# whereis svnserve
    /usr/bin/svnserve
    sh-3.2# svnserve --version
    svnserve, version 1.6.16 (r1073529)
       compiled Jun 13 2011, 15:54:33
    sh-3.2# cat /Library/LaunchDaemons/svn.plist
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
       <dict>
          <key>Label</key>
          <string>svnserve</string>
          <key>Program</key>
          <string>/usr/bin/svnserve</string>
          <key>ProgramArguments</key>
          <array>
             <string>svnserve</string>
             <string>-d</string>
             <string>-r/Volumes/fsx_hd/svn</string>
          </array>
          <key>ServiceDescription</key>
          <string>SVN Code Version Management</string>
          <key>KeepAlive</key>
          <true/>
       </dict>
    </plist>
    Under Lion we get 2 running processes:
    sh-3.2# ps ax |grep 'svn'
      137   ??  Ss     0:00.00 svnserve -d -r/Volumes/fsx_hd/svn
      188   ??  Ss     0:00.00 svnserve -d -r/Volumes/fsx_hd/svn
      627 s000  R+     0:00.00 grep svn
    ... and the following error log:
    sh-3.2# tail /var/log/system.log
    Aug 23 17:51:40 asx com.apple.launchd[1] (svnserve): Throttling respawn: Will start in 10 seconds
    Aug 23 17:51:50 asx svnserve[630]: svnserve: Can't bind server socket: Address already in use
    Aug 23 17:51:50 asx com.apple.launchd[1] (svnserve[630]): Exited with code: 1
    Aug 23 17:51:50 asx com.apple.launchd[1] (svnserve): Throttling respawn: Will start in 10 seconds
    Aug 23 17:52:00 asx svnserve[632]: svnserve: Can't bind server socket: Address already in use
    Aug 23 17:52:00 asx com.apple.launchd[1] (svnserve[632]): Exited with code: 1
    Aug 23 17:52:00 asx com.apple.launchd[1] (svnserve): Throttling respawn: Will start in 10 seconds
    Aug 23 17:52:10 asx svnserve[633]: svnserve: Can't bind server socket: Address already in use
    Aug 23 17:52:10 asx com.apple.launchd[1] (svnserve[633]): Exited with code: 1
    Aug 23 17:52:10 asx com.apple.launchd[1] (svnserve): Throttling respawn: Will start in 10 seconds
    What is wrong?
    Thank you for your help!
    Axel Neumann

    On careful read of "man launchd.plist" I suspect two errors in your .plist.
    1) one should not launch anything which invokes daemon(3) from launchd. Delete your -d option.
    2) if Program is specified then that is the executable which is launched. Else the first item in the ProgramArguments array is used. You have double specified "svnserve", suggest deleting the first string in ProgramArguments.

  • RSS feed from Snow Leopard server

    I want to host an RSS feed from my server. What settings would be necessary to accomplish this?

    The first things to do would be to download a program that will maintain your RSS feed.  Podcast spitter from the app store was the top hit when I did a search.  I've not used it, but it appears that it'll do the trick.
    Next, just create a website using the web service in Snow Leopard Server.
    Point Podcast Spitter at the share that hosts your web site and that should do the trick.
    When you upload your RSS feed, all the stuff needed to make it an RSS feed should go with it.
    Granted it's a VERY thinned out version of the steps needed to take, but the concepts are correct.
    If you need a more detailed description, write back with more info about how your server is set up and how it's connected to the internet.
    HTH
    -Graham

  • Time Machine and Leopard Server

    I'm trying to verify the Time Machine works on Leopard Server sufficiently enough to be a reasonable backup vehicle for the Leopard Server to an external backup drive, for example.
    I have read many posts where Leopard Server can act as a Time Machine Server for workstations, but my main interest is in using Time Machine, running on the Leopard Server to back up that Server.
    My guess is that it will?
    Thanks in advance for everyone's input.

    Timemachine is not supported for "ADVANCED" Server set up but the SIMPLER setups YES. There are also settings for backing up network computers as well as backing up the server.
    Supposed in Advanced not all system files are backed up. There are a number of threads regarding this in the Server section of the discussions.

  • Leopard Server question on using partitions for User home directories

    I am setting up a leopard server (Xserve) with an external array (xraid). We set up a /System partition, a /Users partition and a /TimeMachine partition. Each is a partition on a RAID5 device, so we should be pretty well backed up!
    The issue I am having centers on how to get Leopard to use the /Users partition. Apparently, the accounts we set up all had their home directories created under /System/Users, not /Users. This is true for local machine accounts as well as OpenDirectory accounts.
    The question I have is: should I be trying to figure out how to mount the /Users volume inside /System (that would be my old UNIX approach), or should I be trying to set up my users to use the new mount point?
    I am not clear on the 'apple' way for this. Any suggestions would be greatly appreciated.
    Charlie

    I suggest posting to the Mac OS X Server forum where you're more likely to get a cogent response.

  • Can I use Leopard Server for a few things without a static IP/DNS mapping?

    Caveat: I'm pretty capable at setting up and running macs, but not a crack server admin or anything like that. I don't write code and my eyes start to glaze over when you start talking about Kerbos and the like...
    Question: I'd like to use Leopard server for a few things on my local network - with some vpn access to the same services:
    - iCal server (the most important feature) for 3 users
    - File server services for Time Machine (yes, base Leopard can do this)
    - vpn access into the iCal server for one user
    Do I have to go through the headache of switching over from a dynamic IP to a static IP, setting up DNS mapping, etc? Or is there a simpler way?
    Any help appreciated. Thanks

    Caveat: I'm pretty capable at setting up and running macs, but not a crack server admin or anything like that. I don't write code and my eyes start to glaze over when you start talking about Kerbos and the like...
    Question: I'd like to use Leopard server for a few things on my local network - with some vpn access to the same services:
    - iCal server (the most important feature) for 3 users
    - File server services for Time Machine (yes, base Leopard can do this)
    - vpn access into the iCal server for one user
    Do I have to go through the headache of switching over from a dynamic IP to a static IP, setting up DNS mapping, etc? Or is there a simpler way?
    Any help appreciated. Thanks

  • Using ms office 2008 for mac home & student edition with snow leopard serv

    Hi all,
    I have a very particular question.
    I have a new small business starting up and we want to make full use of leopard and snow leopard server in our infrastructure. We also want to use os x for all our client machines.
    We want to use ms office 2008 for mac as our main offfice software but i believe we don't need all the uses or festures of the business edtion and i need to seek good advice and clarity on this.
    We won't ever use any microsoft exchange servers but instead willl use the apple mail servers and all the other apple server services.
    My question is, based on the fact that we will have an all apple mac os x backend and client frontend but want to use the ms office for mac as our business software, and also based on the fact that we wont use the "Build your Brand clip art, Build your skills by lynda.com, the Remote Desktop for mac 2, the Microsoft Exchange Server Support and the Microsoft Windows sharepoint services support, do we really need to go for the business edition? Can we not just use the home and student edition and get the same functionality using everything else apart form what we listed as we wont need these?
    The other question is, the Entourage 2008, Web services Edition, will this work with an apple backend instead of ms exchange server?
    Kind regards and thanks for your wise advice,
    Neil Watson

    Thanks, Kurt--I understand now. 
    One reason I was alarmed was that evidently when the tech installed Office 2008, something went awry with either the key installer or the key code, because when I finished the first two updates (12.1 and 12.2), I tried to open Entourage to see if the problem I'd been having was resolved. Instead of opening, Office gave me a message that my product key was invalid!  I did find the product key, and called the tech, who will come by to see what's wrong (he's an honest guy, so I'm sure it's a legitimate error of some kind, not a pirated copy). But the thought of installing two pages of updates and maybe running into the same glitch every time made me blanch.  So I'm glad to know that Microsoft is still doing Service Packs for 2008!

  • I want to install Snow Leopard Server on our MacPro (2.66) using Mac Mini Snow Leopard Server disks?  I kept getting an error for backwards compatibility.   Is this possible or do I need to purchase another copy of Snow Leopard Server?

    I want to install Snow Leopard Server on our MacPro(2.66) using Mac Mini Snow Leopard Server disks?  I kept getting an error for backwards compatibility.   Is this possible or do I need topurchase another copy of Snow Leopard Server?

    The OS disks that are shipped with a particular product
    are set up so that tey will only install on that product.
    It will install on any Mini of that exact vintage, but that
    is all.
    This is to prevent people from doing exactly what you
    are trying to do.  The license for OSX shipped with any
    is only valid for that product.  Also, Snow Leopard,
    including Server, is only permitted to be run on one
    computer at a time.  Bottom line, unlike Lion, legally
    you cannot install the same copy on multiple
    computers unless some "family pack" or site license
    is purchased.
    Yes, you need to purchase another copy.
    The copy of Snow Leopard license is here:
    http://images.apple.com/legal/sla/docs/macosx_snowleopard.pdf

  • SQUIRRELLY  Leopard Server and Unable to Backup using Anything!

    I upgraded from 10.4 to 10.5.2 Leopard server, and am having some difficulties that I can't resolve.
    The server is running on an Intel dual core MacMini, and is primarily used for email. It isn't serving any webpages at the moment. The install was "from scratch" and not some kind of upgrade; only the mail was moved over from the previous server using Mail BFR.
    I have been unable to backup the server in any way. I have tried:
    • Superduper (2.5) which is how I backed up the previous server without problem
    • Carbon Copy Clone
    and now
    • Time Machine
    The first two would run about 2/3 the way thru, and the computer would "freeze" (mouse activity but nothing would work, required hard reset to recover). No logs available as the problem does not leave anything showing the problem.
    Time Machine was tried today, and it ran about 1/2 the server (only 18GB) and kernel panic resulted (log below).
    Tried all the usual troubleshooting methods; rebuild permissions, ran deep-cleaning, etc.
    I hate to have to restart the whole process from scratch.
    Thanks

    That is definitely the intended operation sorry, this is done so that if you have encrypted the device no one can just plug your phone into a PC and pull all the data off.
    Don't forget to mark posts that answers the topic as Accepted Solution. 
    If you find any post helpful, press Kudos.
    What are your thoughts about this forum? Let us know by doing this short survey.
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • TIP: Use VNC for Headless Leopard Server Installs

    Wish I had figured this one out before...
    Quick little tidbit for all those installing Leopard Server on a machine that doesn't have a display. You can use server admin tools and 'Server Assistant' running on a different box. Or, once the installer has started on the Leo Server box, you can VNC into it directly! Then its just like installing it with a display connected.
    This was useful for me to be able to run disk utility on an old XServe that didn't have a display card.
    Once you've figured out what IP the box has (take a look in the Server Assistant for this info) VNC into this using your favourite client (or Leopard Client's Screen Sharing app):
    The username is blank (i.e. no username), and the password is the first eight characters of the machine's serial number.
    Very useful little addition there by Apple.

    Craig Bowman wrote:
    So does anyone here run their Mac Mini headless for both iTunes serving (to include iTunes TV and movies) and i-device syncing?
    i do
    Is it practical?
    pretty much.
    Would I use Snow Leopard Screen Sharing to control it?
    i use a combination of screen sharing and iTeleport on my iPad.
    what i found to be necessary is to enable +automatic login+ for the user account on which iTunes is running via system preferences > security for when you do software updates and the mini needs rebooting.
    JGG

  • Facetime error using OS 10.6.8 (snow leopard) "the server encountered an error processing registration"

    I can't seem to manage to get logged into facetime on my MacBook Pro using OS 10.6.8, Snow Leopard. It keeps giving me the error of "the server encountered an error processing registration, please try again later" Well two days later its the same issue, can someone please help!! I see a lot of the fixes on here are for the upgraded operating system, and everyone seems to have had snow leopard work fine...why cant I!!! help the old school op system user PLEASE!! :-)

    I've been trying to get an answer to this problem for MONTHS.  I upgraded both my iMac and my MacBook Pro to Mountain Lion, and ever since, FaceTime and iMessage stopped working.  I got the "Server encountered an error . . ." So, I called Apple "support" and they claimed they haven't heard of this issue.  I said I find it hard to believe since it's apparently a huge problem for tons of users and is all over the Apple forums.  After spending an hour on the phone with "support", they said they had to pass i on to a senior engineer and they'd call me back within 2 days with an answer.  After waiting a week, I decided to go to the place where I should have gone before, the place where all questions can be answered, even those too advanced for Apple, that place . . . YouTube.
    Fixing the time issue didn't work for me, nor did any other solution that has been posted on the boards.  Yet after watching a 1:24 video on YouTube, both FaceTime and iMessage now work for me.
    Here's the solution which WILL work.
    You do need to first make sure your date/time settings are correct and set to adjust automatically.  But doing just this step will not fix the problem.
    Open Finder, click on "Go" at the top menu, then select "Go To Folder"
    Type in    /etc     and hit enter
    You'll see a file called "hosts".  Drag that file to your desktop.
    Right click on that file and open with Text Edit
    Select all the text in that file, delete it and replace it with the text below, exactly as it is below.  Then save the new hosts file (just exiting will save it). And then drag that new hosts file back into the /etc folder to replace the old one.  After that, your FaceTime and iMessage will work, no thanks to Apple.
    # Host Database
    # localhost is used to configure the loopback interface
    # when the system is booting. Do not change this entry.
    127.0.0.1 localhost
    255.255.255.255 broadcasthost
    ::1 localhost
    fe80::1%lo0 localhost

  • Can I use Snow Leopard Server with Windows clients?

    Mainly for e-mails and calendars. I have small office with 12 windows computers from XP to Win 7 and MS Office from 2003 to 2007. Will Snow Leopard Server work with that?

    Can Mac OS X Server do this?  Sure. 
    You're going to be learning a whole lot about running a server, regardless.
    You really need to sort out what you have here and where you want to be, and how to upgrade or replace yor migrate your environment, and before you add the substantial increase in complexity of serving Windows from Mac.  If you can't get off of Office circa 2003 or similarly old software, what are you going to do when you find, say, an incompatibility, or a need to migrate mail clients?     Who are you going to call for help?
    I'd guess that Small Business Server (SBS) is likely your best target here. 
    AFAIK, Exchange Server (which I'm guessing is what you're using) supports larger mailboxes in newer releases.
    Look at the sustaining costs for what you're considering purchasing, too.  How much it'll cost to configure, deploy and maintain the box and the network.  Up-front costs are an obvious consideration, but maintaining many boxes and many versions itself introduces costs.
    The arrival of Lion Server next month does not change my opinion.   (And I'm not usually suggesting Windows and Windows Server boxes, either.)  (And with the arrival of Lion and Lion Server, I'll follow my usual approach and not look to upgrade to the first release of that (or any other) new platform, if there are business-critical functions and services involved.  You need time to debug and test the deployment.)

  • Small problem: how using "Remote Desktop" on Snow Leopard Server

    Hello,
    How can I login to the Mac Mini Snow Leopard Server from 2 different Macs ?
    Before I bought my Mac Mini Server in July, I asked the Apple Support if Snow Leopard Server has the equivalent of the Windows Remote Desktop functionality. He told me that it is possible. He did not tell me how, but I believed him.
    I cannot find it in the documentation. Only 1 person can use screensharing. But I need more than 1 person working on the Mac OS X Server.
    I moved our Photo library to the Mac OS X Server. With filesharing it takes 5 minutes to start iPhoto on our client iMac ( 1Gbps network). That is unworkable. So, from more iMacs users have to login to the server and start iPhoto on the server.
    Thanks for the solution.
    Hubert Anemaat

    As per Jason's reply, there are two Terminal Server products available for Mac OS X. I have been testing both, both work in the same sort of way and will allow multiple simultaneous users to connect.
    The typical approach is to (obviously) first to install one of these Terminal Server programs on your server. Then you (ideally) need another server hosting your Mac network home directories, and it needs to share the network home directories via NFS rather than AFP.
    Note: Due to the way Mac OS X handles mounting AFP shares, you cannot have two users using the same share at the same time as the login defines the privileged's and the first logins privileged's would not be suitable for the second user, this is also why you cannot use "Fast User Switching" with two network login accounts when using AFP.
    So, a client uses an RDC client (e.g. the free Microsoft Remote Desktop Client) to connect to the Terminal Server, this initiates a network login which access the users home directory via NFS.
    RDC client (Mac or PC) ------> Mac Terminal Server <------ Mac network home directories
    I have not tried iPhoto, but have tried various other applications, e.g. FileMaker, AppleScript, Microsoft Office 2004, etc. and the only problem I have hit so far is that Visual Basic in Office 2004 generates errors but Word and Excel otherwise work. Remember Office 2008 does not support Visual Basic (i.e. Macros).
    I would actually expect iPhoto to work for multiple users as long as you use NFS. Using NFS for network home directories rather than AFP has actually 'fixed' a couple of badly written applications that had problems with AFP based network home directories, e.g. Adobe Acrobat 9.
    I am using Mac OS X 10.6.4 Servers.

Maybe you are looking for

  • XSL error while creating new WEB FORMS in Web Page Composer (WPC)

    Hi Experts, I am getting following error : An error occurred while generating a preview : Fatal Error: com.sap.engine.lib.xml.parser.ParserException: XML Declaration not allowed here.(:main:, row:1, col:8) Regards,

  • Using Proxy on Lion - Continually being prompted for username and password

    I am looking at Lion in my studio setup at the moment and so far only a few things I am not happy with. One of these though is really annoying and in it's present form would stop me from using it in production. I have setup the proxies in the Network

  • JTable  - ComboBox problem

    From using a tutorial from a website.. it places a JComboBox in first column the ComboBox elements are: "item1", "item2", "item3", all rows are given these values. How can I do it such that JComboBox have different values for each row? JTable table =

  • Suggestion for new MB model

    I have, and love my new mid 2010 refresh MB, but with back problems, it's still a weight to carry. I would love for Apple to make a netbook sized MB that would run my regular software. The iPad looks great, but it's a whole new set of software for th

  • AcceptBacklog Error Message

    Srikant: I am doing a load test on Weblogic. I have already set "weblogic.system.acceptBacklog=1000" in E:\weblogic\weblogic.properties. I also set the same "weblogic.system.acceptBacklog=1000" using wlconfig utility program. Then I started 10 thread