<?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 No problem, just solutions! in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/no-problem-just-solutions/m-p/2681#M142</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Dear all,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm sorry if these topics have already been resolved. I've just wanted to share my experinces on installation problems occured in WinXp + Tomcat + MySql + Alfresco 0.5.0.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I hope some of them will help someone.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Ali Sadik Kumlali&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;——————————————————————————&lt;/SPAN&gt;&lt;BR /&gt;&lt;STRONG&gt;Using Existing MySql&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;I decided to use my existing MySql which is installed under&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"E:\programs\MySQL\MySQL Server 5.0\". I simply did the followings:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;1) Found the short name of "MySQL Server 5.0" by running "dir /x" command under "E:\programs\MySQL\" folder. It was "MYSQLS~1.0".&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2) Replaced all the "c:\mysql\" lines in the following files with&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;the line "E:\programs\MySQL\MYSQLS~1.0\"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; - alf_start_tc.bat&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; - alf_stop_tc.bat&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; - db_remove.bat&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; - db_setup.bat&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If existing MySql has a password, *.bat files coming along with Alfresco will not succeed. Add a "-p" parameter all the mysql related lines in the files as shown below:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;EM&gt;In alf_stop_tc.bat&lt;/EM&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; echo Shutting down MySQL…&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; E:\programs\MySQL\MYSQLS~1.0\bin\mysqladmin -u root -p shutdown&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;EM&gt;In db_remove.bat&lt;/EM&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; echo Deleting Alfresco database…&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; E:\programs\MySQL\MYSQLS~1.0\bin\mysqladmin -u root -p drop alfresco&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; echo Shutting down MySQL…&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; E:\programs\MySQL\MYSQLS~1.0\bin\mysqladmin -u root -p shutdown&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;EM&gt;In db_setup.bat&lt;/EM&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; echo Creating Alfresco database…&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; E:\programs\MySQL\MYSQLS~1.0\bin\mysqladmin -u root -p create alfresco&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; E:\programs\MySQL\MYSQLS~1.0\bin\mysql -u root -p -e "grant all on alfresco.* to 'alfresco'@'localhost' identified by 'alfresco' with grant option;"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; echo Shutting down MySQL…&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; E:\programs\MySQL\MYSQLS~1.0\bin\mysqladmin -u root -p shutdown&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Now, you're ready to setup database. Just run db_setup.bat. Correspondingly, if you want to uninstall database objects and data used by Alfresco, run db_remove.bat. This script removes Lucene indexes as well.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Using Existing Tomcat&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;There is no difficult step. Just put alfresco.war under existing Tomcat's webapps folder.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Since we override Alfresco's original launch process, MySql and Tomcat must be started manually. Or, minor changes in existing batch scripts will be well enough. Let me list the steps:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1) Start MySql as in alf_start_tc.bat. If you want to use this script, don't forget the comment out lines related to Tomcat.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2) Start Tomcat with "Monitor Tomcat" application.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you want to stop application and MySql respectively, please follow the steps below:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1) Stop Tomcat using "Monitor Tomcat" application.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2) Stop MySql as in alf_stop_tc.bat. If you want to use this script, don't forget the comment out lines related to Tomcat.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Old JDBC Drivers Problem&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;In alfresco-tomcat-0.5.0.zip, JDBC drivers under alfresco\tomcat\common\lib are either older than alfresco-tomcat-0.4.0a.zip or non-existent.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In alfresco-tomcat-0.4.0a.zip&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; - mysql-connector-java-3.1.8-bin.jar&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; - hsqldb.jar&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; - postgresql-8.0-311.jdbc3.jar&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In alfresco-tomcat-0.5.0.zip&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; - mysql-connector-java-3.0.16-ga-bin.jar&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; - no hspldb driver&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; - no postgresql driver&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When I used default mysql driver shipped with 0.5.0, i got Hibernate errors. After I had replaced it with mysql-connector-java-3.1.10-bin.jar (the newest one from the mysql.com) all the errors disappeared.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;CIFS Related Problems&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;When I ran Alfresco within bundled Tomcat, I could not manage to run CIFS without errors. Tomcat logged an interesting error that said "Invalid platform LÃ„Â°NUX".&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I then moved my alfresco.war under my own Tomcat's webapps folder (e:\programs\Apache Software Foundation\Tomcat 5.5\webapps) and started Tomcat using "Monitor Tomcat" application. There were no mentioned exception thrown to the log.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Please note that before running Tomcat from Monitor Tomcat, I started MySQL with the command below:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;start "MySQL Server" /min cmd /c E:\programs\MySQL\MYSQLS~1.0\bin\mysqld-nt –console&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;"Null" in Paths to CIFS Folders&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;If Tomcat is started with the local setting other than US and English, CIFS folders in the web application contains "null" word and looks like this:&amp;nbsp; "\\GIRDAP_H\null\Alfresco".&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Since I used my own Tomcat and its monitoring application "Monitor Tomcat", changing these JVM parameters was easy. I just added -Duser.language=EN and -Duser.country=US lines in Java Options box under Java tab of Monitor Tomcat application. After I had started the Tomcat, everything seemed well. This time folder name changed to "\\GIRDAP_H\Alfresco" as expected.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 30 Aug 2005 22:10:36 GMT</pubDate>
    <dc:creator>kumlali</dc:creator>
    <dc:date>2005-08-30T22:10:36Z</dc:date>
    <item>
      <title>No problem, just solutions!</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/no-problem-just-solutions/m-p/2681#M142</link>
      <description>Dear all,I'm sorry if these topics have already been resolved. I've just wanted to share my experinces on installation problems occured in WinXp + Tomcat + MySql + Alfresco 0.5.0.I hope some of them will help someone.Regards,Ali Sadik Kumlali——————————————————————————Using Existing MySqlI decided to</description>
      <pubDate>Tue, 30 Aug 2005 22:10:36 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/no-problem-just-solutions/m-p/2681#M142</guid>
      <dc:creator>kumlali</dc:creator>
      <dc:date>2005-08-30T22:10:36Z</dc:date>
    </item>
    <item>
      <title>Re: No problem, just solutions!</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/no-problem-just-solutions/m-p/2682#M143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks very much for your helpful comments. I'm sure they will be very useful to other users as they are useful to us also!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Appologies for the MySQL JDBC Driver issue - looks like we packaged the wrong driver with the build, we'll correct this in the next build.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The old driver issue will only affect you if the newest MySQL 5.0 version is installed on your system (which you obviously have), otherwise it should be ok for now until we make another release.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'll make this thread sticky so other users can see it easier.&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;Kevin&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Aug 2005 08:39:10 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/no-problem-just-solutions/m-p/2682#M143</guid>
      <dc:creator>kevinr</dc:creator>
      <dc:date>2005-08-31T08:39:10Z</dc:date>
    </item>
    <item>
      <title>Re: No problem, just solutions!</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/no-problem-just-solutions/m-p/2683#M144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The "Invalid platform LINUX" looks like a character set issue. The simplest solution to this when running Alfresco under Windows is to comment out or delete the following lines from the file-servers.xml file (in the WEB-INF/classes/alfresco folder) :-&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;tcpipSMB platforms="linux"/&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;netBIOSSMB platforms="linux"/&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Gary&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Aug 2005 10:54:17 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/no-problem-just-solutions/m-p/2683#M144</guid>
      <dc:creator>gary_spencer</dc:creator>
      <dc:date>2005-08-31T10:54:17Z</dc:date>
    </item>
    <item>
      <title>Re: No problem, just solutions!</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/no-problem-just-solutions/m-p/2684#M145</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Dear all,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Just a little update to the document in my previous post.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1) If you decide MySql to automatically be launched as Windows service while Windows start, then there is no need to use changed alf_start_tc.bat just for launching MySql. The same thing happens even if you launch the service manually.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2) If you &lt;/SPAN&gt;&lt;STRONG&gt;also&lt;/STRONG&gt;&lt;SPAN&gt; decide to use your own Tomcat, you do not even need to use alf_start_tc.bat to start Alfresco. Launching Tomcat by using "Monitor Tomcat" will be enough to do so -if necessary steps mentioned my previous post has been followed carefully.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;3) If MySql's bin folder is set in your PATH environment variable, there is no need to run dir /x command to find shorten form of MySql installation folder names which are needed in batch scripts. (If this item does not mean anything to you, please refer to my previous post)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Ali Sadik Kumlali&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Aug 2005 21:21:06 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/no-problem-just-solutions/m-p/2684#M145</guid>
      <dc:creator>kumlali</dc:creator>
      <dc:date>2005-08-31T21:21:06Z</dc:date>
    </item>
    <item>
      <title>Re: No problem, just solutions!</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/no-problem-just-solutions/m-p/2685#M146</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Dear all,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Sorry for this much posts. I've just recognized that one missing point while using my own Tomcat: Lucene folders.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you start Tomcat by using "Monitor Tomcat" application, working folder will be "c:\windows\system32" (I assume your Windows installed under c:\windows folder). Therefore, Lucene related folders called &lt;/SPAN&gt;&lt;STRONG&gt;contentstore &lt;/STRONG&gt;&lt;SPAN&gt;and&amp;nbsp; &lt;/SPAN&gt;&lt;STRONG&gt;lucene-indexes&lt;/STRONG&gt;&lt;SPAN&gt; are created under it and&amp;nbsp; db_remove.bat script cannot be able to remove these folders.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;AFAIK, there are two options to create mentioned folders under desired folder:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1) Setting dir.root parameter in repository.properties file to the desired index folder (for example c:/temp). repository.properties file resides in …\WEB-INF\classes\alfresco\.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2) Setting Working Path parameter on Startup and Shutdown tabs of Monitor Tomcat application. I preferred this method and set the value as E:\programs\Apache Software Foundation\Tomcat 5.5\webapps\. As a result, Lucene folders were created under E:\programs\Apache Software Foundation\Tomcat 5.5\webapps\alfresco where Alfresco ran. Thus, if i remove the alfresco subfolder under webapps folder of Tomcat, index folders are removed as well.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Ali Sadik Kumlali&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Aug 2005 22:30:00 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/no-problem-just-solutions/m-p/2685#M146</guid>
      <dc:creator>kumlali</dc:creator>
      <dc:date>2005-08-31T22:30:00Z</dc:date>
    </item>
    <item>
      <title>Re: No problem, just solutions!</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/no-problem-just-solutions/m-p/2686#M147</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Some helpful links for handling &lt;/SPAN&gt;&lt;STRONG&gt;contentstore&lt;/STRONG&gt;&lt;SPAN&gt; and &lt;/SPAN&gt;&lt;STRONG&gt;lucene-indexes&lt;/STRONG&gt;&lt;SPAN&gt; folders:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.alfresco.org/mediawiki/index.php/Development_Environment#Developer_Runtime_Configuration" rel="nofollow noopener noreferrer"&gt;WIKI: Developer Runtime Configuration&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://www.alfresco.org/mediawiki/index.php/Repository_Configuration" rel="nofollow noopener noreferrer"&gt;WIKI: Repository Configuration&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Feb 2006 22:51:51 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/no-problem-just-solutions/m-p/2686#M147</guid>
      <dc:creator>derek</dc:creator>
      <dc:date>2006-02-08T22:51:51Z</dc:date>
    </item>
    <item>
      <title>Re: No problem, just solutions!</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/no-problem-just-solutions/m-p/2687#M148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Dear all,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Using Existing Tomcat&lt;/STRONG&gt;&lt;BR /&gt;There is no difficult step. Just put alfresco.war under existing Tomcat's webapps folder.&lt;BR /&gt;&lt;BR /&gt;Since we override Alfresco's original launch process, MySql and Tomcat must be started manually. Or, minor changes in existing batch scripts will be well enough. Let me list the steps:&lt;BR /&gt;&lt;BR /&gt;1) Start MySql as in alf_start_tc.bat. If you want to use this script, don't forget the comment out lines related to Tomcat.&lt;BR /&gt;2) Start Tomcat with "Monitor Tomcat" application.&lt;BR /&gt;&lt;BR /&gt;If you want to stop application and MySql respectively, please follow the steps below:&lt;BR /&gt;&lt;BR /&gt;1) Stop Tomcat using "Monitor Tomcat" application.&lt;BR /&gt;2) Stop MySql as in alf_stop_tc.bat. If you want to use this script, don't forget the comment out lines related to Tomcat.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Before finding this post I tried this strategy but it doesn't work. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I have errors &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'registry' defined in class path resource [alfresco/core-services-context.xml]: Invocation of init method failed;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;etc etc&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I tried to control busy ports and other similar things but nothing&amp;nbsp; &lt;img id="smileysad" class="emoticon emoticon-smileysad" src="https://connect.hyland.com/i/smilies/16x16_smiley-sad.png" alt="Smiley Sad" title="Smiley Sad" /&gt;&amp;nbsp; &lt;img id="smileysad" class="emoticon emoticon-smileysad" src="https://connect.hyland.com/i/smilies/16x16_smiley-sad.png" alt="Smiley Sad" title="Smiley Sad" /&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Rob&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Sep 2007 06:59:24 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/no-problem-just-solutions/m-p/2687#M148</guid>
      <dc:creator>robbiefpi</dc:creator>
      <dc:date>2007-09-14T06:59:24Z</dc:date>
    </item>
    <item>
      <title>Re: No problem, just solutions!</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/no-problem-just-solutions/m-p/2688#M149</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;@robbiefpi&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Have you posted the full error on another post where it can have a life of its own?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jun 2010 10:17:07 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/no-problem-just-solutions/m-p/2688#M149</guid>
      <dc:creator>derek</dc:creator>
      <dc:date>2010-06-01T10:17:07Z</dc:date>
    </item>
    <item>
      <title>Re: No problem, just solutions!</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/no-problem-just-solutions/m-p/2689#M150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;2 days could not be installed on windows server 2012 /&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;FATAL: lock file "postmaster.pid" already exists&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;HINT: Is another postmaster (PID 7 000) running in data directory "D &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; Alfresco / alf_data / POSTGR ~ 1"?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;and there is no adjustment base. As a result he could not log in for the first time.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Helped during the installation, a CMD and the inscription that right now, will be launched service alfrescoPostgreSQL&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;In dispatcher tasks kill all processes postgres.exe&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;then go to the service. restart AlfrescoPostgreSQL&amp;nbsp; and&amp;nbsp; the installation proceeds normally.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Sep 2012 11:34:37 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/no-problem-just-solutions/m-p/2689#M150</guid>
      <dc:creator>antoshik86</dc:creator>
      <dc:date>2012-09-11T11:34:37Z</dc:date>
    </item>
  </channel>
</rss>

