Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

Make sure to update Makefile.common such way there is an entry for your machine. Note that machine name is an arbitrary choice. Simply, make sure not to pick one that already exists. Please make sure to add your own entry without altering the others.

...

  1. You

...

  1. need

...

  1. an

...

  1. entry

...

  1. similar

...

  1. to

...

  1. this

...

  1. one

...


  1. ifeq

...

  1. ($(MACHINE),your_machine_name)

...

  1. #

...

  1. <-

...

  1. make

...

  1. sure

...

  1. to

...

  1. use

...

  1. the

...

  1. very

...

  1. same

...

  1. name

...

  1. as

...

  1. the

...

  1. name

...

  1. exported

...

  1. inside

...

  1. MACHINE

...

  1. variable

...


  1. WSDL_URL

...

  1. :=

...

  1. https://address.of.itmcatalog.installation/itmcatalog/api/server.php?wsdl

...

  1. #

...

  1. <-

...

  1. you

...

  1. need

...

  1. these

...

  1. two

...

  1. entries

...


  1. WS_URL

...

  1. :=

...

  1. https://address.of.itmcatalog.installation/itmcatalog/api/server.php

...


  1. else

...

  1. ifeq

...

  1. ($(MACHINE),gateway)

...


  1. ...

...


  1. ...

Updating dbAPI/database.properties 

...

Make sure you can access repository: https://gforge6.eufus.eu/svn/catalog_qt

Code Block
> svngit coclone https://gforge6your_gateway_user_name@gforge6.eufus.eu/svngit/catalog_qt

The tool requires the following components to work:

...

Code Block
> service apache2 restart

Configuration of UI

the fastest way:

...

To have access to databases, you must modify the config.json file:

Code Block
{
    "wsdl":"http://portal.eufus.eu

...

/itm/catalog_qt-dev/api_1_0_db/server.php?wsdl",
    "ns":"http://portal.eufus.eu

...

Code Block
./src/ui2/config.php
./src/config.php

You can configure access to the mysql database in a ./src/ui2/config.php file (The data should match those given in the section Creating db schema and Installation of MySQL/MariaDB).

Also configuration of API databases access should be similarly adapted:

Code Block
./src/config_scheduler_db.php/itm/catalog_qt-dev/api_1_0_db",

    "db_server":"mysql server or hostname",
    "db_type":"mysql or other type",
    "db_user":"mysql user",
    "db_password":"password for user",
    "db_db":"itm_scheduler_db"
}


After all, restart the apache server:

...