Monitoring website visits through Mac OS X Server

Hello,
I have an Xserve that serves an office of 40 people. We need to monitor the websites that employees are visiting but I have not been able to find a software or freeware that we could use through the server. And I do not find this functionality in Snow Leopard. Do you have any recommendation?
Thanks a lot for your help!
Message was edited by: Acue

There's nothing built-in that will do this, but it can be done, depending on your network configuration.
In order to do this, all web traffic must pass through the server. This could be done if the server is running as an internet gateway (not recommended, IMHO), or if the server is running a proxy server (and the clients are configured to use that proxy).
Without either of these conditions the server is blind to other client's network traffic and has no way of reporting which sites were visited.
An alternative solution could lie in your router/firewall. Some provide web filtering and reporting capabilities and that could be used to collate the information you're looking for.
If you don't have such a firewall and your server isn't running as a gateway device then I'd go the proxy server path - probably by installing something like Squid as the proxy server. You could use the built-in Apache proxy module but it isn't as full-featured.

Similar Messages

  • Monitoring websites visited from my home network

    I would like to monitor the websites visited by the individual computers on my home network. I would like to know if the syslog file created by the Arris NVG589 router will support this. Thank you!

    Fthnrsn wrote:
    I would like to monitor the websites visited by the individual computers on my home network. I would like to know if the syslog file created by the Arris NVG589 router will support this.
    Thank you!
    Seriously doubt it as that's pretty much catching system info and errors.  That's really the purview of the browser's history function.
    Chris
    Please NO SD stretch-o-vision or 480 SD HD Channels
    Need Help? PM ATT Uverse Care (all service problems)
    ATT Customer Care(all other problems)
    Your Results May Vary, In My Humble Opinion
    I Call It Like I See It, Simply a U-verse user, nothing more

  • Can't login to Mac OS X server website after password reset

    Hi,
    I set up Mac OS X server for our small company and tried resetting the password of my network account that is managed via profile manager.
    So, under Accounts->User->MYUSERNAME->reset Password, I typed in a new one and hit ok.
    Now I can't login to the server website anymore (for editing our wiki or using profile manager etc.), neither with the new one nor with the old one.
    I already tried different passwords (resetting it again and again), I looked at the password directive, I checked my user name, tried to login from different computers and tried logging in with another account (which worked quite fine, so it's just my account). Finally I searched the internet for a solution for quite some time but didn't find anything similar.
    It would be great, if somebody could offer some advice.
    Best regards.
    Lasse

    Solved it by deleting the user and creating a new one with the same userID.
    Maybe it occured because I marked the "user has to change password after first login" box when resetting the password but didn't yet allow him to do so in the webpages menu?!?

  • Serious bug in Weblogic when connecting to a remote website through a local proxy server (proxyHost, proxyPort)

    Hi there,
    It seems that there is a serious problem with any version of Weblogic when you
    have to pass through a local proxy server to connect a remote website.
    Whenever I am trying to run the jsp program below either with Weblogic 7.0 SP2
    or even with Weblogic 8.1, I get the following exception :
    An error occured: Tried all: '1' addresses, but could not connect over HTTP to
    server: 'www.sun.com', port: '80'
    When I run the same program outside Weblogic, it works fine. Other people have
    already reported the same problem either in this newsgroup or on Internet forums,
    and up to now, the problem is not fixed yet.
    In fact, Weblogic seems to block when it performs the connect() method to the
    proxy, my jsp program hangs a few minutes before returning the error message shown
    above.
    If anyboby can tells me how this problem can be solved (or maybe via a workaround)
    do not hesitate to keep me informed, thanks in advance.
    Please find below my code :
    public class ProxyDownload extends HttpServlet
    private static final String CONTENT_TYPE = "text/html";
    //Initialize global variables
    public void init() throws ServletException
    public String bufferedReaderToString (BufferedReader br) throws IOException
    String xml = "";
    String line = null;
    while ( (line = br.readLine()) != null)
    xml += line;
    return xml;
    //Process the HTTP Get request
    public void doGet(HttpServletRequest request, HttpServletResponse response) throws
    ServletException, IOException
    response.setContentType(CONTENT_TYPE);
    PrintWriter out = response.getWriter();
    out.println("<html>");
    out.println("<head><title>Proxy Download</title></head>");
    out.println("<body bgcolor=\"#c0c0c0\">");
    try{
    // Set proxy stuff
    System.getProperties().put( "http.proxySet", "true");
    System.getProperties().put( "http.proxyHost", "ip_address" );
    System.getProperties().put( "http.proxyPort", "port");
    String password = "user:pass";
    sun.misc.BASE64Encoder objEncoder = new sun.misc.BASE64Encoder();
    String code = objEncoder.encode(password.getBytes());
    // Find the file name to save
    String file = null;
    // Open a connection
    URL url = new URL("http://www.sun.com");
    URLConnection connection = url.openConnection();
    // Set up the connection so it knows you are sending
    // proxy user information
    connection.setRequestProperty( "Proxy-Authorization", "basic " + code);
    connection.connect();
    // Set up the connection so you can do read and writes
    connection.setDoInput( true );
    BufferedReader inBuff = new BufferedReader(new InputStreamReader(connection.getInputStream()));
    String str = bufferedReaderToString(inBuff);
    out.println("<BR>" + str);
    catch(Exception e){
    out.println("<BR> An error occured: " + e.getMessage());
    out.println("</body></html>");
    //Process the HTTP Post request
    public void doPost(HttpServletRequest request, HttpServletResponse response) throws
    ServletException, IOException
    doGet(request, response);
    //Clean up resources
    public void destroy()

    Hello,
    The way to set the HTTP connection using a proxy server changed (from
    using the system property
    weblogic.webservice.transport.http.proxy.host/port)[1] in WLS 7.x to the
    standard JDK 1.4 system properties [2] in WLS 8.1.
    I would recommend opening a dialog with our outstanding support team [3]
    to resolve this issue.
    Thanks,
    Bruce
    [1]
    http://edocs.bea.com/wls/docs70/webserv/client.html#1058615
    [2]
    http://java.sun.com/j2se/1.4/docs/guide/net/properties.html
    [3]
    http://support.bea.com
    [email protected]
    Yves Hardy wrote:
    >
    Hi there,
    It seems that there is a serious problem with any version of Weblogic when you
    have to pass through a local proxy server to connect a remote website.
    Whenever I am trying to run the jsp program below either with Weblogic 7.0 SP2
    or even with Weblogic 8.1, I get the following exception :
    An error occured: Tried all: '1' addresses, but could not connect over HTTP to
    server: 'www.sun.com', port: '80'
    When I run the same program outside Weblogic, it works fine. Other people have
    already reported the same problem either in this newsgroup or on Internet forums,
    and up to now, the problem is not fixed yet.
    In fact, Weblogic seems to block when it performs the connect() method to the
    proxy, my jsp program hangs a few minutes before returning the error message shown
    above.
    If anyboby can tells me how this problem can be solved (or maybe via a workaround)
    do not hesitate to keep me informed, thanks in advance.
    Please find below my code :
    public class ProxyDownload extends HttpServlet
    private static final String CONTENT_TYPE = "text/html";
    //Initialize global variables
    public void init() throws ServletException
    public String bufferedReaderToString (BufferedReader br) throws IOException
    String xml = "";
    String line = null;
    while ( (line = br.readLine()) != null)
    xml += line;
    return xml;
    //Process the HTTP Get request
    public void doGet(HttpServletRequest request, HttpServletResponse response) throws
    ServletException, IOException
    response.setContentType(CONTENT_TYPE);
    PrintWriter out = response.getWriter();
    out.println("<html>");
    out.println("<head><title>Proxy Download</title></head>");
    out.println("<body bgcolor=\"#c0c0c0\">");
    try{
    // Set proxy stuff
    System.getProperties().put( "http.proxySet", "true");
    System.getProperties().put( "http.proxyHost", "ip_address" );
    System.getProperties().put( "http.proxyPort", "port");
    String password = "user:pass";
    sun.misc.BASE64Encoder objEncoder = new sun.misc.BASE64Encoder();
    String code = objEncoder.encode(password.getBytes());
    // Find the file name to save
    String file = null;
    // Open a connection
    URL url = new URL("http://www.sun.com");
    URLConnection connection = url.openConnection();
    // Set up the connection so it knows you are sending
    // proxy user information
    connection.setRequestProperty( "Proxy-Authorization", "basic " + code);
    connection.connect();
    // Set up the connection so you can do read and writes
    connection.setDoInput( true );
    BufferedReader inBuff = new BufferedReader(new InputStreamReader(connection.getInputStream()));
    String str = bufferedReaderToString(inBuff);
    out.println("<BR>" + str);
    catch(Exception e){
    out.println("<BR> An error occured: " + e.getMessage());
    out.println("</body></html>");
    //Process the HTTP Post request
    public void doPost(HttpServletRequest request, HttpServletResponse response) throws
    ServletException, IOException
    doGet(request, response);
    //Clean up resources
    public void destroy()

  • Best practice to host websites on xserve with mac os x server leopard.

    Hi Guys,
    I'm trying to optimize the xserve to host multiple joomla sites...
    Can some one help me with "hidden manuals or using your experience" about best practices out there...!!
    It'd be great on your part...
    Cheers

    Erm, Joomla site hosting 'just works' with Leopard Server site virtualisation and the built in mysql.
    If you want the best practice try Mac OS X Server Essentials Second Edition which has chapters about setting up multiple web sites.

  • Any advantage to having website hosted by a Mac OS X Server webhost?

    With Leopard on it's way and the likes of iChat Server supporting relaying, is there any advantage to having our domain hosted with a Mac OS X Server webhost? For instance would we then be able to use iChat Server with our domain name?
    I'm thinking about putting a little pressure on our webhost to provide Mac OS X services.

    I'm no expert on web hosting (or anything else to do with web services but I would have thought that the only way to take advantage of all the Leopard stuff would be to lease a whole machine to yourself (or get them to host your own machine). I cannot see how a hosting company could use a single server for multiple customers, thereby reduce hosting cost per customer.
    -david

  • HT1822 Mac OS X server admin tools: non-server editions of Mac OS 10.6?

    On my iMac, I am running the installation of OS X that it shipped with + updates up to 10.6.8.  I know there are server admin tools available on the Apple support website, that do stuff like manage groups.  I am looking for a GUI to look at ALL the users, groups, permissions, etc. (including hidden ones like _www for apache) on my system, without having to dig through config files in /etc and/or use the dscl command line utility.
    The referenced article says I can find the 10.6 tools on Apple support downloads:
    Mac OS X Server v10.6
    To administer Mac OS X Server v10.6, use the Server Admin Tools 10.6 on Mac OS X v10.6. You should match the version numbers of the server, tools, and admin workstation as closely as possible; for example, use Server Admin Tools version 10.6.8 on Mac OS X v10.6.8 to administer Mac OS X Server v10.6.8.
    My questions are:
    1.  Where are the 10.6 tools on the apple support website?  A search turns up versions for everything BUT 10.6.
    2.  Will the 10.6 tools work on 10.6.8 that is not a server edition of Mac OS?

    The Server Tools you can download from Apple will install and run on OS X client, but they will only connect to and monitor OS X Server boxes. 
    So that won't get you where you want.
    One command that will help you here - and which is present on OS X Server and OS X client - is dscl.
    dscl . list /users
    For details:
    info dscl
    or
    man dscl
    Or a web search, etc...

  • Mac OS X Server - Web Hosting & Media Server

    Hi All - Need advice. I have MacPro and have purchased MacPro Server.
    Here is what I plan to do with MacPro Server:
    1. Host couple of my personal websites, blogs etc.
    2. Use it as a iTunes Media Server so that I can access my iTunes content through VPN / Internet remotely.
    I want to use my MacPro largely for Web development work (basically as a DEV environment) whereas MacPro Server will be my Production environment. I have a couple of questions and will be grateful for your advice:
    1. Is it a good practice to have iTunes Media Server on Mac OS X Server?
    2. Presently, I have all my iTunes library stored on 2 x 2TB hard drives within MacPro. I would really like to move these hard drives to my MacPro Server and import the content to iTunes there. Can I do it? Will I lose the ratings and other details?
    3. Will I be able to access iTunes on Mac OS X Server via Internet / VPN remotely?
    Thanks in advance!!

    By the way they are using Internet Explorer 7 when opening these documents.

  • New to Mac OS X Server!

    I bought my first Mac just 5 months back, & so far have no clue of Mac OS X Server capabilities.
    We area planning to buy a Mac OS X server for our organization, our organization currently consists of both Mac's & PC's
    Keeping this in mind, can Mac OS X Server perform below tasks.
    - File & printer sharing
    - Internet monitoring, Internet filtering, internet rules ... etc
    - Schedule backup of all clients
    - VPN connection for remote workers
    - Antivirus / Firewall solution for securing our entire LAN network
    - Mass mail / bulk mail soluyion
    - Connect it to dumb terminals
    Which of the above can be done right out of the box w/o installing any additional s/w & how?
    Which of the above can be done using the standard Mac OS X?

    Hi
    Most of your questions can be answered by simply browsing Apple's website.
    http://www.apple.com/support/snowleopardserver/
    You could then make a start on the Server Administration Manuals:
    http://support.apple.com/manuals/#macosxserver
    One you've armed yourself with enough information you should be able to answer the rest of your questions yourself?
    Tony

  • Mac OS X Server 10.0.4 Update

    Hello,
    I've been going through my software and downloading all the updates I can find. I was wondering if any of you might have this in your archives, Apple seems to have "lost" it and my usual haunts have come up empty.
    I've recently bought Mac OS X Server 10.0, and I have some of the other OS X Servers (for the Xserve), it seems finding (just the) updates you need before OS X Server 10.3 is hit or miss.
    In one example I'm trying to find:
    Mac OS X Server 10.0.4 Update: Document and Software
    http://docs.info.apple.com/article.html?artnum=120035
    ( http://download.info.apple.com/MacOSX/062-8318.20010702/0z/10.0.4ServerUpdate.dmg.bin )
    Dumps you at:
    " This URL is no longer used. If you get to this page, please go to:"
    http://www.info.apple.com/export/
    ... do strange loop.
    (My cookies are enabled)
    I know this is old, thats not the point, why is this and for that fact most of the other updates missing?
    I'm not real clear if 10.0 Server is update-able to 10.1 Server with the OS X 10.0-10.1 update CD for the regular OS X to which you may then UD to MacOSXUpdateCombo10.1.5, they mixed it up so you can't tell - or I can't tell.
    Mac OS X Server 10.1: Chart of Available Software Updates:
    http://docs.info.apple.com/article.html?artnum=42741
    See what I mean?
    Even OS X Server 10.0.3 Update would suffice. I'd appreciate you all poking around - I got nothing.
    Mac OS X Server 10.3.x on, stuff is easy to find, Server 10.2.x and earlier is a pain and this is the last time (hopefully) I'll need to do this.
    If anyone with these updates could contact me that would be great or just reply to this post, this server will not be online - just to be clear.
    Any help would be appreciated.
    hylas
    California, USA
    hylas[|at|]operamail[|dot|]com
    Macintoshes   Mac OS X (10.4.6)   System 1.0 - 7.6.1, MacOS 8.0 - 9.2.2, OS X 10.0 - 10.4.x Client and some Servers

    "Which took me about 5 seconds to find, by searching at
    http://www.apple.com/support/downloads/
    for 10.0 server
    and choosing "restrict to downloads"
    I've spent more than five seconds looking dear one.
    Mac OS X (10.0.4) Combined Update Information and Software
    http://docs.info.apple.com/article.html?artnum=75141
    is not:
    Mac OS X Server 10.0.4 Update: Document and Software
    http://docs.info.apple.com/article.html?artnum=120035
    it is required, though.
    Mac OS X Server 10.0 OZ691-3023-A
    Mac OS X Server 10.0 (has 10.0.3 4P13 on it) OZ691-3023-A
    /AppleSupport_Area/Apple_Software_Updates/Mac_OSX/downloads/062-8318.200106027/0z/10.0.4ServerUpdate.dmg.bin
    http://download.info.apple.com/MacOSX/691-3023.20010702/0z/10.0.4ServerUpdate.dmg.bin
    ^ No worky ^
    Title:
    Mac OS X Server 10.0.4
    Description:
    Installing the updated Server Admin on Mac OS X clients After installing the 10.0.4 Server Update, you may update your Mac OS X Server administration clients by copying the Server Admin application to them. Follow these steps to perform the copy: Install 10.0.4 Server Update, then restart. Start Apple File Services if necessary. Copy the Server Admin application from the /Application/Utilities folder to the /Shared Items/Public folder. On your Mac OS X client, install 10.0.4 Update if necessary. Connect to your Mac OS X Server, mount the Public folder. Copy the Server Admin application to your Mac OS X client. Requirements for Mac OS X Server 10.0.4 Update You must have previously installed the Mac OS X Server 10.0.3 software in order to install this update. In addition, this update requires that you install the Mac OS X 10.0.4 Update before proceeding.
    OS X Server 10.0.4 Receipts
    Essentials.pkg
    BSD.pkg
    SoftwareUpdate131.pkg
    10.0.1Update.pkg
    10.0.3Update.pkg
    10.0.2ServerUpdate.pkg
    EssentialServerSoftware.pkg
    MacOS_X_ServerAdmin.pkg
    MacintoshManagerAdmin.pkg
    MacintoshManagerServer.pkg
    QTSS3.pkg
    MinimalSystem.bom
    10.0.2Update.pkg
    10.0.4Update.pkg
    MicrosoftIE5.pkg
    10.0.4ServerUpdate.pkg
    NetBoot Extras: Information and Download
    http://docs.info.apple.com/article.html?artnum=120039
    It's a bit confusing, reread my initial post it's a real mess upgrading to 10.1 too.
    Thanks for trying though,
    Macintoshes   Mac OS X (10.4.6)  

  • How do i install mysql on my mac mini lion server?

    How do i install mysql on my mac mini lion server?

    I have this error log
    May 27 07:06:35 server servermgrd[13454]: -[AccountsRequestHandler(AccountsSystemConfigurationObservation) registerForKeychainEventNotifications]: SecKeychainAddCallback() status: -25297
    May 27 07:06:35 server servermgrd[13454]: servermgr_ipfilter:ipfw config:Notice:Flushed IPv4 rules
    May 27 07:06:35 server servermgrd[13454]: servermgr_ipfilter:ipfw config:Notice:Flushed IPv6 rules
    May 27 07:10:35 server servermgrd[13454]: No requests in 300 seconds, shutting down
    May 27 07:20:29 server ScreensharingAgent[13999]: [CL_INVALID_DEVICE] : OpenCL Error : Failed to create context! Invalid device
    May 27 07:26:03 server login[14203]: USER_PROCESS: 14203 ttys000
    May 27 07:26:42 server SafariDAVClient[14233]: ServerNotifications: Setting delegate to APSD
    May 27 07:26:43 server SafariDAVClient[14233]: Subscription request completed
    May 27 07:27:58 server SafariDAVClient[14284]: ServerNotifications: Setting delegate to APSD
    May 27 07:27:59 server SafariDAVClient[14284]: Subscription request completed
    May 27 07:29:03 server login[14203]: DEAD_PROCESS: 14203 ttys000
    May 27 07:29:09 server login[14331]: USER_PROCESS: 14331 ttys000
    May 27 07:47:30 server com.mysql.mysqld[15000]: 120527 07:47:30 mysqld_safe Logging to '/usr/local/mysql/data/server.martinhedegaard.dk.err'.
    May 27 07:47:30 server com.apple.launchd[1] (0x7f82db634810.anonymous.nohup[15222]): Bug: launchd_core_logic.c:9394 (25693):0
    May 27 07:47:30 server com.apple.launchd[1] (0x7f82db634810.anonymous.nohup[15222]): Switching sessions is not allowed in the system Mach bootstrap.
    May 27 07:47:30 server com.apple.launchd[1] (0x7f82db634810.anonymous.nohup[15222]): _vprocmgr_switch_to_session(): kr = 0x44c
    May 27 07:47:30 server com.apple.launchd[1] (0x7f82dc9015d0.anonymous.nohup[15223]): Bug: launchd_core_logic.c:9394 (25693):0
    May 27 07:47:30 server com.apple.launchd[1] (0x7f82dc9015d0.anonymous.nohup[15223]): Switching sessions is not allowed in the system Mach bootstrap.
    May 27 07:47:30 server com.apple.launchd[1] (0x7f82dc9015d0.anonymous.nohup[15223]): _vprocmgr_switch_to_session(): kr = 0x44c
    May 27 07:47:30 server com.mysql.mysqld[15000]: 120527 07:47:30 mysqld_safe Starting mysqld daemon with databases from /usr/local/mysql/data
    May 27 07:48:31 server Safari[541]: IPCClient: Server port 0 is invalid; looking it up again...
    May 27 09:06:34 server servermgrd[18040]: -[AccountsRequestHandler(AccountsSystemConfigurationObservation) registerForKeychainEventNotifications]: SecKeychainAddCallback() status: -25297
    May 27 09:06:35 server servermgrd[18040]: servermgr_ipfilter:ipfw config:Notice:Flushed IPv4 rules
    May 27 09:06:35 server servermgrd[18040]: servermgr_ipfilter:ipfw config:Notice:Flushed IPv6 rules
    May 27 09:09:01 server ScreensharingAgent[18184]: [CL_INVALID_DEVICE] : OpenCL Error : Failed to create context! Invalid device
    May 27 09:09:08 server SafariDAVClient[18193]: ServerNotifications: Setting delegate to APSD
    May 27 09:09:09 server SafariDAVClient[18193]: Subscription request completed
    May 27 09:10:34 server servermgrd[18040]: No requests in 300 seconds, shutting down
    May 27 09:29:44 server System Preferences[581]: about to perform command
    May 27 09:29:48 server com.mysql.mysqld[15000]: 120527 09:29:48 mysqld_safe mysqld from pid file /usr/local/mysql/data/server.martinhedegaard.dk.pid ended
    May 27 09:29:48 server com.mysql.mysqld[19056]: 120527 09:29:48 mysqld_safe Logging to '/usr/local/mysql/data/server.martinhedegaard.dk.err'.
    May 27 09:29:48 server com.apple.launchd[1] (0x7f82db62da20.anonymous.nohup[19280]): Bug: launchd_core_logic.c:9394 (25693):9
    May 27 09:29:48 server com.apple.launchd[1] (0x7f82db62da20.anonymous.nohup[19280]): Switching sessions is not allowed in the system Mach bootstrap.
    May 27 09:29:48 server com.apple.launchd[1] (0x7f82db62da20.anonymous.nohup[19280]): _vprocmgr_switch_to_session(): kr = 0x44c
    May 27 09:29:48 server com.apple.launchd[1] (0x7f82dc800da0.anonymous.nohup[19281]): Bug: launchd_core_logic.c:9394 (25693):0
    May 27 09:29:48 server com.apple.launchd[1] (0x7f82dc800da0.anonymous.nohup[19281]): Switching sessions is not allowed in the system Mach bootstrap.
    May 27 09:29:48 server com.apple.launchd[1] (0x7f82dc800da0.anonymous.nohup[19281]): _vprocmgr_switch_to_session(): kr = 0x44c
    May 27 09:29:48 server com.mysql.mysqld[19056]: 120527 09:29:48 mysqld_safe Starting mysqld daemon with databases from /usr/local/mysql/data
    May 27 09:29:49 server System Preferences[581]: status= 0
    May 27 09:29:49 server System Preferences[581]: stat /usr/local/mysql/data
    May 27 09:33:54 server login[14331]: DEAD_PROCESS: 14331 ttys000
    May 27 09:34:12 server com.apple.launchd.peruser.501[456] (com.apple.talagent[494]): Exited: Killed: 9
    May 27 09:34:12 server com.apple.launchd.peruser.501[456] ([0x0-0x3a03a].com.apple.AppleSpell[15293]): Exited: Killed: 9
    May 27 09:34:12 server com.apple.launchd.peruser.501[456] (com.apple.mdworker.pool.0[18053]): Exited: Terminated: 15
    May 27 09:34:12 server loginwindow[98]: DEAD_PROCESS: 98 console
    May 27 09:34:12 server com.apple.dock.extra[19467]: Could not connect the action buttonPressed: to target of class NSApplication
    May 27 09:34:12 server com.apple.dock.extra[19467]: 2012-05-27 09:34:12.356 com.apple.dock.extra[19467:1707] Could not connect the action buttonPressed: to target of class NSApplication
    May 27 09:34:12 server com.apple.dock.extra[19467]: Could not connect the action buttonPressed: to target of class NSApplication
    May 27 09:34:12 server com.apple.dock.extra[19467]: 2012-05-27 09:34:12.357 com.apple.dock.extra[19467:1707] Could not connect the action buttonPressed: to target of class NSApplication
    May 27 09:34:12 server com.apple.dock.extra[19467]: Could not connect the action buttonPressed: to target of class NSApplication
    May 27 09:34:12 server com.apple.dock.extra[19467]: 2012-05-27 09:34:12.357 com.apple.dock.extra[19467:1707] Could not connect the action buttonPressed: to target of class NSApplication
    May 27 09:34:12 server com.apple.dock.extra[19467]: Could not connect the action buttonPressed: to target of class NSApplication
    May 27 09:34:12 server com.apple.dock.extra[19467]: 2012-05-27 09:34:12.358 com.apple.dock.extra[19467:1707] Could not connect the action buttonPressed: to target of class NSApplication
    May 27 09:34:12 server shutdown[19471]: reboot by martinhedegaard:
    May 27 09:34:12 server shutdown[19471]: SHUTDOWN_TIME: 1338104052 753955
    rc.server[ 8 ]: Tuning server for 4 GB (rounded down).
    May 27 09:34:22 localhost bootlog[0]: BOOT_TIME 1338104062 0
    May 27 09:34:33 localhost UserEventAgent[30]: starting CaptiveNetworkSupport as SystemEventAgent built May 25 2011 12:27:35
    May 27 09:34:33 localhost UserEventAgent[30]: CertsKeychainMonitor: configuring
    May 27 09:34:33 localhost UserEventAgent[30]: WirelessAirPortDeviceNameCopy(): no BSD interface name found for object 12551
    May 27 09:34:33 localhost UserEventAgent[30]: CaptiveNetworkSupport:CaptiveSCCopyWiFiDevices:388 WiFi Device Name == NULL
    May 27 09:34:23 localhost com.apple.launchd[1]: *** launchd[1] has started up. ***
    May 27 09:34:32 localhost com.apple.launchd[1] (com.apple.powerd): Unknown value for key POSIXSpawnType: Interactive
    May 27 09:34:32 localhost com.apple.launchd[1] (com.apple.sandboxd): Unknown value for key POSIXSpawnType: Interactive
    May 27 09:34:32 localhost com.apple.launchd[1] (com.apple.xgridd.pcastserver): Bug: launchd_core_logic.c:5193 (25693):2
    May 27 09:34:32 localhost com.apple.launchd[1] (com.apple.xgridd.pcastserver): Path monitoring failed on "/var/pcast/server/xgridd/keepalive": No such file or directory
    May 27 09:34:36 localhost airportd[47]: _processDLILEvent: en1 attached (down)
    May 27 09:34:36 localhost mDNSResponder[31]: mDNSResponder mDNSResponder-320.16 (Mar 17 2012 21:31:16) starting OSXVers 11
    May 27 09:34:36 localhost UserEventAgent[30]: CaptiveNetworkSupport:CreateInterfaceWatchList:2788 WiFi Devices Found.
    May 27 09:34:36 localhost UserEventAgent[30]: CaptiveNetworkSupport:CaptivePublishState:1211 en1 - PreProbe
    May 27 09:34:36 localhost UserEventAgent[30]: CaptiveNetworkSupport:CaptiveSCRebuildCache:81 Failed to get service order
    May 27 09:34:36: --- last message repeated 1 time ---
    May 27 09:34:36 localhost UserEventAgent[30]: CaptiveNetworkSupport:CaptivePublishState:1211 en1 - PreProbe
    May 27 09:34:36 localhost UserEventAgent[30]: CaptiveNetworkSupport:CaptiveSCRebuildCache:81 Failed to get service order
    May 27 09:34:36: --- last message repeated 1 time ---
    May 27 09:34:36 localhost UserEventAgent[30]: CaptiveNetworkSupport:CaptivePublishState:1211 en1 - PreProbe
    May 27 09:34:37 server configd[35]: setting hostname to "server.martinhedegaard.dk"
    May 27 09:34:37 server configd[35]: network configuration changed.
    May 27 09:34:40 server systemkeychain[52]: done file: /var/run/systemkeychaincheck.done
    May 27 09:34:40 server configd[35]: network configuration changed.
    May 27 09:34:40: --- last message repeated 1 time ---
    May 27 09:34:40 server mDNSResponder[31]: D2D_IPC: Loaded
    May 27 09:34:40 server mDNSResponder[31]: D2DInitialize succeeded
    May 27 09:34:40 server com.apple.ucupdate.plist[83]: ucupdate: Checked 1 update, no match found.
    May 27 09:34:40 server com.apple.pfctl[92]: No ALTQ support in kernel
    May 27 09:34:40 server com.apple.pfctl[92]: ALTQ related functions disabled
    HeadlessStartup: Already setup or this is an upgrade so we will not set the password.
    May 27 09:34:40 server emond[108]: SetUpLogs: uid = 0 gid = 0
    May 27 09:34:40 server named[78]: starting BIND 9.7.3-P3 -f
    May 27 09:34:40 server named[78]: built with '--mandir=/usr/share/man' '--infodir=/usr/share/info' '--disable-dependency-tracking' '--prefix=/usr' '--sysconfdir=/private/etc' '--localstatedir=/private/var' '--enable-atomic=no' '--with-openssl=yes' '--with-gssapi=yes' '--enable-symtable=none' 'CFLAGS=-arch x86_64 -arch i386 -g -Os -pipe -gdwarf-2 -D__APPLE_USE_RFC_2292' 'LDFLAGS=-arch x86_64 -arch i386 ' 'CXXFLAGS=-arch x86_64 -arch i386 -g -Os -pipe '
    May 27 09:34:40 server emond[108]: SetUpLogs: opening /Library/Logs/EventMonitor/EventMonitor.error.log
    May 27 09:34:40 server com.apple.SystemStarter[84]: Starting MySQL database server
    May 27 09:34:40 server loginwindow[97]: Login Window Application Started
    May 27 09:34:40 server com.apple.usbmuxd[82]: usbmuxd-268.5 on Jan  5 2012 at 03:34:01, running 64 bit
    May 27 09:34:40 server UserEventAgent[30]: WebUserEventAgent: installed
    May 27 09:34:42 server UserEventAgent[30]: Registered Workstation service - Wellness Guiden Server [3c:07:54:72:75:94]._workstation._tcp.
    May 27 09:34:43 server PasswordService[93]: -[PasswordServerPrefsObject getSearchBase]: Unable to locate search base: -1 Can't contact LDAP server
    May 27 09:34:43 server PasswordService[93]: -[PasswordServerPrefsObject loadXMLData]: Unable to locate passwordserver config record's plist attribute: -1 Can't contact LDAP server
    May 27 09:34:43 server PasswordService[93]: -[PasswordServerPrefsObject getSearchBase]: Unable to locate search base: -1 Can't contact LDAP server
    May 27 09:34:43 server PasswordService[93]: -[PasswordServerPrefsObject saveXMLData]: ldap_modify_ext_s of the passwordserver config record's plist attribute: -1 Can't contact LDAP server
    May 27 09:34:43 server named[78]: command channel listening on 127.0.0.1#54
    May 27 09:34:43 server mds[95]: (Normal) FMW: FMW 0 0
    May 27 09:34:44 server com.mysql.mysqld[117]: 120527 09:34:44 mysqld_safe Logging to '/usr/local/mysql/data/server.martinhedegaard.dk.err'.
    May 27 09:34:44 server com.apple.launchd[1] (0x7f82db403900.anonymous.nohup[359]): Bug: launchd_core_logic.c:9394 (25693):2
    May 27 09:34:44 server com.apple.launchd[1] (0x7f82db403900.anonymous.nohup[359]): Switching sessions is not allowed in the system Mach bootstrap.
    May 27 09:34:44 server com.apple.launchd[1] (0x7f82db403900.anonymous.nohup[359]): _vprocmgr_switch_to_session(): kr = 0x44c
    May 27 09:34:44 server com.apple.launchd[1] (0x7f82db62bfd0.anonymous.nohup[360]): Bug: launchd_core_logic.c:9394 (25693):0
    May 27 09:34:44 server com.apple.launchd[1] (0x7f82db62bfd0.anonymous.nohup[360]): Switching sessions is not allowed in the system Mach bootstrap.
    May 27 09:34:44 server com.apple.launchd[1] (0x7f82db62bfd0.anonymous.nohup[360]): _vprocmgr_switch_to_session(): kr = 0x44c
    May 27 09:34:44 server com.mysql.mysqld[117]: 120527 09:34:44 mysqld_safe Starting mysqld daemon with databases from /usr/local/mysql/data
    May 27 09:34:44 server com.apple.launchd[1] (0x7f82dd0023b0.anonymous.nohup[620]): Bug: launchd_core_logic.c:9394 (25693):0
    May 27 09:34:44 server com.apple.launchd[1] (0x7f82dd0023b0.anonymous.nohup[620]): Switching sessions is not allowed in the system Mach bootstrap.
    May 27 09:34:44 server com.apple.launchd[1] (0x7f82dd0023b0.anonymous.nohup[620]): _vprocmgr_switch_to_session(): kr = 0x44c
    May 27 09:34:44 server com.apple.launchd[1] (0x7f82dd0023b0.anonymous.nohup[621]): Bug: launchd_core_logic.c:9394 (25693):0
    May 27 09:34:44 server com.apple.launchd[1] (0x7f82dd0023b0.anonymous.nohup[621]): Switching sessions is not allowed in the system Mach bootstrap.
    May 27 09:34:44 server com.apple.launchd[1] (0x7f82dd0023b0.anonymous.nohup[621]): _vprocmgr_switch_to_session(): kr = 0x44c
    May 27 09:34:45 server freshclam[79]: Can't query current.cvd.clamav.net
    May 27 09:34:45 server freshclam[79]: Invalid DNS reply. Falling back to HTTP mode.
    May 27 09:34:46 server freshclam[79]: Can't get information about database.clamav.net: nodename nor servname provided, or not known
    May 27 09:34:46 server freshclam[79]: Can't read main.cvd header from database.clamav.net (IP: )
    May 27 09:34:47 server rpcsvchost[660]: sandbox_init: com.apple.msrpc.netlogon.sb succeeded
    May 27 09:34:47 server configd[35]: network configuration changed.
    May 27 09:34:48 server servermgrd[88]: servermgr_accounts: noteDirectorySearchPolicyChanged (reopening nodes)
    May 27 09:34:49 server ntpd[77]: proto: precision = 1.000 usec
    May 27 09:34:50 server loginwindow[97]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    May 27 09:34:50 server com.apple.launchctl.LoginWindow[673]: com.apple.findmymacmessenger: Already loaded
    May 27 09:34:50 server loginwindow[97]: Login Window Started Security Agent
    May 27 09:34:50 server SecurityAgent[682]: Echo enabled
    May 27 09:34:51 server WindowServer[143]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    May 27 09:34:51 server freshclam[79]: Current functionality level = 61, recommended = 63
    May 27 09:34:53 server ScreensharingAgent[695]: [CL_INVALID_DEVICE] : OpenCL Error : Failed to create context! Invalid device
    May 27 09:34:54 server screensharingd[694]: 3891612: (connectAndCheck) Untrusted apps are not allowed to connect to or launch Window Server before login.
    May 27 09:34:54 server screensharingd[694]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    May 27 09:35:10 server sandboxd[713] ([712]): xscertd(712) deny job-creation
    May 27 09:35:10 server UserEventAgent[30]: CertsKeychainMonitor: ready to process keychain & timer events
    May 27 09:35:48 server servermgrd[88]: getting service list
    May 27 09:35:49 server servermgrd[88]: servermgr_ipfilter:ipfw config:Notice:Flushed IPv4 rules
    May 27 09:35:49 server servermgrd[88]: servermgr_ipfilter:ipfw config:Notice:Flushed IPv6 rules
    May 27 09:36:08 server SecurityAgent[682]: User info context values set for martinhedegaard
    May 27 09:36:08 server SecurityAgent[682]: Login Window login proceeding
    May 27 09:36:08 server loginwindow[97]: Login Window - Returned from Security Agent
    May 27 09:36:08 server loginwindow[97]: USER_PROCESS: 97 console
    May 27 09:36:08 server com.apple.launchd.peruser.501[703] (com.apple.ReportCrash): Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    May 27 09:36:08 server com.apple.launchctl.Aqua[757]: load: option requires an argument -- D
    May 27 09:36:08 server com.apple.launchctl.Aqua[757]: usage: launchctl load [-wF] [-D <user|local|network|system|all>] paths...
    May 27 09:36:09 server com.apple.launchd.peruser.501[703] (com.apple.launchctl.Aqua[757]): Exited with code: 1
    May 27 09:36:09 server ScreensharingAgent[773]: [CL_INVALID_DEVICE] : OpenCL Error : Failed to create context! Invalid device
    May 27 09:36:09 server UserEventAgent[30]: CaptiveNetworkSupport:CNSServerRegisterUserAgent:187 new user agent port: 17183
    May 27 09:36:10 server com.apple.dock.extra[802]: Could not connect the action buttonPressed: to target of class NSApplication
    May 27 09:36:10 server com.apple.dock.extra[802]: 2012-05-27 09:36:10.163 com.apple.dock.extra[802:1707] Could not connect the action buttonPressed: to target of class NSApplication
    May 27 09:36:10 server com.apple.dock.extra[802]: Could not connect the action buttonPressed: to target of class NSApplication
    May 27 09:36:10 server com.apple.dock.extra[802]: 2012-05-27 09:36:10.164 com.apple.dock.extra[802:1

  • Edit the default wiki template on Mac OS X Server

    Hello,
    I'm so new to this, I have a Mac Xserve with Mac OS X Server, I successfully enabled the following services and all up and running smoothly according to the criteria of my company:
    ical Server, ichat Server, Web Server, MySQL, Podcast Producers Server, Mail Server, Wiki, and Blog Server. http://www.macsrv.cmrdi.sci.eg
    I need to know how to edit the main template of the wiki and blog server (start page) to be able to add our company logo and so....
    otherwise, I need to know if I can ser Unicode on it to add RTL languages like Arabic, I know I can type Arabic in the topics and there is not problems with this.
    Regards

    Start by reading this: http://images.apple.com/server/macosx/docs/ExtendingYour_WikiServer.pdf
    You will create a custom theme. Copy all the .xsl files into your theme folder. Modify default.xsl for most of the sub-level pages. Modify group_listing.xsl for /groups and /users pages. Your server index page is located in Library\WebServer\Documents. Most of what you want to do can probably be done through CSS.
    Once your custom theme is finished set it as the default in the Admin Panel.

  • Mailman on Mac OS X Server 10.3.9 Problems

    We have a few mailing lists on our old PowerMac G4/Dual 450 machine. We have Mac OS X Server 10.3.9 on there and we are using Mailman for list management.
    Mailman is not sending anything through the lists. I repaired permissions via the Apple repair permissions function of Disk Utility and since there is a bug in that process in relation to Mailman I ran the check_perm -f command from Terminal to fix them to what Mailman wants. That usually fixes most of the problems with the Mailman system. Also restarted the qrunner and for a time that fixed it. But that isn't fixing it now.
    I know the OS is old and we plan to replace it with a brand new X-Serve with Mac OS X Server 10.5.x. But for now the older server still needs to do its' job.
    Any help would be greatly appreciated.
    Thanks,
    Ben

    Yes and they show that the server received the message to the lists but I don't see anything being sent from the lists. I did a test message to one of our lists and got an error message back that said:
    Your message
    To: [email protected]
    Subject: Helpdesk-users Reminder
    Sent: Fri, 12 Sep 2008 10:48:37 -0500
    did not reach the following recipient(s):
    [email protected] on Wed, 17 Sep 2008 11:40:31 -0500
    The e-mail system was unable to deliver the message, but did not
    report a specific reason. Check the address and try again. If it still
    fails, contact your system administrator.
    < lists.sandburg.edu #4.0.0 X-Postfix; temporary failure. Command
    output: couldn't connect to lmtpd: Connection refused_ 421 4.3.0
    deliver: couldn't connect to lmtpd_ >
    So how do I fix lmtpd?
    Thanks,
    Ben

  • Photo Gallery Software for Mac OS X Server

    I'm porting my Linux server infrastructure over to Mac OS X Server. I've successfully moved over my DNS, Mail and most of my web sites to Mac without a problem. However, the last website is causing me a bit of pain. In Linux I was using Gallery 2 (http://gallery.menalto.com/), but I'm not sure how to get this to work on Mac OS X. In particular there are a bunch of dependencies that I'm not sure exist in Mac (ffmpeg, etc.)
    * Is there an alternative photo gallery software that people use which may install/work better on the Mac? We have wiki and blog services in the Web Server Admin pane, but I don't see a photo gallery service.
    * Has anybody had success in using gallery2 over to the Mac? What dependencies were needed and how did you find them?
    Thanks,
    Scott

    Hi
    For me it has to be RumpusFTP Server:
    http://www.maxum.com/Rumpus/
    It has a secure web interface - no need to open ports 20, 21. No need for dedicated FTP client software for uploading and downloading. Supports the most commonly used browsers. Multi-platform support and can be installed on a standard client OS.
    Tony

  • Am I qualify to join Mountain Lion if I purchased Lion through Mac App Store lately in early July

    I purchased the Mac OS X Lion through Mac App Store in early July. Am I qualify to join the Up-to-date program for Mountain Lion? If yes, how is this be done?

    No you are only qualified for an update when you bought a mac that doesnt include mountain lion. Buying the older version OS X lion does not fall into that category.
    From apple website :
    If you recently bought a new Mac that doesn’t include OS X Mountain Lion, you can upgrade for free from the Mac App Store. You may qualify for the Up-to-Date Program if you bought your Mac from Apple or an Apple Authorized Reseller on or after June 11, 2012.

Maybe you are looking for