File sharing in Oracle

Hi all,
I am new to Oracle portal and I am doing an internship in an IT company. I have to develop an enetrprise portal.
The portal should have some kind of Document management system. Is it possible to develop it with Oracle Portal - is it possible to create groups of users so that other users can upload files so that only a particular group/user can see them? Can someone give me some general instructions how to do this?

Hi,
We use $COMMON_TOP/conf for this location which is inherited as the value of the environment variable $IAS_CONFIG_HOME.
You may have your own choice of this location, though.
Rgds,
Rakesh.

Similar Messages

  • ORA-00202: control file: '/u01/app/oracle/product/11.2.0.2/db_1/dbs/snapcf_

    RMAN> register database;
    database registered in recovery catalog
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03008: error while performing automatic resync of recovery catalog
    ORA-00206: error in writing (block 29824, # blocks 64) of control file
    ORA-00202: control file: '/u01/app/oracle/product/11.2.0.2/db_1/dbs/snapcf_bibp1.f'
    ORA-27072: File I/O error
    Additional information: 4
    Additional information: 29824
    Additional information: 200704
    I have created catalog server and want to configure on both node.its RAC env. bibp1 and bibp2
    when am trying to register the database when give me above error.

    In 11.2.0.2, the Snapshot Control file must be on a Clustered File System or ASM. It cannot be on a local filesystem.
    See Oracle Support Notes
    RMAN Snapshot Controlfile Must Reside on Shared Device for RAC database in 11G [ID 1263621.1]
    In RAC environment from 11.2 onwards Backup Or Snapshot controlfile needs to be in shared location [ID 1472171.1]
    You need to :
    CONFIGURE SNAPSHOT CONTROLFILE NAME TO <shared_location_file>;Hemant K Chitale

  • Personal File Sharing

    I have a small office network setup with 8 macs. I'm currently using personal file sharing within the network. Sometimes I can not tell who is connected to which machine at any given time.
    When I go to shut my machine down, I'll get the message "There are X users connected using apple file sharing. Are you sure you want to shut down?"
    #1 How can I tell who is connected?
    #2 Is there a way that I can force them to disconnect from my machine?
    Thanks

    No need to "install" Sharepoints, you just run it once to set the type of logging you want in it's AFS Properties, then you use AFS Monitor to easily check the Logs to see who is or has been doing what.
    No need to change Sharing with Sharepoints unless you want to finely tune your sharing.

  • Problem using File sharing  in a small office network

    I have a problem using File sharing on an Imac and Macbook Pro.
    My office has a small network running Windows Small office file server 2003. I have one Windows 2000 PC connected to it and 3 Macs, an 2.4 gHz Intel iMac running Leopard 10.5.6 , a MBP running the same and a Mac Mini running 10.5.
    From the Finder Shared window of the Mac Mini, I can see all the computers on the network. It also used to be the case for the iMac, but the MBP could never see the Windows PC’s, not the server or the Win2000. This wasn’t a big problem as I was communicating between the Macs and using the shared printer on the iMac.
    On Monday Jan 19 the iMac was suddenly unavailable to the other 2 Macs. It was working normally on the Friday. The iMac can access the Mac Mini and copy files to it. The Mac Mini can see the iMac but cannot access it. Even trying to connect as, ends in a failed connection. I have tried rebooting, turning File sharing off and then on again to no avail.
    The iMac now also cannot see the Windows PC’s which it previously could.
    To get files from the MBP for printing, I now copy it to the Mac Mini and acces the folder from the iMac, a very tedious procedure. I don’t know why this happened and am scared that the Mac Mini is going to do the same thing.
    All three computers are also running VMware 2.0 with Windows XP pro, and from VMware the server is visible on all the computers.
    Any help will be much appreciated, I live in a small town in South Africa and the local computer suppliers have no knowledge of the Macs.
    I think that the problem with the iMac may have started after a software upgrade to 10.5.6 but I am not entirely sure.
    Thank you
    ajdk

    Well, you're current method sounds pretty good. But if you want to user a file server, hey go ahead.
    What you want to do when you centralize project files is to keep track of which one is the newest and becareful not to overwrite files with the same name. So you either have to set up individual spaces on the server (separate AFP/FTP folders maybe), or you'll need to run a file checkout service.
    The individual space is cheaper, but it's not much of a difference from backing up to the network drive. Since you have Gigabit connections, you might even opt to save ALL the user files on the server instead of just the project files.
    If you want to run a file checkout service, there's two approaches. You can run a service that can host any kind of file, or you can run a version control system for each kind of application (Photoshop, Word, etc.). Please notice, that as you read further and further along, the methods become more and more expensive and complicated. Once you get to this point, it will be necessary to purchase or build software in addition to the Mac OS X Server package.

  • 2GB OR NOT 2GB - FILE LIMITS IN ORACLE

    제품 : ORACLE SERVER
    작성날짜 : 2002-04-11
    2GB OR NOT 2GB - FILE LIMITS IN ORACLE
    ======================================
    Introduction
    ~~~~~~~~~~~~
    This article describes "2Gb" issues. It gives information on why 2Gb
    is a magical number and outlines the issues you need to know about if
    you are considering using Oracle with files larger than 2Gb in size.
    It also
    looks at some other file related limits and issues.
    The article has a Unix bias as this is where most of the 2Gb issues
    arise but there is information relevant to other (non-unix)
    platforms.
    Articles giving port specific limits are listed in the last section.
    Topics covered include:
    Why is 2Gb a Special Number ?
    Why use 2Gb+ Datafiles ?
    Export and 2Gb
    SQL*Loader and 2Gb
    Oracle and other 2Gb issues
    Port Specific Information on "Large Files"
    Why is 2Gb a Special Number ?
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Many CPU's and system call interfaces (API's) in use today use a word
    size of 32 bits. This word size imposes limits on many operations.
    In many cases the standard API's for file operations use a 32-bit signed
    word to represent both file size and current position within a file (byte
    displacement). A 'signed' 32bit word uses the top most bit as a sign
    indicator leaving only 31 bits to represent the actual value (positive or
    negative). In hexadecimal the largest positive number that can be
    represented in in 31 bits is 0x7FFFFFFF , which is +2147483647 decimal.
    This is ONE less than 2Gb.
    Files of 2Gb or more are generally known as 'large files'. As one might
    expect problems can start to surface once you try to use the number
    2147483648 or higher in a 32bit environment. To overcome this problem
    recent versions of operating systems have defined new system calls which
    typically use 64-bit addressing for file sizes and offsets. Recent Oracle
    releases make use of these new interfaces but there are a number of issues
    one should be aware of before deciding to use 'large files'.
    What does this mean when using Oracle ?
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    The 32bit issue affects Oracle in a number of ways. In order to use large
    files you need to have:
    1. An operating system that supports 2Gb+ files or raw devices
    2. An operating system which has an API to support I/O on 2Gb+ files
    3. A version of Oracle which uses this API
    Today most platforms support large files and have 64bit APIs for such
    files.
    Releases of Oracle from 7.3 onwards usually make use of these 64bit APIs
    but the situation is very dependent on platform, operating system version
    and the Oracle version. In some cases 'large file' support is present by
    default, while in other cases a special patch may be required.
    At the time of writing there are some tools within Oracle which have not
    been updated to use the new API's, most notably tools like EXPORT and
    SQL*LOADER, but again the exact situation is platform and version specific.
    Why use 2Gb+ Datafiles ?
    ~~~~~~~~~~~~~~~~~~~~~~~~
    In this section we will try to summarise the advantages and disadvantages
    of using "large" files / devices for Oracle datafiles:
    Advantages of files larger than 2Gb:
    On most platforms Oracle7 supports up to 1022 datafiles.
    With files < 2Gb this limits the database size to less than 2044Gb.
    This is not an issue with Oracle8 which supports many more files.
    In reality the maximum database size would be less than 2044Gb due
    to maintaining separate data in separate tablespaces. Some of these
    may be much less than 2Gb in size.
    Less files to manage for smaller databases.
    Less file handle resources required
    Disadvantages of files larger than 2Gb:
    The unit of recovery is larger. A 2Gb file may take between 15 minutes
    and 1 hour to backup / restore depending on the backup media and
    disk speeds. An 8Gb file may take 4 times as long.
    Parallelism of backup / recovery operations may be impacted.
    There may be platform specific limitations - Eg: Asynchronous IO
    operations may be serialised above the 2Gb mark.
    As handling of files above 2Gb may need patches, special configuration
    etc.. there is an increased risk involved as opposed to smaller files.
    Eg: On certain AIX releases Asynchronous IO serialises above 2Gb.
    Important points if using files >= 2Gb
    Check with the OS Vendor to determine if large files are supported
    and how to configure for them.
    Check with the OS Vendor what the maximum file size actually is.
    Check with Oracle support if any patches or limitations apply
    on your platform , OS version and Oracle version.
    Remember to check again if you are considering upgrading either
    Oracle or the OS in case any patches are required in the release
    you are moving to.
    Make sure any operating system limits are set correctly to allow
    access to large files for all users.
    Make sure any backup scripts can also cope with large files.
    Note that there is still a limit to the maximum file size you
    can use for datafiles above 2Gb in size. The exact limit depends
    on the DB_BLOCK_SIZE of the database and the platform. On most
    platforms (Unix, NT, VMS) the limit on file size is around
    4194302*DB_BLOCK_SIZE.
    Important notes generally
    Be careful when allowing files to automatically resize. It is
    sensible to always limit the MAXSIZE for AUTOEXTEND files to less
    than 2Gb if not using 'large files', and to a sensible limit
    otherwise. Note that due to <Bug:568232> it is possible to specify
    an value of MAXSIZE larger than Oracle can cope with which may
    result in internal errors after the resize occurs. (Errors
    typically include ORA-600 [3292])
    On many platforms Oracle datafiles have an additional header
    block at the start of the file so creating a file of 2Gb actually
    requires slightly more than 2Gb of disk space. On Unix platforms
    the additional header for datafiles is usually DB_BLOCK_SIZE bytes
    but may be larger when creating datafiles on raw devices.
    2Gb related Oracle Errors:
    These are a few of the errors which may occur when a 2Gb limit
    is present. They are not in any particular order.
    ORA-01119 Error in creating datafile xxxx
    ORA-27044 unable to write header block of file
    SVR4 Error: 22: Invalid argument
    ORA-19502 write error on file 'filename', blockno x (blocksize=nn)
    ORA-27070 skgfdisp: async read/write failed
    ORA-02237 invalid file size
    KCF:write/open error dba=xxxxxx block=xxxx online=xxxx file=xxxxxxxx
    file limit exceed.
    Unix error 27, EFBIG
    Export and 2Gb
    ~~~~~~~~~~~~~~
    2Gb Export File Size
    ~~~~~~~~~~~~~~~~~~~~
    At the time of writing most versions of export use the default file
    open API when creating an export file. This means that on many platforms
    it is impossible to export a file of 2Gb or larger to a file system file.
    There are several options available to overcome 2Gb file limits with
    export such as:
    - It is generally possible to write an export > 2Gb to a raw device.
    Obviously the raw device has to be large enough to fit the entire
    export into it.
    - By exporting to a named pipe (on Unix) one can compress, zip or
    split up the output.
    See: "Quick Reference to Exporting >2Gb on Unix" <Note:30528.1>
    - One can export to tape (on most platforms)
    See "Exporting to tape on Unix systems" <Note:30428.1>
    (This article also describes in detail how to export to
    a unix pipe, remote shell etc..)
    Other 2Gb Export Issues
    ~~~~~~~~~~~~~~~~~~~~~~~
    Oracle has a maximum extent size of 2Gb. Unfortunately there is a problem
    with EXPORT on many releases of Oracle such that if you export a large table
    and specify COMPRESS=Y then it is possible for the NEXT storage clause
    of the statement in the EXPORT file to contain a size above 2Gb. This
    will cause import to fail even if IGNORE=Y is specified at import time.
    This issue is reported in <Bug:708790> and is alerted in <Note:62436.1>
    An export will typically report errors like this when it hits a 2Gb
    limit:
    . . exporting table BIGEXPORT
    EXP-00015: error on row 10660 of table BIGEXPORT,
    column MYCOL, datatype 96
    EXP-00002: error in writing to export file
    EXP-00002: error in writing to export file
    EXP-00000: Export terminated unsuccessfully
    There is a secondary issue reported in <Bug:185855> which indicates that
    a full database export generates a CREATE TABLESPACE command with the
    file size specified in BYTES. If the filesize is above 2Gb this may
    cause an ORA-2237 error when attempting to create the file on IMPORT.
    This issue can be worked around be creating the tablespace prior to
    importing by specifying the file size in 'M' instead of in bytes.
    <Bug:490837> indicates a similar problem.
    Export to Tape
    ~~~~~~~~~~~~~~
    The VOLSIZE parameter for export is limited to values less that 4Gb.
    On some platforms may be only 2Gb.
    This is corrected in Oracle 8i. <Bug:490190> describes this problem.
    SQL*Loader and 2Gb
    ~~~~~~~~~~~~~~~~~~
    Typically SQL*Loader will error when it attempts to open an input
    file larger than 2Gb with an error of the form:
    SQL*Loader-500: Unable to open file (bigfile.dat)
    SVR4 Error: 79: Value too large for defined data type
    The examples in <Note:30528.1> can be modified to for use with SQL*Loader
    for large input data files.
    Oracle 8.0.6 provides large file support for discard and log files in
    SQL*Loader but the maximum input data file size still varies between
    platforms. See <Bug:948460> for details of the input file limit.
    <Bug:749600> covers the maximum discard file size.
    Oracle and other 2Gb issues
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~
    This sections lists miscellaneous 2Gb issues:
    - From Oracle 8.0.5 onwards 64bit releases are available on most platforms.
    An extract from the 8.0.5 README file introduces these - see <Note:62252.1>
    - DBV (the database verification file program) may not be able to scan
    datafiles larger than 2Gb reporting "DBV-100".
    This is reported in <Bug:710888>
    - "DATAFILE ... SIZE xxxxxx" clauses of SQL commands in Oracle must be
    specified in 'M' or 'K' to create files larger than 2Gb otherwise the
    error "ORA-02237: invalid file size" is reported. This is documented
    in <Bug:185855>.
    - Tablespace quotas cannot exceed 2Gb on releases before Oracle 7.3.4.
    Eg: ALTER USER <username> QUOTA 2500M ON <tablespacename>
    reports
    ORA-2187: invalid quota specification.
    This is documented in <Bug:425831>.
    The workaround is to grant users UNLIMITED TABLESPACE privilege if they
    need a quota above 2Gb.
    - Tools which spool output may error if the spool file reaches 2Gb in size.
    Eg: sqlplus spool output.
    - Certain 'core' functions in Oracle tools do not support large files -
    See <Bug:749600> which is fixed in Oracle 8.0.6 and 8.1.6.
    Note that this fix is NOT in Oracle 8.1.5 nor in any patch set.
    Even with this fix there may still be large file restrictions as not
    all code uses these 'core' functions.
    Note though that <Bug:749600> covers CORE functions - some areas of code
    may still have problems.
    Eg: CORE is not used for SQL*Loader input file I/O
    - The UTL_FILE package uses the 'core' functions mentioned above and so is
    limited by 2Gb restrictions Oracle releases which do not contain this fix.
    <Package:UTL_FILE> is a PL/SQL package which allows file IO from within
    PL/SQL.
    Port Specific Information on "Large Files"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Below are references to information on large file support for specific
    platforms. Although every effort is made to keep the information in
    these articles up-to-date it is still advisable to carefully test any
    operation which reads or writes from / to large files:
    Platform See
    ~~~~~~~~ ~~~
    AIX (RS6000 / SP) <Note:60888.1>
    HP <Note:62407.1>
    Digital Unix <Note:62426.1>
    Sequent PTX <Note:62415.1>
    Sun Solaris <Note:62409.1>
    Windows NT Maximum 4Gb files on FAT
    Theoretical 16Tb on NTFS
    ** See <Note:67421.1> before using large files
    on NT with Oracle8
    *2 There is a problem with DBVERIFY on 8.1.6
    See <Bug:1372172>

    I'm not aware of a packaged PL/SQL solution for this in Oracle 8.1.7.3 - however it is very easy to create such a program...
    Step 1
    Write a simple Java program like the one listed:
    import java.io.File;
    public class fileCheckUtl {
    public static int fileExists(String FileName) {
    File x = new File(FileName);
    if (x.exists())
    return 1;
    else return 0;
    public static void main (String args[]) {
    fileCheckUtl f = new fileCheckUtl();
    int i;
    i = f.fileExists(args[0]);
    System.out.println(i);
    Step 2 Load this into the Oracle data using LoadJava
    loadjava -verbose -resolve -user user/pw@db fileCheckUtl.java
    The output should be something like this:
    creating : source fileCheckUtl
    loading : source fileCheckUtl
    creating : fileCheckUtl
    resolving: source fileCheckUtl
    Step 3 - Create a PL/SQL wrapper for the Java Class:
    CREATE OR REPLACE FUNCTION FILE_CHECK_UTL (file_name IN VARCHAR2) RETURN NUMBER AS
    LANGUAGE JAVA
    NAME 'fileCheckUtl.fileExists(java.lang.String) return int';
    Step 4 Test it:
    SQL> select file_check_utl('f:\myjava\fileCheckUtl.java') from dual
    2 /
    FILE_CHECK_UTL('F:\MYJAVA\FILECHECKUTL.JAVA')
    1

  • File Sharing Service keeps crashing Error Reading Settings, File Sharing Service keeps crashing Error Reading Settings

    File sharing service keeps popping up with the error message An error occurred on the server while processing a command.  This error occurred while processing a command of type 'getConnectedUsers' in plug-in 'servermgr_afp'.
    I have tried multiple solutions on this site, unloading afp and restarting it, restarting postgres.  The file sharing tab will show up for a few seconds on the server.app config page then once someone tries to access any of the shared volumes on there, the event log shows it crashing instantly.  Error in console:
    The server '127.0.0.1' reported an error while processing a command of type 'getConnectedUsers' in plug-in: 'servermgr_afp'.  Error: Error Domain=XSActionErrorDomain Code=0 "SETTING_NOT_FOUND_ERR" UserInfo=0x7ffe6a835060 {NSLocalizedDescription=SETTING_NOT_FOUND_ERR}
    Also I get the error com.apple.launchd: (com.apple.collabd.notifications[7520]) Exited with code 1 then always followed by Throttling respawn: Will start in 10 seconds and this happens every 10 seconds without fail.

    I have started getting this error this morning:
    This error occurred while processing a command of type 'getConnectedUsers' in plug-in 'servermgr_afp'.
    Using Server 2.2.2; MacMini running OS X 10.8.5, 2 GHz Core i7 with 8 GB RAM attached to a 12TB Pegasus RAID.
    When the error appears, my users cease to be able to access file shares.
    Often, just before the error occurs, my users experience substantial slow down in the Finder's responsiveness when manipulating files on those shares.
    Restarting the Server App will produce one of several results
    1. fix the problem (rarely)
    2. fail to connect to server
    3. connect to server but not get all services running.
    The system itself resists a full shutdown, hanging at the grayish-white screen (not spinning wheel or cog or apple logo).
    I wish there was some known fix for this.

  • Airport Extreme is allowing access to screen sharing, file sharing from external IP addresses (some from China, Canada etc)

    How to get control over the ports/port forwarding etc in Airport Extreme?
    How to make AE drop packets to certain ports from external ports.  Or create whitelist/blacklists?
    I figured out where the MAC filtering is!  (It is inside the Timed Access Control).  I wish it had a list of connected device and allowed me to select, name and add them.
    I am getting requests from Chinese IP to the screen sharing ports forwarded to my iMac.  Had requests to other ports as well.  There was one IP address from CANADA too.
    I want to open file sharing for local use only.

    Why is Airport Extreme forwarding requests for screen sharing from external ip addresses to my imac?  I don't have a public address, nor use dynamic dns service, and I have removed the server app (at least I think I have, but Apple Store doesn't think so).

  • Connecting to shared machines (either via Share Screen or file sharing)

    I have a MobileMe account and four computers in separate locations which I regularly need to connect between. Some are on static IP's and others are on dynamic IP's. So all of them have file sharing enabled as well as screen sharing enabled. They're also all registered in my MobileMe account. Anytime I'm in a Finder window, in the sidebar, I see Shared > (computer name) and see all the computers there. If I click on it, I'm offered two buttons, one to "Connect As" if I want to file share, and "Share Screen" if I want to VNC.
    I would say 60-70% of the time I click on either of those buttons, it doesn't work. It takes about a minute to try and connect, then says, "Connection failed to (computer name). Please make sure screensharing is enabled...blah blah blah..." (it is)
    However, 40-60% of the time if I click the same button again, it DOES work!
    Sometimes it takes several tries.
    It's really frustrating that I can't reliably connect to the other computers in the MobileMe list.
    Does anyone else see this and are there any suggestions? There doesn't seem to be any rhyme or reason to it. Trying to connect to a computer that has a static IP vs. dynamic fails with about the same regularity. So I don't think that's it.
    I also get about the same failure rate when trying to use Connect As to fileshare. So I don't think it's a VNC/screenshare-specific problem.
    I've tried using DynDNS as an alternate way to reliably locate another of my computers. It fails with approx. the same failure rate, and sometimes works upon re-attempt.
    HELP!

    Goto your System Preferences->Sharing, Then select the Internet tab.
    From the drop down menu select 'Share your connection from: Kyrocera card.'
    And in the 'To computers using' box tick built in ethernet and connect a network cable to your powerbook and the other end to your network.
    Or if you have an airport card installed share the connection using your airport.Then other wireless devices can connect to your powerbook.

  • How do I use VPN for file sharing?

    Hi folks, hope you can help.
    I need to find a method for file sharing between my company's two offices, which are not only in different countries but also use both PCs and Macs. I think setting up a VPN is the way forward.
    My file server is a Mac Mini running the standard client version of OS 10.5.4, with a static IP, 217.xxx.xxx.xxx. I need the PCs and Macs to access its resources. It is set up to share its files using FTP, AFP and SMB. It is running the application iVPN Server, which I understand is a GUI that makes the built-in OS X VPN Server function available to the client edition of OS X.
    I am currently overseas and can connect to the Mac Mini over VPN. The problem is that I cannot seem to access the Mac Mini's files - I don't know what to do having established the VPN connection. I was half-expecting it to show up in the Finder under Shared or something.
    The Mac Mini has a local IP of 10.0.1.20, but the VPN Server is issuing an IP to all clients in the range 192.168.2.200 and beyond. Is this where I'm going wrong?
    Should the Mac Mini VPN Server also connect to itself, using VPN, as a client?
    I'm really stuck, all help is very much appreciated. Thank you!

    Thanks for prompt reply Topher..
    I am familiar with the Connect to Server window, but I am not sure which IP I should be using. Assuming no VPN connection for the moment, and assuming I'm on a remote network, I can connect to the User's documents folder on the Mac Mini already by typing afp://[username:password]@[static WAN ip]/Documents
    However, I need to ensure that SMB shares work (I know they work when I'm on the local network). So I type smb://[username:password]@[static WAN ip]/Documents but this fails to connect to the User's Documents folder.
    To make the SMB shares work I think I have to connect using VPN. So I connect to the Mac Mini via VPN, and my laptop is issued a VPN IP of 192.168.2.200. Of course my laptop also has an IP from my local network. Do I need to rearrange my network order in System Preferences?
    So I'm now connected via VPN. However to view the Mac Mini's files, surely it also needs to have an IP issued by the VPN Server? But the Mac Mini is the VPN server. So should I go into its System Preferences and set up a VPN connection to itself?
    Now back on the laptop and I want to browse User's Documents folder on the Mac Mini using SMB. I go Connect to Server, and I guess I would type smb://[username:password]@[Mac Mini's VPN IP]/Documents
    Am I on the right track? Thanks again...

  • Why can't I connect to my shared computers for file sharing;I have 3 Macs and I can connect the other 2 but not my new Macbook air.

    I have a black Macbook 4,1 running 10.7.5, an iMac 11,3 running 10.7.5 and a new Macbook Air 6,2 running 10.9.5., I have file sharing turned on on all machines. All machines are visible and I can connect all machines except for the Macbook Air. The Macbook air can see the other 2 Macs but does not connect to either of them or even give me the option to connect as a guest or a registered user. The other Macs connect to the Macbook Air but it will not connect with them. Any help is appreciated. Thank You.

    The warranty entitles you to complimentary phone support for the first 90 days of ownership.

  • File sharing/AFP skips "connect as"

    I have a Mac-Lion and several accounts, both user and admin.  I turned file sharing on and selected AFP.  I can connect from another Mac-Yosemite as expected - to any account on Mac-Lion by entering the password when prompted.  With one exception.
    I have an admin account xyz on Mac-Lion and an admin account xyz on Mac-Yosemite, different passwords. On Mac-Yosemite, in the account xyz when "connect to server", it skips the "connect as" prompt.  Connects straight to xyz on MBP-Lion. However, this does happen vice-versa. I also tested other accounts, say abc on Mac-Lion and abc on Mac-Yosemite, admin or standard user. No problem, always goes to the "connect as" window and asks for a password.
    I also changed the password of xyz on MBP Lion many times, and delete the keychain, restarted, etc.  Also, MBP-Lion is off-cloud.  Still thee is this mysterious one-way password-free connection between the two accounts. What could that be and how can I reset it?
    Thanks in advance.

    It turns out the iCloud causes this behavior. If I sign off iCloud in the account xyz on Mac-Yosemite, then I am prompted with the regular login window when I connect to Mac-Lion.  So some setting on Mac-Lion grants password fee access to connections from account xyz on Mac-Yosemite as long as that account is logged in iCloud. (xyz on Mac-Lion used to be signed in the same iCloud account, but I signed out and reset the keychain).  Any idea where that could be so that i can reset it?

  • File sharing afp:// address not computer name

    Just setting up my new iMac and the file sharing afp:// address does not match the computer's name (Brute Squad), it's pulled in my old PowerBook's name (Alumen). I'm assuming it came from my Apple/iCloud account since that was the only computer I had registered when I set the iMac up. Restarting didn't help. Any ideas?

    You can change the computer name in the System Preferences > Sharing pane, change the name at the top.
    Best of luck.

  • Best Practises for File Sharing and Print Server on Windows Server 2012

    Is it better to have File Sharing and Print Server installed on the same Windows 2012 Server ?
    Or, they should be installed on 2 different Windows Servers ?
    Hussien Sherief

    It will work just fine to combine them.
    But most people would recommend keeping functionality separate... if the budget allows.  That whole "single point of failure" concept.  If that server dies, you've lost both of those functions.

  • Is there a way to have all/ the important files shared on two mac computers without a service like dropbox?

    I was looking to get a Mac Mini to use with my Cinema Display so I had something of a desktop computing station.  I am concerned though of the ability to have all or at least my word documents, power points, etc., graphic projects, my pdfs, and my non iphoto images transfering between computers.  I currently have a macbook air running 10.8.4 and plan to upgrade to Maverics when it comes out.  I DO NOT want to use a service like Dropbox.  I would much rather prefer a smooth and automatic transfer of the files without any steps to transfer.  Please let me know if AND HOW this is possible. 

    Simple file sharing SHOULD do this on the local network as BDAqua points out. If you want to physcially move files without having to go through uploading and downloading via Dropbox, use FileDrop. It's free and files go directly to the receiving computer through your LAN - in ONE step.

  • Target Mode with multiple partitions??? Also file sharing

    I am trying to connect my MacBook Pro to my older G4 using a firewire cable. My G4 has 2 hard drives, and one is divided in to 2 partitions. When I restart my G4 in target mode only the drive that is my start-up disk shows up.
    Is there any way around this?
    I've thought about just connecting my computers through file sharing but it only lets me share files in my public drive. Is there a way to share all of my files?
    Thanks,
    Justin

    Emailing you now...
    Lets say the Username on Machine#1 is jk1, Username on Machine #2 is jk2, and is an admin on #2...
    Then from Machine#1 use Go>Network, type in the name of Machine #2, (use the actual IP if the name can't find it), it should come up with the Dialog box with jk1 filled in for the name and asking for the password... but you have to change the name to jk2, (the one with permissions on Machine #2 to see everything), then type in the password of jk2.
    The only thing I can see why this wouldn't work for you is if Machine #1 can't find #2, or Permissions need Fixing on #2.

Maybe you are looking for

  • IPod to TV AND Amp - HUM

    as soon as I have video to TV & audio jacks to my Musical Fidelity X-150 amp (Apple A/V cable), the low hum is there - I tried S-video to scart/Audio line-out to Amp through a 4th gen dock too, same thing - either on their own work fine though - - i

  • Unable to read dependencies of an included VI.

    Hey all. I am trying to build an executable for a project that I have been working on. When I tell it to build I get the following error. Unable to read dependencies of an included VI. Open all Startup/Exported/Dynamically called VIs, recompile them

  • Harddrive Probl

    Right,I have a 30 GB Creative Zen Vision M,and recently it froze while in use after resetting the unit it automatically booted in recovery mode. After trying the clean up function it where it stopped on scanning disk I tried formatting where all I go

  • ALV Grid not displying properly when spool is generated by print button

    Hi All, When print button is used to genarate spool of the ALV Grid, then in the spool the end of page content is getting over lapped on the main lines. Please let me know how to display end of page content without geting overlapped on the lines. Bel

  • Oracle Exp/Imp Utility

    If i do a full export from on database instance and import to a new instance, will that import the entire data and create tablespaces and users into to the instance?