หากต้องการติดตั้งและกำหนดค่าโมดูล SSO ของ Apigee ด้วย IDP ภายนอก คุณต้องทำดังนี้ ดังต่อไปนี้:
- สร้างคีย์และใบรับรอง
- กำหนดค่า SSO ของ Apigee พื้นฐานดังนี้ ไฟล์ฐานต้องมีพร็อพเพอร์ตี้ที่ใช้กับการกำหนดค่า SSO ทั้งหมด
- เพิ่มพร็อพเพอร์ตี้การกำหนดค่าเฉพาะ IDP: ใช้ค่าใดค่าหนึ่งต่อไปนี้ บล็อกพร็อพเพอร์ตี้สำหรับการกำหนดค่าเฉพาะของ IDP ในไฟล์การกำหนดค่ามีดังนี้
- ติดตั้ง SSO ของ Apigee: ติดตั้งโมดูล SSO ของ Apigee และส่งผ่าน ไปยังโปรแกรมติดตั้ง
อ่านข้อมูลเกี่ยวกับแต่ละขั้นตอนเหล่านี้ได้ในส่วนต่อไป
สร้างคีย์และใบรับรอง
ส่วนนี้จะอธิบายวิธีสร้างใบรับรองที่ลงชื่อด้วยตนเองซึ่งอาจเหมาะสำหรับ สภาพแวดล้อมการทดสอบ แต่คุณควรใช้ใบรับรองที่ลงชื่อโดยผู้ออกใบรับรอง (CA) เพื่อ สภาพแวดล้อมการใช้งานจริง
วิธีสร้างคู่คีย์เพื่อรับรองการยืนยัน
- ในฐานะผู้ใช้ sudo ให้สร้างไดเรกทอรีใหม่ต่อไปนี้
sudo mkdir -p /opt/apigee/customer/application/apigee-sso/jwt-keys
- เปลี่ยนเป็นไดเรกทอรีใหม่:
cd /opt/apigee/customer/application/apigee-sso/jwt-keys/
- สร้างคีย์ส่วนตัวด้วยคำสั่งต่อไปนี้
sudo openssl genrsa -out privkey.pem 2048
- สร้างคีย์สาธารณะจากคีย์ส่วนตัวด้วยคำสั่งต่อไปนี้
sudo openssl rsa -pubout -in privkey.pem -out pubkey.pem
- เปลี่ยนเจ้าของไฟล์ PEM เอาต์พุตเป็น "apigee" ผู้ใช้:
sudo chown apigee:apigee *.pem
เพื่อสร้างคีย์และใบรับรองที่ลงชื่อด้วยตนเองโดยไม่มีรหัสผ่าน สำหรับสื่อสารกับ IDP:
- ในฐานะผู้ใช้ sudo ให้สร้างไดเรกทอรีใหม่ดังนี้
sudo mkdir -p /opt/apigee/customer/application/apigee-sso/idp/
- เปลี่ยนเป็นไดเรกทอรีใหม่:
cd /opt/apigee/customer/application/apigee-sso/idp/
- สร้างคีย์ส่วนตัวด้วยรหัสผ่าน:
sudo openssl genrsa -aes256 -out server.key 1024
- นำรหัสผ่านออกจากคีย์:
sudo openssl rsa -in server.key -out server.key
- สร้างคำขอลงชื่อใบรับรองสำหรับ CA:
sudo openssl req -x509 -sha256 -new -key server.key -out server.csr
- สร้างใบรับรองที่ลงชื่อด้วยตนเองซึ่งมีเวลาหมดอายุ 365 วัน
sudo openssl x509 -sha256 -days 365 -in server.csr -signkey server.key -out selfsigned.crt
- เปลี่ยนเจ้าของไฟล์คีย์และไฟล์ crt เป็น "apigee" เจ้าของ:
sudo chown apigee:apigee server.key
sudo chown apigee:apigee selfsigned.crt
หากต้องการเปิดใช้ TLS ในโมดูล SSO ของ Apigee โดย
กำลังตั้งค่า SSO_TOMCAT_PROFILE
เป็น SSL_TERMINATION
หรือ
ไปยัง SSL_PROXY
คุณจะใช้ใบรับรองที่ลงนามด้วยตนเองไม่ได้ คุณต้องสร้าง
ใบรับรองจาก CA โปรดดูกำหนดค่า SSO ของ Apigee สำหรับ
การเข้าถึง HTTPS เพื่อดูข้อมูลเพิ่มเติม
การตั้งค่า SSO ของ Apigee
คุณต้องกำหนดไฟล์การกำหนดค่าก่อน จึงจะติดตั้งโมดูล SSO ของ Apigee ได้ คุณผ่านส่วนนี้ ไปยังโปรแกรมติดตั้งเมื่อติดตั้งโมดูล SSO ของ 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 # Uncomment the following line to set specific SSL cipher using OpenSSL syntax # SSL_CIPHERS=HIGH:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!MD5:!kRSA # 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>"
พร็อพเพอร์ตี้การกำหนดค่า SAML SSO
หากคุณใช้ SAML สำหรับ IDP ให้ใช้บล็อกพร็อพเพอร์ตี้การกำหนดค่าต่อไปนี้ใน ไฟล์การกำหนดค่า (ระบุข้างต้น):
## 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 Direct Binding
ถ้าคุณใช้การเชื่อมโยงโดยตรงของ LDAP สำหรับ IdP ให้ใช้บล็อกการกำหนดค่าต่อไปนี้ ในไฟล์การกำหนดค่า ดังที่แสดงในตัวอย่างด้านบน
## 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 # Set true to allow users to login with non-email usernames SSO_ALLOW_NON_EMAIL_USERNAME=false
พร็อพเพอร์ตี้การกำหนดค่าการเชื่อมโยงโดยอ้อมของ LDAP
ถ้าคุณใช้การเชื่อมโยงโดยอ้อมของ LDAP สำหรับ IdP ให้ใช้บล็อกการกำหนดค่าต่อไปนี้ ในไฟล์การกำหนดค่า ดังที่แสดงในตัวอย่างด้านบน
## 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
ติดตั้งโมดูล SSO ของ Apigee
หลังจากสร้างคีย์และตั้งค่าไฟล์การกำหนดค่าแล้ว คุณจะติดตั้ง Apigee ได้ โมดูล SSO
วิธีติดตั้งโมดูล SSO ของ Apigee
- เข้าสู่ระบบโหนดเซิร์ฟเวอร์การจัดการ โหนดนั้นควรมีอยู่แล้ว
ติดตั้ง
apigee-service
แล้ว ตามที่อธิบายไว้ใน ติดตั้งยูทิลิตีการตั้งค่า Apigee ของ Edgeหรือจะติดตั้งโมดูล SSO ของ Apigee ในโหนดอื่นได้ก็ได้ อย่างไรก็ตาม โหนดนั้นต้องสามารถเข้าถึงเซิร์ฟเวอร์การจัดการผ่านพอร์ต 8080 ได้
- ติดตั้งและกำหนดค่า
apigee-sso
โดยเรียกใช้คำสั่งต่อไปนี้/opt/apigee/apigee-setup/bin/setup.sh -p sso -f configFile
โดยที่ configFile คือไฟล์การกำหนดค่าที่คุณระบุไว้ด้านบน
- ติดตั้งยูทิลิตี
apigee-ssoadminapi.sh
ที่ใช้จัดการผู้ดูแลระบบและเครื่อง ผู้ใช้สำหรับโมดูลapigee-sso
:/opt/apigee/apigee-service/bin/apigee-service apigee-ssoadminapi install
- ออกจาก Shell แล้วลงชื่อเข้าสู่ระบบอีกครั้งเพื่อเพิ่ม
apigee-ssoadminapi.sh
กับเส้นทางของคุณ
ระบุไฟล์ข้อมูลเมตาแทน URL
หาก IDP ไม่รองรับ URL ข้อมูลเมตา HTTP/HTTPS คุณสามารถใช้ไฟล์ XML ข้อมูลเมตาเพื่อทำสิ่งต่อไปนี้ กำหนดค่า SSO ของ Apigee
วิธีใช้ไฟล์ข้อมูลเมตาแทน URL เพื่อกำหนดค่า SSO ของ Apigee
- คัดลอกเนื้อหาของ XML ข้อมูลเมตาจาก IDP ไปยังไฟล์ในโหนด SSO ของ Apigee สำหรับ
เช่น คัดลอก XML ไปยัง
/opt/apigee/customer/application/apigee-sso/saml/metadata.xml
- เปลี่ยนการเป็นเจ้าของไฟล์ XML เป็น "Apigee" ผู้ใช้:
chown apigee:apigee /opt/apigee/customer/application/apigee-sso/saml/metadata.xml
- ตั้งค่า
SSO_SAML_IDP_METADATA_URL
เป็นเส้นทางไฟล์สัมบูรณ์SSO_SAML_IDP_METADATA_URL=file:///opt/apigee/customer/application/apigee-sso/saml/metadata.xml
คุณต้องนำหน้าเส้นทางไฟล์ด้วย "
file://
" ตามด้วยเส้นทางสัมบูรณ์จาก ราก (/)