Authenticating Users to Existing Applications with OpenID Connect and NGINX Plus

2016-09-08 KENNETH 0

Authenticating Users to Existing Applications with OpenID Connect and NGINX Plus Using JWT support to provide SSO for existing applications OAuth 2.0 has done much to transform the flexibility and user experience of authenticating to websites and applications. But despite the name, the OAuth 2.0 specification says very little about verifying end‑user identity and nothing about single sign‑on (SSO). That’s where OpenID Connect comes in – it is essentially the missing piece that carries identity information in OAuth 2.0 access tokens. OpenID Connect identity tokens comply with the JSON Web Token (JWT) specification. JWT (pronounced “jot”) tokens are compact, easy to pass around, and provide a common core schema for describing identity information. The great thing about JWTs is that they can be applied to almost any identity use case, from authenticating API clients to providing SSO for enterprise applications. In fact, many organizations that use Google Apps can [ more… ]

No Image

RHEA-2016:1824-1: Red Hat JBoss Enterprise Application Platform 6.4.10 update on RHEL 6

2016-09-08 KENNETH 0

RHEA-2016:1824-1: Red Hat JBoss Enterprise Application Platform 6.4.10 update on RHEL 6 Red Hat Enterprise Linux: Updated packages that provide Red Hat JBoss Enterprise Application Platform 6.4.10, fix several bugs, and add various enhancements are now available for Red Hat Enterprise Linux 6. Source: RHEA-2016:1824-1: Red Hat JBoss Enterprise Application Platform 6.4.10 update on RHEL 6

No Image

RHEA-2016:1823-1: Red Hat JBoss Enterprise Application Platform 6.4.10 update on RHEL 5

2016-09-08 KENNETH 0

RHEA-2016:1823-1: Red Hat JBoss Enterprise Application Platform 6.4.10 update on RHEL 5 Red Hat Enterprise Linux: Updated packages that provide Red Hat JBoss Enterprise Application Platform 6.4.10, fix several bugs, and add various enhancements are now available for Red Hat Enterprise Linux 5. Source: RHEA-2016:1823-1: Red Hat JBoss Enterprise Application Platform 6.4.10 update on RHEL 5

No Image

WordPress 4.6.1 Security and Maintenance Release

2016-09-08 KENNETH 0

WordPress 4.6.1 Security and Maintenance Release WordPress 4.6.1 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.6 and earlier are affected by two security issues: a cross-site scripting vulnerability via image filename, reported by SumOfPwn researcher Cengiz Han Sahin; and a path traversal vulnerability in the upgrade package uploader, reported by Dominik Schilling from the WordPress security team. Thank you to the reporters for practicing responsible disclosure. In addition to the security issues above, WordPress 4.6.1 fixes 15 bugs from 4.6. For more information, see the release notes or consult the list of changes. Download WordPress 4.6.1 or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.6.1. Thanks to everyone who contributed [ more… ]

No Image

[mysql] Buffered warning: Could not increase number of max_open_files to more than 1024 on centos

2016-09-07 KENNETH 0

OS : CentOS7 MySQL : install rpm package from mysql official repository 1. mysql error log [Warning] Buffered warning: Could not increase number of max_open_files to more than 1024 (request: 16384) [Warning] Buffered warning: Changed limits: max_connections: 214 (requested 3000) [Warning] Buffered warning: Changed limits: table_cache: 400 (requested 2048) 2. modify service file file path : /usr/lib/systemd/system/mysqld.service add LimitNOFILE=163840 LimitNPROC=163840 3. reload # systemctl daemon-reload for this error message… Warning: mysqld.service changed on disk. Run ’systemctl daemon-reload’ to reload units. 4. Restart mysql # service mysqld restart