Archive for the ‘Mac OS X’ Category
Monday, December 14th, 2009
318 has decided to open source our ASR Setup Tool under GPLv3. The tool can now be found at http://asrsetup.sourceforge.net. The ASR Setup Tool is built as a wrapper for the asr command line suite from Apple. The description from SourceForge:
Developed by 318 Inc., ASR Setup Toll is an application for setting up Apple Software Restore (“ASR”). In the context of the ASR Setup Tool, ASR is used for setting up a multicast stream that can then be leveraged for imaging Mac OS X computers.
We hope you enjoy!
Tags: Apple, Apple Software Restore, ASR Setup Tool, Imaging, Mac OS X
Posted in Mac OS X, Mac OS X Server, Mass Deployments | Comments Off
Tuesday, December 8th, 2009
For what it’s worth, we take ours from the command line. It helps keep proper track of the names screens. Simply open up a terminal window on a remote server via Apple Remote Desktop (ARD) and run the following command:
sleep 3; screencapture -iw ~/Desktop/filename.png
When you run that full string as a command you’ll have 3 seconds after hitting enter to highlight your target window, at which point your cursor will switch to the photo in window selection mode. Alternatively, you can run:
sleep 3; screencapture -iwc
Which will capture the picture to the remote machines clipboard (and can then be copied via ARD, and opened in Preview (File->new from clipboard).
Tags: Apple Remote Desktop, screencapture
Posted in Mac OS X, Mac OS X Server | Comments Off
Friday, December 4th, 2009
Many environments have numerous Desktops or Servers which we may need to support remotely, but lack a full-fledged VPN solution. If the client has a server on a DMZ, or is forwarding SSH ports to a specific server, you can use SSH to then access other machines otherwise protected by the firewall.
For instance, say client MyCo has two servers: backup.myco.com, and mail.myco.com. In this scenario, the backup server has no remote access, and mail.myco.com has access available over port 22. Lets say the need arises to provide remote support for the backup server, which has both SSH and ARD/VNC enabled.
In this scenario, it is possible to open up a remote ARD session to the backup server from my remote laptop by utilizing ssh tunneling. To do so, I run the following command from my laptop:
ssh -L 5901:backup.myco.com:5900 -N mycoadmin@mail.myco.com
This command tells ssh to open up the local port: 5901, and tunnel it to mail.myco.com, which will in turn forward traffic to server backup.myco.com over port 5900.
Once I have ran this command, I can open up a VNC connection to my local machine, which will then be forwarded through ssh to the clients private backup server:
open vnc://127.0.0.1:5900
Alternatively, you may only want shell access to the firewalled server, to accomplish that, we can instead open up port with ssh (once again, from my laptop):
ssh -L 50022:backup.myco.com:22 -N mycoadmin@mail.myco.com
From here I can ssh to the local port, which will once again forward to the backup server (this time over port 22):
ssh mycoadmin@127.0.0.1 -p 50022
Considerations:
In order for this to work, ssh must be enabled on any client or server that you want to access. Also, publicly accessible server must be able to resolve the target name that you provide. For instance, in the above example if “backup.myco.com” doesn’t properly resolve on mail.myco.com, then the solution will not work. In this instance, you could specify the internal IP of the backup server:
ssh -L 50022:192.168.55.10:22 -N mycoadmin@mail.myco.com
The local port is somewhat arbitrary (5901 and 50022 in my examples), you just want to make sure that the port is not in use, which can be determined by looking at the output of `netstat -a -p TCP`, or through `lsof -i TCP:50022` where ’50022′ is the local port you want to open.
Posted in Linux, Mac OS X, Mac OS X Server, Network Architecture | Comments Off
Monday, November 9th, 2009
For those considering a migration for Snow Leopard or those who have already moved into Snow Leopard, you will be interested to know that Apple has released the 10.6.2 update that has been in progress for some time. Updates and issue resolutions that are included (from Apple):
- an issue that might cause your system to logout unexpectedly
- a graphics distortion in Safari Top Sites
- Spotlight search results not showing Exchange contacts
- a problem that prevented authenticating as an administrative user
- issues when using NTFS and WebDAV file servers
- the reliability of menu extras
- an issue with the 4-finger swipe gesture
- an issue that causes Mail to quit unexpectedly when setting up an Exchange server Address Book becoming unresponsive when editing
- a problem adding images to contacts in Address Book
- an issue that prevented opening files downloaded from the Internet
- Safari plug-in reliability
- general reliability improvements for iWork, iLife, Aperture, Final Cut Studio, MobileMe, and iDisk
- an issue that caused data to be deleted when using a guest account
Mac OS X 10.6.2 represents Apple coming another step to making Snow Leopard ready for mass integration in most any environment. If you have not already done so, consider contacting your 318 representative now to start planning for your migration!
Tags: 10.6.2, Mac OS X
Posted in Mac OS X | Comments Off
Thursday, October 29th, 2009
The vm_stat command in Mac OS X will show you the free, active, inactive, wired down, copy-on-write, zero filled, and reactivated pages for virtual memory utilization. You will also see the pageins as well as pageouts. If you wish to write these statistics routinely then you can use the vm_stat command followed by an integer. For example, to see the virtual memory statistics every 5 seconds:
vm_stat 5
Tags: vm_stat
Posted in Mac OS X, Mac OS X Server | Comments Off
Monday, October 19th, 2009
Ever lost the data on your computer and then realized that your media library was on your iPod or iPhone but not on your computer? Or maybe you had some data backed up but not your massive media library? Well what you need is iTunes backwards: copy the media files from your iPod or iPhone to you computer. Luckily there’s Senuti, which is iTunes spelled backwards because it does just that; it copies data from your mobile device into the iTunes library. This should not be used as a backup tool but it does make for a nice recovery path in some cases!
Tags: backup, data loss, iPhone, ipod, itunes, restore
Posted in Mac OS X | Comments Off
Saturday, October 3rd, 2009
Have you struggled with Open Directory backups? Do you open up Server Admin and click on the Archive button when an alarm in your calendar tells you to do so? Well, we’re gonna’ help you out then. We’re going to automate backing up your Open Directory. We’re going to invoke the backups through launchd and we’re going to keep them for an amount of time you determine and automatically prune the old ones. We’re going to let you choose the location to store them and the password to unlock them. And we’re going to let you do all this through a graphical package called the 318 Auto Archiver.
Originally written for our own staff we now open it up to you as well.
Tags: Open Directory Auto Archiver
Posted in Mac OS X, Mac OS X Server, Scripts | Comments Off
Wednesday, September 23rd, 2009
Virtual Private Networks, abbreviated “VPN” is technology that that allows users to connect from one place to another securely. What makes it secure is that the connection between point A and point B is encrypted. An encrypted tunnel is built between Point A and Point B, and then data is passed through that tunnel.
VPN’s come in many different types (protocols). Some of the most common include the following:
PPTP
Often called “dial up VPNs”, it technically extends the functionality of PPP. It was originally started by Microsoft, US Robotics, Ascend Communication, 3Com, and ECI Telematics. Their first draft of their IETF document for the protocol extension was submitted in June, 1996. The protocol extension is supported by Linux, Mac and Windows workstations.
Current versions of all three operating systems include the VPN Client application pre-installed in the operating system. All three operating system server versions can also be setup to allow PPTP connections. A Microsoft Routing and Remote Access Server (RRAS) typically uses Microsoft Point to Point Encryption (MPPE) which is based on RSA RC4 and supports up to 128 bit encryption.
IPSec
IPSec is short for Internet Protocol Security. It works on Layer 3, and is often called “Site to Site VPN”. It is usually used to connect one LAN to another LAN, most times using two hardware VPN units at each side communicating with each other. It can also be used to connect a workstation to the corporate LAN, typically using proprietary software from the VPN manufacturer/developer (although you can sometimes use the built in software in the operating system – as is the case with Windows). The protocol can function in two modes (Transport and Tunnel) and provides end to end security by authenticating and encrypting the packets between parties. It can support up to 168bit encryption with 3DES.
SSL VPN
SSL VPN is a type of VPN that allows communication to happen over https via web browsers. The main advantage of SSL VPN is that no additional client software is required besides a web browser. Since no software needs to be installed on a computer, a user can access the corporate network via VPN from just about any computer (i.e, Public Computer, kiosk, etc.). The disadvantage is that because it tends to make the applications you would normally use a web type of application, you often lose some of the intended user experience of those converted applications.
L2TP
L2TP is short for Layer 2 Tunneling Protocol. It doesn’t do any encryption on it’s own, and is often used in conjunction with IPSec (L2TP/IPsec VPN). The biggest thing to remember about L2TP is that it allows more types of applications to communicate through the VPN connection that otherwise are not supported in a standard IPSec implementation.
In a nutshell, deciding which VPN protocol to implement depends on your budget, the hardware that you have, what will be connecting (workstation/user, or LAN to LAN) and the ease of use. Please feel free to contact us, and we will be happy to help plan out your VPN infrastructure, or answer any questions that you may have.
Tags: L2TP, PPTP, SSL, VPN
Posted in Mac OS X, Mac OS X Server, Network Architecture, Security, Windows | Comments Off
Monday, August 31st, 2009
In Mac OS X 10.5 and below, the default behavior was to take screenshots (command-Shift-4) by creating a file on the desktop automatically named Picture 1.png. The second file would be created as Picture 2.png and so forth. In Snow Leopard though, the screen shots are named Screen shot followed by the date (YYYY-MM-DD) and then the time (HH.MM.SS). So if I took a screen shot at 3pm today it would be called “Screen shot 2009-08-31 at 3.01.05 PM”. This keeps them showing up in the same order they otherwise would have. At first I wasn’t sure whether I liked this change, but now I’m sure that I do. The defaults commands that were used to change the default image type and the location are still applicable.
Tags: Mac OS X 10.6, screencapture, screenshot, Snow Leopard
Posted in Mac OS X | Comments Off
Friday, July 24th, 2009
BRU Server 2.0 was released this week, offering a long anticipated update to the popular cross platform backup suite of applications. The main two features that the TOLIS group is highlighting include Encryption of backup target sets and client initiated backup.
Whether you are a BRU, Atempo, Bakbone, Backup Exec or Retrospect environment, 318 can assist you with planning, testing, verifying or restoring backups. Contact your 318 account manager today for more details.
Tags: backup, BRU, BRU Server 2.0, Linux, Mac, Windows
Posted in Linux, Mac OS X, Windows, Xsan | Comments Off
Monday, July 20th, 2009
Microsoft Office 2008 Service Pack 2 for the Mac is available as of 10am today. Microsoft lists that the update first and foremost provides more “speed, stability and compatibility.” There are also new features in applications. For example, PowerPoint has new animation features and you can create new default themes.
But one of the larger overall features is the addition of Document Connection, which allows users to access and browse documents located on SharePoint servers and in the Microsoft Office Live Workspace. Microsoft is clearly not forgetting about the Mac in their new Software+Services model. They even announced official browser support for Safari 4 as a part of this overall strategy.
And the software is faster. In our tests, each of the office applications opened at least one to two seconds faster than before installing SP2.
Download and start testing it out today at http://www.microsoft.com/mac/downloads.mspx or click here to download the dmg file directly.
For more information on this specific update:
http://support.microsoft.com/kb/973254
Tags: office 2008, SP2, update
Posted in Mac OS X | Comments Off
Monday, July 13th, 2009
At 318 we see a number of Final Cut Server installations. And for most of those jobs you should use an Xsan, have editors edit-in-place and develop custom automations. But Final Cut Server doesn’t have to be super complicated; nor does it have to be super expensive to integrate. At the end of the day it’s all about what a customer is expecting to get out of the product – and that’s how the product is developed and priced: to scale with the customers needs.
One of the most marketable and best features of Final Cut Server is that it is a way to catalog assets. These assets can be stored anywhere you want, provided that they are reliably accessible by the server. Given a username and password, users of Final Cut Server can then access the assets whether or not they can actually get to them using server shares or flat file systems. This allows Final Cut Server to bring logic to an otherwise chaotic form of storing data.
Once catalogued you can then tag assets with metadata. This means that when you go to find assets in the future you can do so quickly and easily. You can preview, annotate and then download those assets, no matter where they are stored – even on a Drobo or some large Firewire media sets. And if you decide to edit-in-place in the future, the fact that assets are stored in a logical space (called a Device) means that if you see the value, that you have an easy upgrade into more online media, such as an Xsan volume – but you don’t have to do it all at once to start seeing value.
And value is the key aspect of Final Cut Server. You can spend as much or as little as you need in order to get value out of the product. Sometimes the smallest features are what organizations will derive the most value out of. Not always, but sometimes… And when you see the value of the smaller features you can then make a decision based on your organizations goals and workflows what else will be of value. If you’d like to discuss a Final Cut Server implementation, whether it’s the basic initial installation, complicated workflow integration or custom scripting, contact 318 for more information. We’re here to help, whether or not the implementation is on the cheap.
Tags: Atlanta, Chicago, Denver, Detroit, drobo, final cut server, firewire, Los Angeles, Minneapolis, New York, Portland, Santa Barbara, Seattle, value, Xsan
Posted in Mac OS X, Xsan | Comments Off
Monday, June 29th, 2009
Connecting to 318’s AquaConnect Terminal Server is very easy. In fact, it is much like connecting to our Windows TS systems. You can use the same credentials and domain, but need to make a few adjustments to ensure that the user environment works properly.
1. Open RDC. (CoRD also works but this article does not cover it).
enter the address: aqua1.318.com. See the attached screen shot “RDC Computer Window.pdf”
2. Open the Preferences (Cmd-comma).
3. In the Login info pane, enter your Active Directory credentials, using three18.com as the domain. See the attached screen shot “RDC Login.pdf”
4. In the Display pane, you can set this to your preference (some people like it to go full screen, others prefer it to be in a separate window). Note that if you select to use a separate window, you’ll need it to be able to fit a full 1280×800 window in order for Katana to look right. Play with this setting and settle on whatever you prefer.
5. For the Keyboard settings, you will need to map the Apple key to the Windows Start key. See the attached screen shot, “RDC Keyboard”.
6. When you have set the Preferences, close the Preferences window and click Connect.
When you click Connect the first time, it will take a little bit of time to create your account on the server; some users have reported getting kicked out of their session at this point. Don’t despair; it’s just a timeout and is only happening because it is trying to build the account. Once the account is created, you should have no problem reconnecting.
You can now adjust your environment (dock, Desktop, etc.) to your liking.
Posted in Mac OS X, Mac OS X Server | Comments Off
Friday, May 22nd, 2009
By default, the Zenoss monitoring system tends to send extraneous warnings everyday. The thresholds for these warnings can be adjusted to create fewer, more pertinent warning messages. For example, BakerXserve is set to send a warning when the Ethernet utilization on port en0 exceeds 75% of the maximum. That happens every day. Changing that threshold setting to 90% would result in fewer, more meaningful warnings. These are the steps to adjust a device threshold using COMPUTER as an example.
NOTE: Adjusting a Performance Template changes that template for EVERY DEVICE that uses it. Changing the ethernetCsmacd in this example from 75% to 90% will change the threshold to 90% for ALL DEVICES that use that template.
1. Look at the warning that was sent to an email address. For the COMPUTER example, here is the information:
Subject: [zenoss] COMPUTER threshold of high utilization exceeded: current value 1796033.47
Device: COMPUTER
Component: en0
Severity: Warning
Time: 2009/05/21 23:08:22.000
Message: Threshold of high utilization exceeded: current value 1796033.47
This tells you that the device sending the warning is BakerXserve, the component having the issue is en0 which is the main Ethernet port, and that the threshold that was exceeded is the high utilization threshold.
2. Login to Zenoss. (There’s information on that in another Kbase article.)
3. In the Dashboard, click on the device in the Device Issues portal.
4. In the Device Status portal, click on the correct Component Type. In this example we click on ipInterface since we’re interested in the Ethernet port.
5. In the Interfaces portal, click on the correct interface. In this example, click on the en0 interface.
6. In the resulting window you will see the Status of the interface including some performance graphs. Click on the Templates tab.
7. Click on the correct Performance Template. You can find the correct one from its name or description. In this case, there’s only one and it’s named ethernetCsmacd.
8. In the Thresholds portal, click on the threshold that is listed in the warning. In this case, it’s the high utilization threshold.
9. The resulting window shows the settings for the high utilization threshold. There are several settings but we’re most interested in the Min Value and Max Value fields. There is nothing in the Min Value field and we’ll leave that as is. It may be used in other templates. The Max Value field contains a calculation for the number of bytes sent and received: (here.speed or 1e9) / 8 * .75. To adjust this from 75% of the maximum to 90% of the maximum change the .75 to .90 and click the Save button.
10. Back in the Performance Template window, you may have to change the description and clicked the Save button. This one said “Standard ethernet interface template with 75% utilization threshold” which I changed to “Standard ethernet interface template with 90% utilization threshold.”
At this point you can log out of Zenoss and keep an eye on any warnings your device may send for the next 24 hours.
Posted in Mac OS X, Mac OS X Server, Network Architecture | Comments Off
Wednesday, May 20th, 2009
Using Transmogrifier With Final Cut Server
Transmogrifier is a python framework created to assist with the importing and exporting of assets from Final Cut Server to various export formats (currently YouTube and BrightCove are supported).
Getting Started
The primary interface to the Transmogrifier framework is provided via the executable file ‘transmogrifier’. Here is the usage output for this file:
Usage:
transmogrifier [-f configfile] [-d supportdir] [-a action] [-t mediatitle]
transmogrifier -o BrightCove -t MyAsset [-f configfile] [-d supportdir] [-a action]
transmogrifier -o BrightCove -a preflightCheck|upload -t MyAsset [-f configfile] [-d supportdir]
transmogrifier -a createSupportFolders [-o YouTube] [-f configfile] [-d supportdir]
Flags:
-h — displays this help message
-f filepath — Use specified config file
-o target — output target, i.e. ‘BrightCove’, ‘YouTube’
-d supportdir — path to support folder, this is typically read out of the configuration file
-t title — title of the asset.
-a action — Perform the requested action. default: “upload”
“upload”
“preflightCheck”
“createSupportFolders”
See attached Introduction PDF for more info.
Posted in Editorial, Mac OS X | Comments Off
Tuesday, May 19th, 2009
ClickToFlash is an alternative flash plugin for Safari.
It prevents flash from autoloading on a webpage, you have the ability to add certain domains to a whitelist, or you can just “click to flash” to load the flash element for only that instance.
Great for browsing flash heavy websites that love to blast music and bring your browser to a crawl as flash loads. Also
One drawback is if the flash is old and includes an out of date version check, it will report your flash plugin as needing to be upgraded (this is because clicktoflash hijacks the primary flash file type handler, and then when clicked, changes the filetype to an older one that Adobe still recognizes).
Direct link to download version 1.4.1 (current as of this writing): http://s3.amazonaws.com/clicktoflash/ClickToFlash-1.4.1.zip
Works in Safari 3 and 4 beta, but only 10.5 for now.
Posted in Mac OS X | Comments Off
Friday, May 15th, 2009
Google Apps has taken another step towards the capacity for enterprise integration. Google Apps Connector for BlackBerry Enterprise Server will be available in July. Google was fairly quick to release a product that allowed for interaction with the iPhone and has recently added an ActiveSync option to connect to their mail services, allowing for the synchronization of contacts, mail and calendars to devices running Windows Mobile and the iPhone. This additional step simply completes offering up Google Apps to the major smartphones on the market. And with recent directory services integration offerings, Google Apps seems more than ever like a viable option in the enterprise space.
As partners of Research in Motion, Microsoft and Apple, 318 would be happy to work with you to formulate a unified strategy for managing, application development and application delivery for your mobile enterprise – no matter the platform.
Tags: activesync, blackberry, google apps, rim, smartphone
Posted in Mac OS X, Mass Deployments, Network Architecture, Web Development | Comments Off
Friday, May 15th, 2009
Thanks to one Ed Marczak we had a fix for a SonicWALL issue that was bugging us from awhile back. With SonicOS Enhanced and Content Filtering Service, Safari experiences errors trying to load pages that require a login, such as store.apple.com and www.amazon.com. This even occurs when CFS is not enabled on your Sonicwall.
To fix this, you need to uncheck the “Enforce Host Tag Search with for CFS” feature on the SonicWALL. In order to uncheck “Enforce Host Tag Search with for CFS”, you have to login to sonicwall console and then go to diag page, which is accessible by logging into the sonicwall and replacing the webpage name with diag.html.
For example, if you log into http://192.168.1.1/main.html you have to replace main with diag; that is: http://192.168.1.1/diag.html
This page will bring the internal settings page of the SonicWALL, and from here you can uncheck “Enforce Host Tag Search with for CFS”.
Tags: safari, Sonicwall enhanced
Posted in Mac OS X, Security | Comments Off
Wednesday, May 13th, 2009
Deploying the iPhone into the enterprise has a number of pain points. Two that we continue to hear are a lack of full disk encryption and developing software. For environment who cannot obtain enterprise developer accounts, we also continue to work through problems with regard to application provisioning. Many companies are also getting tired of trying to deploy applications to too many operating systems. One answer we’ve taken for some of this is to introduce web-based applications with small wrappers around them that are specific to each application/device. But Citrix has stepped up and released Citrix Receiver for iPhone and Dazzle.
Within the Citrix product line you will now be able to provision a thin client-based application and achieve the agility that business units want without the commitment to a specific platform. This means that if your users want Windows Mobile or an iPhone you can publish an application, tailored to their screens and with Dazzle, you can give them the option to choose which applications they want to access, making application provisioning easier for many environments. Because a thin client leaves all of its data on the server, the lack of full disk encryption becomes less of an issue with the iPhone as you can choose to sandbox your business critical data into thin client environments. And finally, you can go to market with solutions that can enhance your business faster in many cases, by leveraging existing efforts and resources.
Overall, we’re happy to add Citrix Receiver in our own portfolio of product offerings. We can now go into any development opportunity with even more options: begin a new application (fat client), deploy a mobile-specific web-based application or bring a thin client solution to the table. From an application lifecycle, being able to look at the iPhone in a similar fashion to how we look at Microsoft Windows and Mac OS X is key to maximizing the capacity an organization towards their the business potential.
Tags: citrix, iPhone
Posted in Mac OS X, Network Architecture, Web Development | Comments Off
Tuesday, May 12th, 2009
Retrospect 8.0.733 is now out and available for download. If you are using version 8 and experiencing problems then you should run it as it fixes a number of bugs. Bugs fixed in the Retrospect 8.0.733 release:
18925: Keep backup sets and scripts associated when catalog rebuild is necessary
20075: General UI Feedback: Okay/Apply
20131: Able to enter text in fields that should only accept numbers
20146: Log Limit doesn’t verify for valid value range
20156: Prefs >Media > media request timeout should check for valid values
20229: Scripts Icon backwards in details view when no script is selected
20258: Copy assistant should not allow you to select same volume for source and destination
20276: “More Backups…” is disabled in Restore Assistant
20332: Restore Assistant: script starts when you select ‘Save’
20343: Error backing up Win XP client – error -3043 (the maximum number of Snapshots has been reached)
20373: Sources icons display as usb removable drives
20437: Past Backup lists wrong date
20475: Disclosure triangles in volumes and scripts
20504: Remove all local volumes: Need to restart Engine to repopulate
20528: Servers displaying in the Sources list
20538: Improve column sizes and layout
20555: Verify Script: Options lists backup sets
20585: “Pause Server” should change to “Unpause” or “Resume”
20598: File Media Sets: remove option to change ‘Fast Catalog Rebuild’
20604: Volume Type not correct
20634: Script Schedule > refresh > auto deletes schedules
20640: Creating a new schedule item does not select the new item
20719: Console: DAG memory leaks
20729: Possible Small Memory leak in Engine when [Backupset EditWithPassword]
20735: New Backup Script: using Tag from previous script
20849: Creating a New Media Set does not accept some characters
20896: “Please update your server” dialog should be more informative
20919: Media Sets: Tape not display Used/Free/Capacity
20945: ScriptProperties::TransferMode seems to have incorrect values
20953: Need to be able to defer scheduled activities
20971: Use Small Icons setting lost after closing UI
21015: Sources: Clients duplicate in the Multicast list
21039: License Manager UI Issues
21087: Starting activity negates activity scope buttons
21124: Desktop: no license challenge when adding a 3rd client
21174: Smart Tag UI problem
21302: Disk Media Sets: when only one member – remove should be disabled
21382: Dev: ArcDiskInfo/ArcDiskFileInfo’s persistent logic is wrong, blocking ppc feature
21463: Need a way to change console’s server password on existing server
21487: Sessions and Snapshots get into state with different volume names
21510: Search for files restore not working across multiple Media Sets
21544: Launch engine at startup authentication broken
21552: Sources: Erase a local drive the disk used / total not updated
21562: Restore Files: Assistant – Search for files in selected Media sets
21590: Need to store extdFlags EXTD_HASACL and EXTD_HASMETA in trees
21603: File Media Set: during backup .rbf.rfc file displays as unix executable
21618: Unable to successfully restore IIS on W2K3 Server
21625: Rules not updating correctly
21628: Unable to add multiple device members
21644: Cannot change member location in Edit Member, throws error
21663: Bad value for Compression field in Activities
21712: Assert during first backup
21737: Crash with DLT1 drive
21740: Media creation time is wrong
21746: Crash trying to add NAS device
21752: Crash copying library directory
21755: module.cpp-825 assert
21764: Console crash while backing up NAS (tag-related)
21775: wrong password adding clients
21782: Restore Assistant: Assert at module.cpp-845
21783: Sources: Local Volumes displaying multiple times
21785: Restore Assistant: When Clients volumes selected unable to ‘Continue’
21791: U Mich. assert
21797: Klingon server assert during client backup
21800: RefBackupset::Search needs Progress object
21803: Error -703 unknown when trying to access a Media Set
21804: Firewire Lacie D2 AIT not responding
21812: Engine crash with invalid object
21813: Incorrect free disk space displayed
21815: Can’t stop engine on 10.4.11
21822: Search for files – manual selection is ignored
21824: Wrong Client Errors being displayed
21825: Client Test button missing
21826: Client connection strangeness
21830: Rules UI different in different parts of yeti
21837: Source’s ‘Last Backup Date’ field doesn’t roll up
21838: assert while trying to rebuild a disk media set
21846: Improve how compression data is displayed
21849: Editing script with many sources not easy
21852: Crash proactive backup to tape library
21856: Console crash with 8.0.608 (tag-related)
21858: Restore Assistant: Selected Media selector set jumps to top of list
21863: Restore Assistant: Restore files from which backup – no date displaying
21864: Restore Assistant: Preview for multiple media sets – only displaying files from first
21866: Assert during local restore: restore drive out of space
21868: better errors needed when license is required
21876: Assert: tree.cpp-3095
21877: Smart Tags not working with Clients set to Startup volume
21878: Assert: module.cpp-825 and others when adding clients
21879: Can’t erase 6.1 VXA-320 media
21881: Hang with 2 proactive backups running
21901: Selecting tape in slot during add member tries to add tape in drive first
21902: Grow the UI elements for all non-English language XIBs
21908: Can’t create a Size rule with more then 3 numbers
21911: Restore Assistant: Not restoring correct files (search restore restores too many files)
21915: Rule: Rules using ‘is not’ switches back to ‘is’
21916: Rules: unable to use Rule ‘Volume drive letter is’
21917: Rules: Files system is Mac OS switches to Windows
21922: Rules: unable to use ‘Date accessed’ rule
21924: Add Media Set: changes to catalog path in text field are ignored
21925: Add Media Set: Browse window should be a sheet
21926: Client browse cause engine crash: module.cpp-845
21934: Assert module.cpp-825 adding tape members
21939: Assert: tmemory.cpp-275 and Crash Reporter logs
21945: Restore Assistant: Unable to use ‘Search Media Set’
21960: VXA-320 FireWire loader issues including assert at intldrdev.cpp-4483
21961: Sources: Last Backup Date – local dmg files
21969: Find Files doesn’t always find the right media sets
21973: Sources: cannot remove local favorite folders
22002: Restore Assistant: issue with preview
22005: Restore: crash when accessing backup with a yellow icon
22006: Restore Assistant: FindFiles with mutiple found sets but not all checked doesn’t run
22013: Copy Backup: MD5 check some error
22024: Unable to change rules condition
22046: Script > Schedule > Text cutoff “F” for friday
22056: Restore Assistant: Restore files – Where do you want to restore: allows multiple selections
Posted in Mac OS X | Comments Off
Saturday, May 2nd, 2009
Check the Web GUI.
To Check the logs via the Web Gui
-ARD into the Hollywood Server
- Open Safari and go to http://localhost:9100 the password is in device details
- Go To Schedualed Jobs and view the Logs for the 2 Way Replication Job
- Do the Logs show anything?
Or you can tail the logs on the server. They are in /Applications/FileReplicationPro/logs and there are various logs in that location. The most usefull log would be the syncornization log.
Many times the logs show that the server TimeSync is to fare between, the date and time are not correct. Each Server have a script you can run to resync the time. to Run this Script
Open Terminal on both First and Second servers and run
sudo /scripts/updatetime.sh
You should see output in the terminal window and in the Console related to the time&date are now in sync with the time server.
To Stop and Restart theReplication Service
- ARD into the Primary Server
Open Terminal and run the following commands as sudo
systemstarter stop FRPRep
systemstarter stop FRPHelp
systemstarter stop FRPMgmt
once the services are stopped, start them up again in the following order
systemstarter start FRPRep
systemstarter start FRPHelp
systemstarter start FRPMgmt
You also should restart the second (or tertiary) Client:
- ARD into the Tulsa Server
Open Terminal and run the following commands as sudo
systemstarter stop FRPRep
wait for the service to stop and then start it again with this command
systemstarter start FRPRep
Tags: FRPHelp, FRPrep
Posted in Linux, Mac OS X, Web Development, Windows | Comments Off