Versionen im Vergleich

Schlüssel

  • Diese Zeile wurde hinzugefügt.
  • Diese Zeile wurde entfernt.
  • Formatierung wurde geändert.

...

update goco.co_employee set user_id = 'YOUR_WINDOWS_USER_ID' where user_id = 'initialuser';
commit;

...

Adjust context.xml

...

of Application Server

...

for Oracle

Um auf dem Application Server die Datenbank-Connections zu konfigurieren, öffnen Sie das File To configure the database connections on the Application Server to, open the file context.xml (in <Tomcat-Directory>/conf). Fügen Sie folgende Zeilen direkt hinter dem Element <context> ein.Add the following lines directly after the element <context>.

IMPORTANT: Replace YOUR_SID both times by your WICHTIG: Ersetzen Sie YOUR_SID beide Male durch die von Ihnen vorgesehene Oracle SID.

    <Resource
        name="gocoTenantDs"
        factory="com.gocompliant.encryptedDs.EncryptedDataSourceFactory"
        auth="Container"
        type="javax.sql.DataSource"
        driverClassName="oracle.jdbc.OracleDriver"
        url="jdbc:oracle:thin:@localhost:1521:YOUR_SID"
        username="goco"
        password="922f591c101ab822305be286a532c196"
        maxActive="20"
        minIdle="0"
        maxIdle="0"
        minEvictableIdleTimeMillis="14400000"
        maxWait="-1" />
    <Resource
        name="quartz"
        factory="com.gocompliant.encryptedDs.EncryptedDataSourceFactory"
        auth="Container"
        type="javax.sql.DataSource"
        driverClassName="oracle.jdbc.OracleDriver"
        url="jdbc:oracle:thin:@localhost:1521:YOUR_SID"
        username="quartz"
        password="2259b33c5588618ee0742b2ced9998e6"
        maxActive="20"
        minIdle="0"
        maxIdle="0"
        minEvictableIdleTimeMillis="14400000"
        maxWait="-1" />

Installation

...

of the software on the Application Server

Installation

...

of the war-file

  1. Stoppen Sie den Stop the Tomcat - Service.
  2. Löschen Sie das Verzeichnis Delete the directory <Tomcat-Directory>/webapps/ROOT.
  3. Laden Sie das war-file von der Download-Area herunter. Die Namenskonvention für das war-file ist immer folgendermassenDownload the .war file from the download area. The naming convention for the war file is as follows:
    gocompliant-ics-{Versionversion}-{Loginlogin-variantemechanism}-{HTTPhttp-oderor-HTTPS-Variantehttps}.war
    Die normalerweise installierte Varianten sindThe normally installed variants are:
    Login-VarianteMechanism: ssoad (Single Sign-On via Active Directory)
    HTTP-oder-HTTPS-VarianteVariant: httpallowed
    Wir empfehlen, zunächst diese Variante herunterzuladen, also z.B httpallowed
    We recommend to start with this variant, e.g. gocompliant-ics-12.54.0-ssoad-httpallowed.war
  4. Kopieren Sie das war-file nach <TomcatCopy the .war file to<Tomcat-Directory>/webapps, also ze.Bg. C:\Program Files\Apache Software Foundation\Tomcat 79.0\webapps
  5. Benennen Sie das war-file um nach Rename the .war file to ROOT.war
  6. Starten Sie den Restart the Tomcat - Service neu
  7. Brose to Öffnen Sie mit einem Browser http://localhost oder  orhttp://localhost:8080 und verifizieren Sie, das die GoCompliant Application läuft. Wenn Sie eine SSO Login-Variante gewählt haben, sollten Sie automatisch eingeloggt werden (dazu muss Ihr Windows Benutzername mit einem der auf der Datenbank vorkonfigurierten Benutzern übereinstimmen). Ansonsten sollten Sie eine Login-Seite sehen.

Nach der Installation

Bevor die Applikation für die Fachabteilungenen freigegeben wird, sollten die wichtigsten Systemparameter konfiguriert werden. Eine Beschreibung dieser Parameter findet sich im Abschnitt Systemparameter.

  1. and verify that the GoCompliant application is running. If you have chosen an SSO login mechanism you should be logged in automatically (your Windows User ID needs to correspond with one of the preconfigured users on the database). Otherwise you should see a login page.

After the installation

Before officially rolling out the application you should configure the most important system parameters. A descriptino of these parameters can be found in section Systemparameter.

If you would like to use the LDAP (Active Directory) synchronisation, you will find a description of the relevant parameters in section Wenn Sie die LDAP (Active Directory) Synchronisierung verwenden möchten, findet sich eine Beschreibung der entsprechenden Parameter im Abschnitt LDAP (Active Directory) Systemparameter.

Wenn Sie die Applikation über https laufen lassen wollen und über ein entsprechendes Zertifikat verfügen, folgen Sie der AnleitungIf you want to run your application via https and have a corresponding certificate, please follow these instructions: Wie kann ich HTTPS einrichten bzw. erzwingen?

...