Verity and Collections on different servers

Ask a Question related to Coldfusion Server Administration, Design and Development.

  1. #1

    Default Verity and Collections on different servers

    I have CFMX7 on server 1 and Collection folders on server 2. I am confused on
    what to enter in the following <cfindex tag> attributes: Key and Type. I tried
    type="path" and key="Shared drive on server 2" and the application works fine
    if the user is mapped to that shared folder. The application failed from a
    workstation that wasn't mapped to that folder on server 2. I tried
    key="\\servername\collections" and no "type" entry in <cfindex>, but the index
    didn't build. Any suggestions?

    sundeviltennis Guest

  2. Similar Questions and Discussions

    1. Verity Collections
      COLDFUSIONMX HELP PAGE SAYS: The Verity Development Kit (VDK) provides indexing and searching technology to create, populate, and manage...
    2. Verity collections disappearing
      Hello, I am encountering a problem with my Verity collections disappearing. Here is how it is setup: I have two servers, each with CF7.1/Verity...
    3. Verity Collections Index.cfm
      I am building an index.cfm page and not sure what path (urlpath entry within the cfindex tag)) to use to return the URL. My collections folder is...
    4. Can not enable Verity collections
      I can not enable Verity collections. It says You must configure your application server to enable Verity. For instructions, see "Installing and...
    5. locked out of Verity Collections
      I seemed to have locked my self out of the Verity Collections section. I am not sure what I did but now when I click on Verity Collections I get an...
  3. #2

    Default Re: Verity and Collections on different servers

    By default, CF, Java/Jrun, and Verity run under "LocalSystem" on windows and
    thus can't see or use all of the needed resources on another machine.

    You need to create a user account just for Coldfusion. Ideally this is a
    Domain or Active directory account -- but it can be local to the machines.
    The username and password must be the same on all machines.

    For security, do not make this account an administrator. Our systems run as
    an ordinary user without any problems.
    Also, use this account for nothing else.

    Using the services control panel, set all of the CF, Java/Jrun, and Verity
    services to run under this account on all machines.

    Next create share(s) on the verity machine that the CF user has full control
    on. It's best to share the full drive. (You can restrict access once
    everything's working.)

    You may also have to persistently map the network drive for the CF user.


    MikerRoo Guest

  4. #3

    Default Re: Verity and Collections on different servers

    Thanks for the tip. I am still not able to re-build my collections. My
    collections folder is on my development server and Verity is on my web server.
    My cfindex tag reads as follow:
    <cfindex collection="Collection Name"
    action="refresh"
    type="path"
    key="M:\Folder\Collections"
    extensions=".doc, .txt, .xls, .htm, .html"
    recurse="yes"
    The "key" is a mapped drive pointing to the development server. I am getting
    the following error when running the index.cfm page.
    "The KEY specified is not a directory: M:\G4_Shared\V_Collections. The path in
    the KEY attribute must be a directory when the TYPE is "PATH".
    The error occurred on line 18.
    In the future we will need to point to collection folders across many servers.



    sundeviltennis Guest

  5. #4

    Default Re: Verity and Collections on different servers

    Did you set up the service accounts?

    Is the M drive a share seeable and usable by the account?

    MikerRoo Guest

  6. #5

    Default Re: Verity and Collections on different servers

    I will elaborate on what MikerRoo suggested:
    Open the Search Server service in the Services Applet of the Control Panel
    (Administrative Tools).
    Click "Log On"
    Change "Local System Account" to "This Account..." and make (this account) a
    domain user of the server your M:\ drive connects to.



    LL@Work Guest

  7. #6

    Default Re: Verity and Collections on different servers

    In addition to everyones suggestons, I simplified things by putting the
    collections folder (web server) on D: and the documents on the development
    server on D: drive. I also used a UNC for the key and set recurse to "no" and
    it worked, Yeah!!! Thanks for everyone's help.

    sundeviltennis Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139