تثبيت إعدادات الدخول الموحّد (SSO) في Apigee

لتثبيت وحدة الدخول الموحّد لخدمة Apigee وإعدادها باستخدام موفِّر هوية (IdP) خارجي، عليك تنفيذ ما يلي:

  1. إنشاء المفاتيح والشهادات:
  2. إعداد إعدادات الدخول المُوحَّد (SSO) الأساسية لخدمة Apigee: يجب أن يتضمّن الملف الأساسي السمات المشتركة في جميع إعدادات الدخول المُوحَّد (SSO).
  3. إضافة خصائص الإعداد الخاصة بموفِّر الهوية: استخدِم إحدى المجموعات التالية الخاصة بموفِّر الهوية لسمات الضبط في ملف الإعداد:
  4. تثبيت خدمة الدخول المُوحَّد (SSO) لخدمة Apigee: ثبِّت وحدة الدخول المُوحَّد (SSO) لخدمة Apigee، واضبط ملف الإعداد على أداة التثبيت.

يتم وصف كل خطوة من هذه الخطوات في الأقسام التالية.

إنشاء مفاتيح وشهادات

يوضّح هذا القسم طريقة إنشاء شهادات موقَّعة ذاتيًا، وهو ما قد يناسب بيئة الاختبار الخاصة بك، ولكن يجب استخدام الشهادات الموقَّعة من مرجع تصديق لبيئة إنتاج.

لإنشاء زوج المفاتيح للتوقيع بهدف التحقّق:

  1. بصفتك مستخدم sudo، أنشِئ الدليل الجديد التالي:
    sudo mkdir -p /opt/apigee/customer/application/apigee-sso/jwt-keys
    .
  2. التغيير إلى الدليل الجديد:
    cd /opt/apigee/customer/application/apigee-sso/jwt-keys/
  3. أنشئ المفتاح الخاص باستخدام الأمر التالي:
    sudo openssl genrsa -out privkey.pem 2048
  4. يمكنك إنشاء المفتاح العام من المفتاح الخاص باستخدام الأمر التالي:
    sudo openssl rsa -pubout -in privkey.pem -out pubkey.pem
  5. غيِّر مالك ملف PEM الناتج إلى مستخدم "apigee":
    sudo chown apigee:apigee *.pem

لإنشاء المفتاح وشهادة موقَّعة ذاتيًا بدون عبارة مرور، للتواصل مع موفّر الهوية:

  1. بصفتك مستخدم sudo، أنشِئ دليلاً جديدًا:
    sudo mkdir -p /opt/apigee/customer/application/apigee-sso/idp/
  2. التغيير إلى الدليل الجديد:
    cd /opt/apigee/customer/application/apigee-sso/idp/
  3. إنشاء مفتاحك الخاص باستخدام عبارة مرور:
    sudo openssl genrsa -aes256 -out server.key 1024
  4. أزِل عبارة المرور من المفتاح:
    sudo openssl rsa -in server.key -out server.key
  5. إنشاء طلب توقيع شهادة لـ CA:
    sudo openssl req -x509 -sha256 -new -key server.key -out server.csr
  6. يمكنك إنشاء شهادة موقَّعة ذاتيًا تنتهي صلاحيتها بعد 365 يومًا:
    sudo openssl x509 -sha256 -days 365 -in server.csr -signkey server.key -out selfsigned.crt
  7. غيِّر مالك المفتاح وملف crt إلى مالك "apigee":
    sudo chown apigee:apigee server.key
    sudo chown apigee:apigee selfsigned.crt

لتفعيل بروتوكول أمان طبقة النقل (TLS) في وحدة خدمة الدخول الموحّد Apigee، من خلال ضبط SSO_TOMCAT_PROFILE على SSL_TERMINATION أو على SSL_PROXY، لا يمكنك استخدام شهادة موقَّعة ذاتيًا. يجب إنشاء شهادة من مرجع تصديق. راجِع إعداد الدخول المُوحَّد (SSO) لخدمة Apigee للدخول إلى HTTPS لمزيد من المعلومات.

إعدادات ضبط الدخول المُوحَّد (SSO) لخدمة Apigee

قبل أن تتمكن من تثبيت وحدة الدخول الموحّد لخدمة Apigee، يجب تحديد ملف إعداد. يمكنك تمرير ملف الإعداد هذا إلى أداة التثبيت عند تثبيت وحدة الدخول الموحّد لخدمة Apigee.

ويكون ملف الإعداد على النحو التالي:

IP1=hostname_or_IP_of_apigee_SSO
IP2=hostname_or_IP_of_apigee_SSO

## Management Server configuration.
# Management Server IP address and port
MSIP=$IP1
MGMT_PORT=8080
# Edge sys admin username and password as set when you installed Edge.
ADMIN_EMAIL=opdk@google.com
APIGEE_ADMINPW=Secret123
# Set the protocol for the Edge management API. Default is http.
# Set to https if you enabled TLS on the management API.
MS_SCHEME=http

## Postgres configuration.
# Postgres IP address and port
PG_HOST=$IP1
PG_PORT=5432
# Postgres username and password as set when you installed Edge.
# If these credentials change, they must be updated and setup rerun.
PG_USER=apigee
PG_PWD=postgres

## Apigee SSO module configuration.
# Choose either "saml" or "ldap".
SSO_PROFILE="[saml|ldap]"
# Externally accessible IP or DNS name of apigee-sso.
SSO_PUBLIC_URL_HOSTNAME=$IP2
SSO_PG_DB_NAME=database_name_for_sso

# Default port is 9099. If changing, set both properties to the same value.
SSO_PUBLIC_URL_PORT=9099
SSO_TOMCAT_PORT=9099
# Set Tomcat TLS mode to DEFAULT to use HTTP access to apigee-sso.
SSO_TOMCAT_PROFILE=DEFAULT
SSO_PUBLIC_URL_SCHEME=http

# SSO admin user name. The default is ssoadmin.
SSO_ADMIN_NAME=ssoadmin
# SSO admin password using uppercase, lowercase, number, and special chars.
SSO_ADMIN_SECRET=Secret123

# Enable the ability to sign an authentication request with SAML SSO.
SSO_SAML_SIGN_REQUEST=y

# Path to signing key and secret from Create the TLS keys and certificates above.
SSO_JWT_SIGNING_KEY_FILEPATH=/opt/apigee/customer/application/apigee-sso/jwt-keys/privkey.pem
SSO_JWT_VERIFICATION_KEY_FILEPATH=/opt/apigee/customer/application/apigee-sso/jwt-keys/pubkey.pem

###########################################################
#                 Define External IDP                     #
# Use one of the following configuration blocks to        #
# define your IDP settings:                               #
#  - SAML configuration properties                     #
#  - LDAP Direct Binding configuration properties        #
#  - LDAP Indirect Binding configuration properties       #
###########################################################

INSERT_IDP_CONFIG_BLOCK_HERE (SAML, LDAP direct, or LDAP indirect, below)

# Configure an SMTP server so that the Apigee SSO module can send emails to users
SKIP_SMTP=n
SMTPHOST=smtp.example.com
SMTPUSER=smtp@example.com
# omit for no username
SMTPPASSWORD=smtppwd
# omit for no password
SMTPSSL=n
SMTPPORT=25
# The address from which emails are sent
SMTPMAILFROM="My Company <myco@company.com>"

خصائص إعداد الدخول المُوحَّد (SSO) المستند إلى SAML

في حال استخدام SAML لموفّر الهوية، استخدِم المجموعة التالية من خصائص الإعداد في ملف الضبط (المحدّد أعلاه):

## SAML Configuration Properties
# Insert this section into your base configuration file, as described previously.

# Name of SAML IDP. For example, okta or adfs.
SSO_SAML_IDP_NAME=okta
# Text displayed on the SSO sign-in page after being redirected by either the New or Classic Edge UI for SAML logins.
# Note: Installing SSO does not depend on the Edge UI or which version of the UI you are using.
SSO_SAML_IDP_LOGIN_TEXT="Please log in to your IDP"

# The metadata URL from your IDP.
# If you have a metadata file, and not a URL,
# see "Specifying a metadata file instead of a URL" below.
SSO_SAML_IDP_METADATA_URL=https://dev-343434.oktapreview.com/app/exkar20cl/sso/saml/metadata

# Determines whether to skip TLS validation for the URL specified
# by SSO_SAML_IDP_METADATA_URL.
# This is necessary if the URL uses a self-signed certificate.
# The default value is "n".
SSO_SAML_IDPMETAURL_SKIPSSLVALIDATION=n

# SAML service provider key and cert from Create the TLS keys and certificates above.
SSO_SAML_SERVICE_PROVIDER_KEY=/opt/apigee/customer/application/apigee-sso/saml/server.key
SSO_SAML_SERVICE_PROVIDER_CERTIFICATE=/opt/apigee/customer/application/apigee-sso/saml/selfsigned.crt

# The passphrase used when you created the SAML cert and key.
# The section "Create the TLS keys and certificates" above removes the passphrase,
# but this property is available if you require a passphrase.
# SSO_SAML_SERVICE_PROVIDER_PASSWORD=samlSP123

# Requires that SAML responses be signed by your IDP.
# This property is enabled by default since release 4.50.00.05.
SSO_SAML_SIGNED_ASSERTIONS=y

خصائص ضبط الربط المباشر لـ LDAP

في حال استخدام الربط المباشر لبروتوكول LDAP لموفّر الهوية، استخدِم المجموعة التالية من خصائص الإعداد في ملف الإعداد، كما هو موضّح في المثال أعلاه:

## LDAP Direct Binding configuration
# Insert this section into your base configuration file, as described previously.

# The type of LDAP profile; in this case, "direct"
SSO_LDAP_PROFILE=direct

# The base URL to which SSO connects; in the form: "ldap://hostname_or_IP:port
SSO_LDAP_BASE_URL=LDAP_base_URL

# Attribute name used by the LDAP server to refer to the user's email address; for example, "mail"
SSO_LDAP_MAIL_ATTRIBUTE=LDAP_email_attribute

# Pattern of the user's DN; for example: =cn={0},ou=people,dc=example,dc=org
# If there is more than one pattern, separate with semicolons (";"); for example:
# =cn={0},ou=people,dc=example,dc=org;=cn={0},ou=people,dc=example,dc=com
SSO_LDAP_USER_DN_PATTERN=LDAP_DN_pattern

خصائص إعداد الربط غير المباشر لـ LDAP

في حال استخدام الربط غير المباشر لبروتوكول LDAP لموفّر الهوية، استخدِم المجموعة التالية من خصائص الإعداد في ملف الإعداد، كما هو موضّح في المثال أعلاه:

## LDAP Indirect Binding configuration
# Insert this section into your base configuration file, as described previously.

# Type of LDAP profile; in this case, "indirect"
SSO_LDAP_PROFILE=indirect

# Base URL to which SSO connects; in the form: "ldap://hostname_or_IP:port
SSO_LDAP_BASE_URL=LDAP_base_URL

# DN and password of the LDAP server's admin user
SSO_LDAP_ADMIN_USER_DN=LDAP_admin_DN
SSO_LDAP_ADMIN_PWD=LDAP_admin_password

# LDAP search base; for example, "dc=example,dc=org"
SSO_LDAP_SEARCH_BASE=LDAP_search_base

# LDAP search filter; for example, "cn={0}"
SSO_LDAP_SEARCH_FILTER=LDAP_search_filter

# Attribute name used by the LDAP server to refer to the user's email address; for example, "mail"
SSO_LDAP_MAIL_ATTRIBUTE=LDAP_email_attribute

تثبيت وحدة الدخول الموحّد لخدمة Apigee

بعد إنشاء المفاتيح وإعداد ملف الضبط، يمكنك تثبيت وحدة Apigee للدخول الموحّد (SSO).

لتثبيت وحدة الدخول الموحّد لخدمة Apigee:

  1. سجّل الدخول إلى عقدة خادم الإدارة. يجب أن تكون هذه العقدة apigee-service مثبّتة من قبل، كما هو موضّح في تثبيت الأداة المساعدة لإعداد واجهة برمجة تطبيقات Edge.

    بدلاً من ذلك، يمكنك تثبيت وحدة الدخول الموحّد Apigee على عقدة مختلفة. ومع ذلك، يجب أن تتمكن هذه العقدة من الوصول إلى خادم الإدارة عبر المنفذ 8080.

  2. ثبِّت apigee-sso واضبطه من خلال تنفيذ الأمر التالي:
    /opt/apigee/apigee-setup/bin/setup.sh -p sso -f configFile

    حيث configFile هو ملف الإعداد الذي حددته أعلاه.

  3. ثبِّت الأداة apigee-ssoadminapi.sh المستخدَمة لإدارة مستخدمي المشرفين والأجهزة للوحدة التنظيمية apigee-sso:
    /opt/apigee/apigee-service/bin/apigee-service apigee-ssoadminapi install
  4. سجِّل الخروج من واجهة الأوامر، ثم أعِد تسجيل الدخول لإضافة الأداة المساعدة apigee-ssoadminapi.sh إلى مسارك.

تحديد ملف بيانات وصفية بدلاً من عنوان URL

إذا كان موفِّر الهوية لا يتوافق مع عنوان URL للبيانات الوصفية بتنسيق HTTP/HTTPS، يمكنك استخدام ملف XML للبيانات الوصفية لضبط إعدادات الدخول المُوحَّد (SSO) لخدمة Apigee.

لاستخدام ملف بيانات وصفية بدلاً من عنوان URL لضبط الدخول المُوحَّد (SSO) لخدمة Apigee:

  1. انسخ محتوى ملف XML للبيانات الوصفية من موفِّر الهوية إلى ملف على عقدة ApigeeSSO. على سبيل المثال، انسَخ ملف XML إلى:
    /opt/apigee/customer/application/apigee-sso/saml/metadata.xml
  2. غيِّر ملكية ملف XML إلى مستخدم "apigee":
    chown apigee:apigee /opt/apigee/customer/application/apigee-sso/saml/metadata.xml
  3. اضبط قيمة SSO_SAML_IDP_METADATA_URL على المسار المطلق للملف:
    SSO_SAML_IDP_METADATA_URL=file:///opt/apigee/customer/application/apigee-sso/saml/metadata.xml

    يجب أن تبدأ مسار الملف بـ "file://"، متبوعًا بالمسار المطلق من الجذر (/).