From 72e055f5d3dfe138364d060b01f8182672862b45 Mon Sep 17 00:00:00 2001 From: Liz Rea Date: Tue, 7 Feb 2017 14:30:30 +1300 Subject: [PATCH] Bug 17956 - [follow up] SIP -> SIP2, adding an ordered list to LDAP config --- .../prog/en/modules/onboarding/onboardingstep6.tt | 39 +++++++++++----------- 1 file changed, 20 insertions(+), 19 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep6.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep6.tt index f3eefc3..93b0f97 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep6.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep6.tt @@ -13,17 +13,17 @@ Koha supports the integration of different library services with it.

LDAP user authentication

LDAP (Lightweight Directory Access Protocol) can be used to authenticate (login/logout) users. If your organisation has an existing authenication system this can be integrated with the Koha ILS, and so when users enter their credentials into Koha their username and password as compared against the user records in your existing user database to find a match.
-

SIP communication protocol between self checkout machines and server

- SIP (Session Initiation Protocol) is a communication protocol used between ACS (Automated Circulation System in this case the Koha server) and SC (Self Checkout machines). If your library/institution has self checkout machines to checkin/checkout items then you will need to configure Koha to use SIP.

+

SIP2 communication protocol between self checkout machines and server

+ SIP2 (Session Initiation Protocol) is a communication protocol used between ACS (Automated Circulation System in this case the Koha server) and SC (Self Checkout machines). If your library/institution has self checkout machines to checkin/checkout items then you will need to configure Koha to use SIP.

-

Does your institution use SIP, or LDAP?

+

Does your institution use SIP2, or LDAP?

LDAP
- SIP
+ SIP2
@@ -32,20 +32,21 @@
[% IF (op == "learnservice") && (service == "LDAP") %]

Setting up LDAP with Koha

- If your organisation has an existing database of user records that are used for authentication then setting up the LDAP service with Koha is a good idea because all user records would be stored in a single central location.
+ If your organisation has an existing database of user records that are used for authentication, then setting up the LDAP service with Koha is a good idea because all user records would be stored in a single central location.
LDAP can be used to log into both the Koha staff interface and OPAC.

Follow these steps to set up LDAP with Koha:

- 1. In your Linux terminal navigate to the directory containing the koha-conf.xml file. This will be either:
+
    +
  1. In your Linux terminal navigate to the directory containing the koha-conf.xml file. This will be either:
  2. cd /etc/koha/sites/kohadev/

    - 2. Open the koha-conf.xml file as root
    +
  3. Open the koha-conf.xml file as root
  4. sudo vi koha-conf.xml

    - 3. Scroll down to line 295 and change it to:
    +
  5. Scroll down to line 295 and change it to:
  6. <useldapserver>1</useldapserver>

    - 4. Write in the follwing information:
    +
  7. Write in the follwing information:
  8. <ldapserver id="ldapserver">
    <hostname>localhost</hostname>
    <base>dc=metavore,dc=com</base>
    @@ -57,8 +58,8 @@ <anonymous_bind>0</anonymous_bind>
    <principal_name>%s@my_domain.com</principal_name>
    <update_password>1</update_password>

    - 5. The following fields to write in (called maping fields) are optional. What they do is link the Koha database columns with the columns in your organisations user database.
    - e.g. the database column firstname is matched with the LDAP element givename
    +
  9. The following fields to write in (called mapping fields) are optional. What they do is link the Koha database columns with the columns in your organisations user database.
  10. + e.g. the database column firstname is matched with the LDAP element givenname
    <mapping>
    <firstname is="givenname" ></firstname>
    <surname is="sn" ></surname>
    @@ -72,13 +73,13 @@ <categorycode is="employeetype" >PT</categorycode>
    <phone is="telephonenumber"></phone>
    </mapping>
    - +

Learn about further LDAP configuration

LDAP documentation [% ELSIF (op == "learnservice") && (service == "SIP") %] -

Setting up SIP with Koha

- If you installed Koha using debain packages then setting up SIP is easy, simply follow these steps:

+

Setting up SIP2 with Koha

+ If you installed Koha using debain packages then setting up SIP2 is easy, simply follow these steps:

1. In your Linux terminal (in the Koha root directory) write in:
sudo koha-enable-sip

2. Navigate to the directory containing SIPConfig.xml
@@ -89,12 +90,12 @@ 3.1. Edit the port values in the service sections at the top of the SIPconfig.xml file, making sure that the two port values have the same IP address but different port numbers.

3.2. Enter an account. This account must have the same username and password as an account you have created in the Koha staff interface. Also make sure that the account is set to having 'circulate' permissions only.

3.3. Enter an institution. As with account this institution's ID must match the branchcode of a library created in the Koha staff interface

- 4. In your Linux terminal start SIP by writing in:
+ 4. In your Linux terminal start SIP2 by writing in:
sudo koha-start-sip

-

Learn how to test SIP at:

- Evergreen SIP support

-

Important security notice about using SIP

- To ensure your SIP traffic (the request and response messages sent between you and the SIP server) are secure you must use a stunnel or VPN. +

Learn how to test SIP2 at:

+ Evergreen SIP2 support

+

Important security notice about using SIP2

+ To ensure your SIP2 traffic (the request and response messages sent between you and the SIP2 server) are secure you must use a stunnel or VPN. [% END %] -- 1.9.1