<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: CIFS Server not starting in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/cifs-server-not-starting/m-p/172764#M125959</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The first code that I posted was my shared/classes/alfresco/extension/file-servers-custom.xml contents.&amp;nbsp; When I choose replace="true" that only replaces the configuration that matches the name correct?&amp;nbsp; In other words, this won't neglect the default FTP Server, AVM server, and Filesystem configuration right?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;To get this started I just copied the configuration from the webapps/alfresco/WEB-INF/classes/alfresco/file-servers.xml file and customized it in the extension directory.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;-David&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 Mar 2008 14:40:12 GMT</pubDate>
    <dc:creator>ds-crcpress</dc:creator>
    <dc:date>2008-03-21T14:40:12Z</dc:date>
    <item>
      <title>CIFS Server not starting</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/cifs-server-not-starting/m-p/172762#M125957</link>
      <description>I am having some trouble getting CIFS working.&amp;nbsp; I have Aflresco Community hosted on a FreeBSD system.&amp;nbsp; The following is my configuration:&amp;lt;alfresco-config area="file-servers"&amp;gt;&amp;nbsp;&amp;nbsp; &amp;lt;config evaluator="string-compare" condition="Filesystems" replace="true"&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;filesystems&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;</description>
      <pubDate>Thu, 20 Mar 2008 21:39:03 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/cifs-server-not-starting/m-p/172762#M125957</guid>
      <dc:creator>ds-crcpress</dc:creator>
      <dc:date>2008-03-20T21:39:03Z</dc:date>
    </item>
    <item>
      <title>Re: CIFS Server not starting</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/cifs-server-not-starting/m-p/172763#M125958</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You've got a lot mixed and matched here.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Take a look at the file-servers.xml file in tomcat/webapps/alfresco/WEB-INF/classes/alfresco or file-servers-custom.xml in tomcat/shared/classes/alfresco/extension (make sure you make your changes in the extension directory – In fact you _should_ make your custom configuration changes in file-servers-custom.xml). Use those as you templates.&amp;nbsp; But basically you should have a section that defines the filesystems (ie what you want exposed from the repository) and another section that defines your CIFS server.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Example (not complete config element):&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt; &amp;lt;config evaluator="string-compare" condition="Filesystems"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;filesystems&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!– Alfresco repository access shared filesystem –&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;filesystem name="Alfresco"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;store&amp;gt;workspace://SpacesStore&amp;lt;/store&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;rootPath&amp;gt;/app:company_home&amp;lt;/rootPath&amp;gt;&lt;BR /&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;Example (not complete config element):&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;&amp;lt;config evaluator="string-compare" condition="CIFS Server"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;serverEnable enabled="true"/&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;host name="${localname}A"/&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;comment&amp;gt;Alfresco CIFS Server&amp;lt;/comment&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!– Set to the broadcast mask for the subnet –&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;broadcast&amp;gt;255.255.255.255&amp;lt;/broadcast&amp;gt;&lt;BR /&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2008 03:35:07 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/cifs-server-not-starting/m-p/172763#M125958</guid>
      <dc:creator>jottley</dc:creator>
      <dc:date>2008-03-21T03:35:07Z</dc:date>
    </item>
    <item>
      <title>Re: CIFS Server not starting</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/cifs-server-not-starting/m-p/172764#M125959</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The first code that I posted was my shared/classes/alfresco/extension/file-servers-custom.xml contents.&amp;nbsp; When I choose replace="true" that only replaces the configuration that matches the name correct?&amp;nbsp; In other words, this won't neglect the default FTP Server, AVM server, and Filesystem configuration right?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;To get this started I just copied the configuration from the webapps/alfresco/WEB-INF/classes/alfresco/file-servers.xml file and customized it in the extension directory.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;-David&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2008 14:40:12 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/cifs-server-not-starting/m-p/172764#M125959</guid>
      <dc:creator>ds-crcpress</dc:creator>
      <dc:date>2008-03-21T14:40:12Z</dc:date>
    </item>
    <item>
      <title>Re: CIFS Server not starting</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/cifs-server-not-starting/m-p/172765#M125960</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Correct, replacing just the one section will not affect the other defaults. But what you have in there belongs in the CIFS Server config element, not in the Filesystems config element.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2008 15:08:26 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/cifs-server-not-starting/m-p/172765#M125960</guid>
      <dc:creator>jottley</dc:creator>
      <dc:date>2008-03-21T15:08:26Z</dc:date>
    </item>
    <item>
      <title>Re: CIFS Server not starting</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/cifs-server-not-starting/m-p/172766#M125961</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Ah, yes I just noticed that a few minutes ago when I compared the two files side by side and realized it was defined in the filesystems block.&amp;nbsp; &lt;img id="smileysurprised" class="emoticon emoticon-smileysurprised" src="https://connect.hyland.com/i/smilies/16x16_smiley-surprised.png" alt="Smiley Surprised" title="Smiley Surprised" /&gt;ops:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Restarting now to test…&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2008 15:11:24 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/cifs-server-not-starting/m-p/172766#M125961</guid>
      <dc:creator>ds-crcpress</dc:creator>
      <dc:date>2008-03-21T15:11:24Z</dc:date>
    </item>
    <item>
      <title>Re: CIFS Server not starting</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/cifs-server-not-starting/m-p/172767#M125962</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Okay, it seems to be working… sort of.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I try to connect via Windows Explorer to \\{ipofhost}\alfresco but every username/pass I type fails.&amp;nbsp; I defined the domain as ALFRESCO.&amp;nbsp; So when windows prompts me, I try ALFRESCO\{username} as well as just {username}, hostnameA\{username}, etc.&amp;nbsp; Nothing seems to work.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I tried accessing it from a machine in the same network location and no luck at all.&amp;nbsp; So I tried putting Alfresco in the same workgroup as the remote machine and its viewable (I can get a login prompt) but it still doesn't let me in.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any idea?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;David&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2008 15:34:56 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/cifs-server-not-starting/m-p/172767#M125962</guid>
      <dc:creator>ds-crcpress</dc:creator>
      <dc:date>2008-03-21T15:34:56Z</dc:date>
    </item>
    <item>
      <title>Re: CIFS Server not starting</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/cifs-server-not-starting/m-p/172768#M125963</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Are you using an LDAP backend?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2008 16:10:50 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/cifs-server-not-starting/m-p/172768#M125963</guid>
      <dc:creator>jottley</dc:creator>
      <dc:date>2008-03-21T16:10:50Z</dc:date>
    </item>
    <item>
      <title>Re: CIFS Server not starting</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/cifs-server-not-starting/m-p/172769#M125964</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;No LDAP, it is using the default authentication mechanism provided by Alfresco.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;David&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2008 16:34:56 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/cifs-server-not-starting/m-p/172769#M125964</guid>
      <dc:creator>ds-crcpress</dc:creator>
      <dc:date>2008-03-21T16:34:56Z</dc:date>
    </item>
    <item>
      <title>Re: CIFS Server not starting</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/cifs-server-not-starting/m-p/172770#M125965</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;What version of Windows?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2008 16:40:43 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/cifs-server-not-starting/m-p/172770#M125965</guid>
      <dc:creator>jottley</dc:creator>
      <dc:date>2008-03-21T16:40:43Z</dc:date>
    </item>
    <item>
      <title>Re: CIFS Server not starting</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/cifs-server-not-starting/m-p/172771#M125966</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am trying to access the share from a Windows XP Pro machine, and a Windows 2003 Terminal Server.&amp;nbsp; Alfresco itself is running on FreeBSD 6.3-STABLE.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;-David&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2008 16:43:26 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/cifs-server-not-starting/m-p/172771#M125966</guid>
      <dc:creator>ds-crcpress</dc:creator>
      <dc:date>2008-03-21T16:43:26Z</dc:date>
    </item>
    <item>
      <title>Re: CIFS Server not starting</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/cifs-server-not-starting/m-p/172772#M125967</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;a couple of ideas here:&amp;nbsp; Firewalls,&amp;nbsp; are there ports open on the BSD machine to allow connections on 139 and 445?&amp;nbsp; And can you look and see if there are any errors in the log file when you try to connect?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2008 16:50:45 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/cifs-server-not-starting/m-p/172772#M125967</guid>
      <dc:creator>jottley</dc:creator>
      <dc:date>2008-03-21T16:50:45Z</dc:date>
    </item>
    <item>
      <title>Re: CIFS Server not starting</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/cifs-server-not-starting/m-p/172773#M125968</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I enabled logging for SMB/CIFS, per your suggestion about checking for errors.&amp;nbsp; I got the following error message:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;CIFS server configuration error, NetBIOS SMB, TCP/IP SMB or Win32 NetBIOS must be enabled&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;I did a quick search on google and found this: &lt;/SPAN&gt;&lt;A href="http://tech.barwick.de/java/alfresco-enabling-cifs-in-freebsd.html" rel="nofollow noopener noreferrer"&gt;http://tech.barwick.de/java/alfresco-enabling-cifs-in-freebsd.html&lt;/A&gt;&lt;SPAN&gt; which I tried and now it is working perfectly.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The gist of the article is that you remove the platforms attribute for &amp;lt;tcpipSMB /&amp;gt; and &amp;lt;netBIOSSMB /&amp;gt;, and that seems to prevent platform checking and starts services anyway.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I should have enabled logging on SMB from the start.&amp;nbsp; &lt;img id="smileysurprised" class="emoticon emoticon-smileysurprised" src="https://connect.hyland.com/i/smilies/16x16_smiley-surprised.png" alt="Smiley Surprised" title="Smiley Surprised" /&gt;ops: &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you very much for your assistance.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;-David&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2008 19:33:24 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/cifs-server-not-starting/m-p/172773#M125968</guid>
      <dc:creator>ds-crcpress</dc:creator>
      <dc:date>2008-03-21T19:33:24Z</dc:date>
    </item>
    <item>
      <title>Re: CIFS Server not starting</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/cifs-server-not-starting/m-p/172774#M125969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Nice find! I'm going to have to file that one away.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2008 21:59:23 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/cifs-server-not-starting/m-p/172774#M125969</guid>
      <dc:creator>jottley</dc:creator>
      <dc:date>2008-03-21T21:59:23Z</dc:date>
    </item>
  </channel>
</rss>

