Adding an additional site to an existing Server?

I am terribly newb to all this web stuff so please "cut me a
little slack" on this and correct me if my assumptions are wrong. I
have a CF MX 7 instance running on a Win2003, Web Ed. Server that
is hosting website 1. I would like to create and host website #2 on
the same box. It has two NICs and was thinking about associating
each site with one of the NICs. Given the fact that I have already
installed CF on the box and the site is on the NET, how do I go
about the CF end of hosting the 2nd site on this box? Do I simply
install CF a second time, on the same box, but to a different path?
I've read a bunch in the help files about EARs and WARs, multiple
server instances, clustering and all that good stuff, but honestly,
I'm as confused as ever. I swear that these help files and other
support documents just make me more confused. Not just Adobe, but
generally all of them. Secondly, can I do this retroactively, or
would I have needed to make the call when the first instance was
being configured. Thanks in advance for any guidance and/or
enlightenment.

The simplest way to configure a 2nd site is to just create a
virtual website in IIS. Use host headers or whatever method you
like to direct you traffic to this site. You can run wsconfig.exe
to remove CFMX's connector to IIS and then just re-install
selecting all sites. Your single cfmx server will run both sites.
A CFMX multiserver installation can be used. You could create
a cfmx server instance for each website. That way, each site would
be fully independent of the other. Definitely, better but not
absolutely required.
The first option can be done with no re-installation work
needed except dealing with wsconfig to configure cfmx to your
websites. The second would require an uninstall and re-installation
of cfmx using the multiserver installation. You would then use the
first instance of cfmx/enterprise manager to create 2 new server
instances to run you websites.

Similar Messages

  • Adding an additional CAS to an existing NAC OOB deployment 4.7.3

    Hi Guys,
    If I am to add the Self-generated certificate of my new CAS to my existing CAM's trusted certificate authorities list, will it just be added or will it replace the existing trusted certificate?

    Hi Adrian,
         The 'trusted certificate authorities' are the certificate of all the root CAs and also the self signed certs of the CASes that the CAM trusts. So every time you add a root/selfsigned cert to this list it gets appended to the list and does not replace any of the certs.This link gives more information on this :
    http://www.cisco.com/en/US/docs/security/nac/appliance/configuration_guide/45/cas/s_admin.html#wp1092761
    Regards,
    Som
    P.S.: Please mark the question resolved if it has been answered. Do rate helpful posts. Thanks

  • Adding a domain controller to an existing Domain inside server 2012

     I have created a domain contoso.com with an administrator account.Then i moved to 2nd server which i want to add in this existing domain.Being logged in at the 2nd server with administrator account, i added the role of ADDS and then i tried to promote
    this to DC.While do so, i selected the option "Add a domain controller to existing domain".When i finally recah this the Installation wizard , it shows like "creating NDTS settings objects fo this ADDS on remote ADDC(domain name)..........This
    page remains in progress for ages and process never finishes.
        When i check at the first(main domain) , there is no NDTS object for the added DC although i can see  the server but nothing inside it.NDTS object should be there.Y
    1) NDTS object is not created ?
    2) The process is taking hours?
    Both can ping each other
    Regards,
    Fawad

    1. IP of DNS setting on second server points to first DC.
    2. Add second computer to domain. Make sure that second server is part of AD (member).
    3. Add role ADDS on second server that is member of AD.
    In summary: You should add second server to domain first before promoting it to DC role.
    Regards
    Milos

  • Just published a new site to an FTP server and I got a 404 error message saying the site doesn't exist. When I retype the name of the site, I get a page from my hosting service saying this is the future home of [my site]. Any ideas?

    Just published a new site to an FTP server and I got a 404 error message saying the site doesn't exist. When I retype the name of the site, I get a page from my hosting service saying this is the future home of [my site]. Any ideas?

    Hi roddy,
    thanks for responding. I read your link, looked at my settings and they were all correct. I tried to do a republish and got this message: The requested URL /childrenandcaring/index.html was not found on this server.
    When I type the address in the address bar, I go to the site and the page says: This is the new site childrenandcaring.com
    Any other ideas?
    Suzanne

  • Adding Additional Tables to an Existing Query

    Dear All
    I have the following tables and relationships:
    I have the following query that returns records from the table SENAlert where the StudentID and the TeacherUsername are passed in as parameters.
    Also, records are only returned if there isn’t a corresponding record in the SENAlertHistory table (i.e. SENAlertHistorySENAlertID IS NULL).
    This query is returning the results that I would expect:
    SELECT       
    SENAlert.SENAlertID, SENAlertType.SENAlertTypeDescription
    FROM           
    SENAlertHistory RIGHT OUTER JOIN
    Teacher INNER JOIN
    Class ON Teacher.TeacherCode = Class.ClassTeacherCode INNER JOIN
    ClassMember INNER JOIN
    SENAlert INNER JOIN
    SENAlertType ON SENAlert.SENAlertType = SENAlertType.SENAlertTypeID INNER JOIN
    Student ON SENAlert.SENAlertStudentID = Student.StudentID ON ClassMember.ClassMemberStudentID = Student.StudentID ON
    Class.ClassClassCode = ClassMember.ClassMemberClassCode ON SENAlertHistory.SENAlertHistorySENAlertID = SENAlert.SENAlertID AND
    SENAlertHistory.SENAlertHistoryTeacherCode = Teacher.TeacherCode
    WHERE       
    (Student.StudentID = 011763) AND (Teacher.TeacherUsername = 'dsmith') AND (SENAlertHistory.SENAlertHistorySENAlertID IS NULL)
    However, I need to extend this query to include additional teachers who may also teach this student. I am trying to add in 3 additional copies of
    the Teacher table as Teacher_1, Teacher_3 and Teacher _3 in order to include them in the query also.
    However, when I add these tables in I no longer get any results returned.
    I have managed to do this on other queries but not this one.
    SELECT SENAlert.SENAlertID, SENAlertType.SENAlertTypeDescription
    FROM SENAlertHistory INNER JOIN
    Teacher ON SENAlertHistory.SENAlertHistoryTeacherCode = Teacher.TeacherCode INNER JOIN
    Teacher AS Teacher_1 ON SENAlertHistory.SENAlertHistoryTeacherCode = Teacher_1.TeacherCode INNER JOIN
    Teacher AS Teacher_2 ON SENAlertHistory.SENAlertHistoryTeacherCode = Teacher_2.TeacherCode INNER JOIN
    Teacher AS Teacher_3 ON SENAlertHistory.SENAlertHistoryTeacherCode = Teacher_3.TeacherCode RIGHT OUTER JOIN
    Class INNER JOIN
    ClassMember INNER JOIN
    SENAlert INNER JOIN
    SENAlertType ON SENAlert.SENAlertType = SENAlertType.SENAlertTypeID INNER JOIN
    Student ON SENAlert.SENAlertStudentID = Student.StudentID ON ClassMember.ClassMemberStudentID = Student.StudentID ON
    Class.ClassClassCode = ClassMember.ClassMemberClassCode ON Teacher_3.TeacherCode = Class.ClassTeacherCode AND
    Teacher_2.TeacherCode = Class.ClassTeacherCode AND Teacher_1.TeacherCode = Class.ClassTeacherCode AND
    Teacher.TeacherCode = Class.ClassTeacherCode AND SENAlertHistory.SENAlertHistorySENAlertID = SENAlert.SENAlertID
    WHERE (Student.StudentID = 011763) AND (SENAlertHistory.SENAlertHistorySENAlertID IS NULL)
    AND (Teacher.TeacherUsername = 'admin\dsmith' OR Teacher_1.TeacherUsername = 'admin\dsmith' OR Teacher_2.TeacherUsername = 'admin\dsmith' OR Teacher_3.TeacherUsername = 'admin\dsmith')
    No results are returned from this adapted query. I have noticed that by adding the additional tables, it keeps changing the type of joins that I
    have between certain tables. I have tried all sorts of combinations but haven't been able to make it work.
    I would be really grateful for any advice that you may be able to offer.
    Many thanks
    Daniel

    Dear All
    I followed the advice and created the query again from scratch, one table and relationship at a time checking that I am getting the expected result. I have put much of the query back together with the correct output:
    SELECT
    SENAlert.SENAlertID,
    SENAlertType.SENAlertTypeDescription
    FROM dbo.SENAlert
    INNER JOIN dbo.SENAlertType
    ON SENAlert.SENAlertType = SENAlertType.SENAlertTypeID
    INNER JOIN dbo.Student
    ON SENAlert.SENAlertStudentID = Student.StudentID
    INNER JOIN dbo.ClassMember
    ON ClassMember.ClassMemberStudentID = Student.StudentID
    INNER JOIN dbo.Class
    ON ClassMember.ClassMemberClassCode = Class.ClassClassCode
    INNER JOIN dbo.Teacher
    ON Class.ClassTeacherCode = Teacher.TeacherCode
    LEFT OUTER JOIN dbo.Teacher AdditionalTeacher1
    ON AdditionalTeacher1.TeacherCode = Class.ClassAdditionalTeacherCode1
    LEFT OUTER JOIN dbo.Teacher AdditionalTeacher2
    ON AdditionalTeacher2.TeacherCode = Class.ClassAdditionalTeacherCode2
    LEFT OUTER JOIN dbo.Teacher AdditionalTeacher3
    ON AdditionalTeacher3.TeacherCode = Class.ClassAdditionalTeacherCode3
    WHERE Student.StudentID = 011763
    AND (Teacher.TeacherUsername = 'admin\dsmith'
    OR AdditionalTeacher1.TeacherUsername = 'admin\dsmith'
    OR AdditionalTeacher2.TeacherUsername = 'admin\dsmith'
    OR AdditionalTeacher3.TeacherUsername = 'admin\dsmith')
    The problem arises when I try to add the SENAlertHistory table back in. I only want to show results where a related record does not exist in SENAlertHistory. I have tried every combination of relationship but none have been successful.
    I think maybe I need to be using a subquery instead.
    Thanks for your help
    Daniel
    do you mean this?
    SELECT
    SENAlert.SENAlertID,
    SENAlertType.SENAlertTypeDescription
    FROM dbo.SENAlert
    INNER JOIN dbo.SENAlertType
    ON SENAlert.SENAlertType = SENAlertType.SENAlertTypeID
    INNER JOIN dbo.Student
    ON SENAlert.SENAlertStudentID = Student.StudentID
    INNER JOIN dbo.ClassMember
    ON ClassMember.ClassMemberStudentID = Student.StudentID
    INNER JOIN dbo.Class
    ON ClassMember.ClassMemberClassCode = Class.ClassClassCode
    INNER JOIN dbo.Teacher
    ON Class.ClassTeacherCode = Teacher.TeacherCode
    AND NOT EXISTS ( SELECT 1
    FROM SENAlertHistory
    WHERE SENALertHistoryTeacherCode = Teacher.TeacherCode
    AND SENAlertHistorySENAlertID = SENAlert.SENAlertID)LEFT OUTER JOIN dbo.Teacher AdditionalTeacher1
    ON AdditionalTeacher1.TeacherCode = Class.ClassAdditionalTeacherCode1
    AND NOT EXISTS (SELECT 1
    FROM SENAlertHistory
    WHERE SENAlertHistoryTeacherCode = AdditionalTeacher1.TeacherCode
    AND SENAlertHistorySENAlertID = SENAlert.SENAlertID
    LEFT OUTER JOIN dbo.Teacher AdditionalTeacher2
    ON AdditionalTeacher2.TeacherCode = Class.ClassAdditionalTeacherCode2
    AND NOT EXISTS (SELECT 1
    FROM SENAlertHistory
    WHERE SENAlertHistoryTeacherCode = AdditionalTeacher2.TeacherCode
    AND SENAlertHistorySENAlertID = SENAlert.SENAlertID
    LEFT OUTER JOIN dbo.Teacher AdditionalTeacher3
    ON AdditionalTeacher3.TeacherCode = Class.ClassAdditionalTeacherCode3
    AND NOT EXISTS (SELECT 1
    FROM SENAlertHistory
    WHERE SENAlertHistoryTeacherCode = AdditionalTeacher3.TeacherCode
    AND SENAlertHistorySENAlertID = SENAlert.SENAlertID
    WHERE Student.StudentID = 011763
    AND (Teacher.TeacherUsername = 'admin\dsmith'
    OR AdditionalTeacher1.TeacherUsername = 'admin\dsmith'
    OR AdditionalTeacher2.TeacherUsername = 'admin\dsmith'
    OR AdditionalTeacher3.TeacherUsername = 'admin\dsmith')
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Adding additional fields to an existing Infoset.

    Experts,
    I got a requirement to add additional fields to an existing info set which belongs to different Logical Data base.
    The existing info set is based on PNPCE LDB and the fields are from PD (i.e PCH ldb).
    Please let me know hw to add those fields...
    Thanks,
    Shrini

    Hi Shrini,
    You can add fields from PD infotypes (1000-1999) to a PNPCE infoset if the object has a relationship to a Person.  Example would be Position which has the relationship Holder.  You go to Change the Infoset.  Edit --> Change infotype selection.  Scroll down to the bottom and open Infotypes of Related Objects.  Open Position.  There you will see the possible relationships between a Position and Person.  Select Holder.  There you have the list of infotypes assigned to a Position that you can add by checking each.  You can then add whatever fields are in that infotype to the Infoset. 
    Problem comes in if there is no direct relationship between a Person and the object - such as Job that you want to include in the Infoset.  A Job describes a Position and a Person holds a Position, but a Person does not have the direct relationship to the Job except as a Dislike or Successor.    In this case you would need to create a new PCH Infoset with the root object Position.  Then using the relationships between Position and Job and Position and Person, you can access the infotypes from PA as well as PD.
    Paul

  • Default IIS site does not exist

    Hi,
    I had unistalled epmm 11.1.2.2 and installed it again. Now as i am configuring it is throwing me an error saying "Default IIS site does not exist". I checked "inetmgr". In that I found that under site there are no websites present. I dont know but the site was present before and suddenly it has gone. I tried adding the website but I am unable to do it. Any suggestion guys coz i am really stuck here for 2 days.
    Thanks in advance.
    Edited by: 944013 on Jul 11, 2012 1:18 AM

    Hi,
    Please create the default website in IIS7 by following the process given below
    1. Log on to the Web server computer as an administrator.
    2. Click Start, point to Settings, and then click Control Panel.
    3. Double-click Administrative Tools, and then double-click Internet Services Manager.
    4. Right-click the Web site that you want to configure in the left pane, and then click Properties.
    5. Click the Web site tab.
    6. Type a description for the Web site in the Description box.
    7. Type the Internet Protocol (IP) address to use for the Web site or leave the All (Unassigned) default setting.
    8. Modify the Transmission Control Protocol (TCP) port as appropriate.
    9. Click the Home Directory tab.
    10. To use a folder on the local computer, click A directory on this computer, and then click Browse to locate the folder that you want to use.
    11. To use a folder that has been shared from another computer on the network, click A share located on another computer, and then either type the network path or click Browse to select the shared folder.
    12. Click Read to grant read access to the folder (required).
    13. Click OK to accept the Web site properties.
    Source: Microsoft
    The above process will help in creating default website in IIS and then please proceed with the hyperion epm 11.1.2.2 configuration.
    Thanks,
    Mohammed

  • MS Project 2010 Server - How to move a single MS Project plan and SharePoint Project site from a PWA server to another PWA server (one at a time)

    MS Project 2010 Server
    How to move a single MS Project plan and it's SharePoint project site from a PWA server to another PWA server (one at a time)
    I have 2 Project PWA servers, i know how to copy all the databases (Publishing, Draft, Reporting, archive, content) from one SQL server and copy it to the other PWA server so both server can be identical.
    I need to only move a single project from a PWA server to another, 
    Moving the Project plan, actual time data, SharePoint site with all it's content
    Is there a 3rd party tool that can be added on to the server to help me move single project plans? to different PWA servers?
    -Isaack

    Visit my friends at FluentPro and try FluentBooks
    http://www.fluentpro.com/productsfluentbooks2013.html
    they have a 2010 version also.
    Hope that helps,
    Thanks, Eric S. Pcubed

  • Unknown SQL Exception 208 occurred. Additional error information from SQL Server is included below.Invalid object name 'Webs'.

    SP 2013 Server + Dec 2013 CU. Upgrading from SharePoint 2010.
    We have a web application that is distributed over 7-8 content databases from SharePoint 2010. All but one database are upgradable. However, one database gives:
    Invalid object name 'Webs'.
    while running Test-SPContentDatabase or Mount-SPContentDatabase.
    EventViewer has the following reporting 5586 event Id:
    Unknown SQL Exception 208 occurred. Additional error information from SQL Server is included below.Invalid object name 'Webs'.
    After searching a bit, these links do not help:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/fd020a41-51e6-4a89-9d16-38bff9201241/invalid-object-name-webs?forum=sharepointadmin
    we are trying PowerShell only.
    http://blog.thefullcircle.com/2013/06/mount-spcontentdatabase-and-test-spcontentdatabase-fail-with-either-invalid-object-name-sites-or-webs/
    In our case, these are content databases. This is validated from Central Admin.
    http://sharepointjotter.blogspot.com/2012/08/sharepoint-2010-exception-invalid.html
    Our's is SharePoint 2013
    http://zimmergren.net/technical/findbestcontentdatabaseforsitecreation-problem-after-upgrading-to-sharepoint-2013-solution
    Does not seem like the same exact problem.
    Any additional input?
    Thanks, Soumya | MCITP, SharePoint 2010

    Hi,
    “All but one database are upgradable. However, one database gives:
    Invalid object name 'Webs'.”
    Did the sentence you mean only one database not upgrade to SharePoint 2013 and given the error?
    One or more of the following might be the cause:
    Insufficient SQL Server database permissions
    SQL Server database is full
    Incorrect MDAC version
    SQL Server database not found
    Incorrect version of SQL Server
    SQL Server collation is not supported
    Database is read-only
    To resolve the issue, you can refer to the following article which contains the causes and resolutions.
    http://technet.microsoft.com/en-us/library/ee513056(v=office.14).aspx
    Thanks,
    Jason
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Jason Guo
    TechNet Community Support

  • Cannot add a new server in existing server pool

    Hi,
    I am trying to add a new server into an existing server pool.
    I have the same agent password, the same root password (i don't think is important).
    It disovers the server and is on unassigned Servers.
    When trying to add into existing server pool it fail with:
    Job Internal Error (Operation)com.oracle.ovm.mgr.api.exception.FailedOperationException: OVMAPI_4010E Attempt to send command: dispatch to server: vmsibm2 failed. OVMAPI_4004E Server Failed Command: dispatch https://?uname?:[email protected]:8899/api/2 configure_server_for_cluster lun /dev/mapper/35000144f85151729 0004fb0000050000c696b251dc81a087 , Status: org.apache.xmlrpc.XmlRpcException: exceptions.OSError:[Errno 2] No such file or directory
    Any ideeas?
    Regards
    Nicolae

    Hi,
    I can see your point...
    From my error :Server Failed Command: dispatch https://?uname?:[email protected]:8899/api/2 configure_server_for_cluster lun /dev/mapper/35000144f85151729 0004fb0000050000c696b251dc81a087 , Status: org.apache.xmlrpc.XmlRpcException: exceptions.OSError:[Errno 2] No such file or directory
    /dev/mapper/35000144f85151729 is the path where the server pool uses for it's own...
    and
    0004fb0000050000c696b251dc81a087 is the Pool file System...
    On storage menu, at SAN Servers - Unmanaged iSCSI Storage Array - where I see my storage wich is with iSCSI at Add/Remove Admin Servers I added this new server.
    Also I went to Rescan Physical Discks for my new server.
    When I go with putty on my server and run
    df -h
    I don't see any storage...
    I belive I missed one step but I can't find wich one...
    Regards
    Nicolae

  • SQL database login for 'SharePoint_Config_2010' on instance 'DB server' failed. Additional error information from SQL Server is included below.

    we formatted Database server and restored all the databases from the backup. but the sharepoint site is giving below error when i access the home page. 
    we have 3 application servers in that two are working fine,  but only one server getting the below error. 
    SQL database login for 'SharePoint_Config_2010' on instance 'db server' failed. Additional error information from SQL Server is included below.
    Login failed for user 'domain\user'.
    could you help what is the issue?

    Hi,
    According to your post, my understanding is that you failed to access sharepoint site with one application server.
    It was due to the MOM/SCOM Agent that has a SharePoint management pack installed, the agents Windows Service runs as ‘Local System’ and thus causes this.
    The workaround is to either kill the SCOM agent service, or set it to run as a dedicated service account.
    In addtion, I recommend to add the logon account of the SharePoint Timer service as a user of the SharePoint_Config database. Give role membership to the account db_owner.
    You also need to add the SharePoint accounts back into sql server.
    There are some similar articles for you to take a look at:
    http://blog.blksthl.com/2012/04/26/login-for-sharepoint_config-login-failed-for-user-domaincomputername-scom-agent/
    http://msdn.microsoft.com/en-us/library/jj551781(v=nav.70).aspx
    http://sharepoint.stackexchange.com/questions/51623/moved-sql-databases-for-sharepoint-2010-and-now-have-a-3351-error
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Event 3351, SQL database login for 'DB_Config' on instance failed. Additional error information from SQL server is mentioned below. Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON'.

    category-database
    event id-3351
    source-sharepoint foundation
    SQL database login for 'DB_Config' on instance 'DB\instance' failed. Additional error information from SQL Server is included below:
    Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON'.
    I have been getting this error every hour on only 1 application server of the 2.
    My farm consists of 2 app servers, 2 wfes & 2 sql nodes.
    My public site is working fine. Authentication is NTLM.
    SharePoint VSS Writer is disabled.None of my appPool accounts are running under local system.
    I have read many forums/blogs, but couldnt find a solution for this.
    Any help would be appreciated!

    Hi,
    As I understand, you found event id 3351 in event log. Please collect more information as below:
    Check if the error also occurs on other servers in your farm.
    Check if backup job is scheduled at the time when the event id occurs.
    Please run Config Wizard or psconfig.exe -cmd secureresources on all servers and test the issue again.
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Logical standby issue after adding a new user at production db server

    Hello Experts,
    I am facing a issue related to logical standby db server where after adding a new user at production db server logical standby has stopped sql apply. Can anybody give some idea to find out the root cause and give some tips to resolve the issue.
    tried below .....
    SELECT EVENT_TIME, STATUS, EVENT FROM DBA_LOGSTDBY_EVENTS
    ORDER BY EVENT_TIMESTAMP, COMMIT_SCN, CURRENT_SCN;
    got error
    ORA-16227: DDL skipped due to missing object
    ORA-01403: no data found
    ORA-00942: table or view does not exist
    OS : RHEL 4 (IBM P5)
    DB : Oracle 10g (10.2.0.1)
    Achyot

    Please let me know if can skip the DDL at which it is failing.
    ALTER DATABASE STOP LOGICAL STANDBY APPLY;
    Use EXECUTE DBMS_LOGSTDBY.SKIP
    ALTER DATABASE START LOGICAL STANDBY APPLY;
    Thanks,
    Renu

  • Transfer an existing server?

    I have setup 10.6.8 server on mac Mini.  It is sitting at the "Transfer an Existing Server?" prompt. (It says, "if you are replacing an existing mac server, you can connect to it and transfer it's information to this new server....You will NOT be able to migrate from another server at a later time"
    I was told by apple genius that I could connect this mac mini to my old server by lan cable direct, and transfer. (like how migration assistant usually works)
    Problem is it didn't recognize the old server when I did this.
    How can I get the new server to recognize the old server to be able to transfer?  Obviously, I can't reboot the new server yet, it's sitting at a point waiting for "something" to show up for it to recognize.

    Ask Apple? 
    AFAIK, the transfer is not permissible via LAN.
    AFAIK, the transfers are only local via FireWire or Thunderbolt (and you'll need a match between what the old and the new Mac Mini Server supports), or via a USB-connected local disk.
    The way I usually do this is with Disk Utility.  Creating an external backup on a USB disk - boot the installer DVD on the old Mac Mini Server, and run Disk Utility from the Utilities menu and create an external copy of the disk - then transfer and connect that disk to the new Mac Mini Server.  I use this "backup of the original server" as the source, too; I use the original disk in the Mac Mini as the "backup copy".  (This obviously assumes a one-disk configuration; on the newer Mac Mini Server boxes, I usually RAID the internal disks.)
    And you should be able to shut down and restart the new Mac Mini Server and get back to that transfer section.  At worst, you'll restart the installation from the recovery partition, and get back to that transfer prompt that way.

  • Free addition to an already existing print subscription package?

    Can one provide work created with iBooks Author as a FREE ADDITION to an already existing subscription package? No rise in the subscription cost would occur if this were added. This would be a free addition for subscribers to download for free. This would act as a free digital option/addition to the print subscription. Possible? I know you can distribute the iBook Author work for free, but wanted to ask if it could be free inside of an existing subscription pacakge that is not conneted to iTunes or the iBooks store.

    Does this apply?
    http://support.apple.com/kb/HT5071#3
    Can I distribute works created with iBooks Author as part of a product or service that charges a subscription-based fee?
    Books created with iBooks Author may not be sold as part of a subscription-based product or service. iBooks Author books must be distributed free of charge or made available for sale via the iBookstore.

Maybe you are looking for