No Image

Version Tokens in MySQL 5.7

2016-01-05 KENNETH 0

In MySQL 5.7.8 we added support for version tokens. This is a new feature that enables you to prevent accessing incorrect or out-of-date data, and stray modifications executing on the wrong server. For some backstory When there are multiple MySQL instances running on a Linux machine, there is a reasonable chance that clients could connect to the wrong instance.… Source: mysqlserverteam.com

No Image

RHSA-2016:0001-1: Important: thunderbird security update

2016-01-05 KENNETH 0

Red Hat Enterprise Linux: An updated thunderbird package that fixes multiple security issues is now available for Red Hat Enterprise Linux 5, 6, and 7. Red Hat Product Security has rated this update as having Important security impact. Common Vulnerability Scoring System (CVSS) base scores, which give detailed severity ratings, are available for each vulnerability from the CVE links in the References section. CVE-2015-7201, CVE-2015-7205, CVE-2015-7212, CVE-2015-7213, CVE-2015-7214 Source: rhn-errata

No Image

samba failing to start after centos7.2(rhel7.2) update

2016-01-04 KENNETH 0

samba failing to start after centos7.2(rhel7.2) update 환경 : CentOS-7.2 (64bit)   증상 얼마전 제공된 centos-7.2 업데이트 이후 갑자기 samba 구동이 되지 않음 # systemctl start smb Job for smb.service failed because the control process exited with error code. See “systemctl status smb.service” and “journalctl -xe” for details. ???? 사실 이 때 까지만 해도 7.2업데이트(정확히는 samba 업데이트) 때문에 발생한 문제 라는 것을 몰랐음.   서비스 확인 # systemctl status smb ● smb.service – Samba SMB Daemon Loaded: loaded (/usr/lib/systemd/system/smb.service; disabled; vendor preset: disabled) Active: failed (Result: exit-code) since 월 2016-01-04 12:35:20 KST; 39s ago Main PID: 19226 (code=exited, status=1/FAILURE) 1월 04 12:35:20 lvs1 systemd[1]: Starting Samba SMB Daemon… 1월 04 12:35:20 lvs1 systemd[1]: smb.service: main process exited, code=exited, status=1/FAILURE 1월 04 12:35:20 lvs1 systemd[1]: Failed to start Samba SMB Daemon. 1월 04 12:35:20 lvs1 systemd[1]: Unit smb.service entered failed state. [ more… ]

No Image

최신 버전 XE에서 config.inc.php 호출 내용 변경

2015-12-30 KENNETH 0

최신 버전 XE에서 config.inc.php 호출 내용 변경   index.php 파일을 참고하면 됨… 어느 버전 부터 변경된 것인지 모르지만.. 이 문제 때문에 구버전의 모듈이 작동 안하는 문제가 종종 발생할 수 있으므로 일단 정리함..   기존 define(‘__ZBXE__’, true); require(‘./config/config.inc.php’);   변경 define(‘__XE__’, TRUE); require dirname(__FILE__) . ‘/config/config.inc.php’;   이것 때문에 작동 안하는 구버전 모듈들이 있음…