Gemini Community Support Site

This Gemini community support site can be used to find solutions to product issues. You can log in using Open Id, Google Profile and even Facebook. Feel free to ask a question or browse FAQs and documentation. Product tour videos are also available along with how-to videos demonstrating key Gemini capabilities.




Moving Gemini from one server to another

migration

I moved Gemini Database from one computer to another one. I created database backup and then restored it on another computer and set as the owner the user, configured in Web.config.

Everything seems to work fine but the System Log. It shows "Gemini Application Error An application error has occured - please advise the Gemini administrator within your organization."

On the old system it is still running well. What is necessary to configure? And I don't need my old system log, so if it would start from scratch it would be also ok.

Thanks for your help Anton

angestar
· 1
angestar
Replies (4)
helpful
0
not helpful

I found that also following project reports raise the same error:

  • Issue by Component Report
  • Issue Priority and Type Report
  • Issue Status and Resolution Report
  • Issue Time Duration Report

The rest of the reports are working fine.


angestar
· 1
angestar
helpful
0
not helpful

I also run Gemini on a custom port 7777


angestar
· 1
angestar
helpful
0
not helpful

I think you have an issue with your web.config file.

Did you copy this file over or update a new version of web.config?

You may not have set the nhibernate connection string properly.


    <!-- ****************** -->
    <!-- CounterSoft Gemini: Database Connection String -->
    <!-- ****************** -->
    <connectionStrings>
        <add name="Gemini" connectionString="Server=(local); Initial Catalog=MyDB; uid=sa; pwd=gemini" />
    </connectionStrings>
 
    <hibernate-configuration xmlns="urn:nhibernate-configuration-2.2">
    <!--reflection-optimizer use="false"/-->
        <session-factory>
            <property name="connection.connectionstringname">Gemini</property>
            <property name="connection.driverclass">NHibernate.Driver.SqlClientDriver</property>
            <property name="dialect">NHibernate.Dialect.MsSql2005Dialect</property>
            <property name="proxyfactory.factory
class">NHibernate.ByteCode.Castle.ProxyFactoryFactory, NHibernate.ByteCode.Castle</property>
            <property name="showsql">false</property>
            <property name="use
outerjoin">true</property>
            <!--property name="adonet.batch
size">0</property-->
            <!--property name="commandtimeout">60</property-->
            <!--property name="default
schema">GeminiSample.dbo</property-->
            <!--property name="preparesql">true</property-->
            <!--property name="connection.isolation">ReadUncommitted</property-->
            <!--property name="generate
statistics">false</property-->
            <property name="query.substitutions">true 1, false 0, yes 'Y', no 'N'</property>
        </session-factory>
    </hibernate-configuration>


Harvey Kandola
· 212
Harvey Kandola
helpful
0
not helpful

Yes, that is. Thank you - resolved!


angestar
· 1
angestar