Unable to connect to CUPS server localhost:631 – Connection refused on samba log

2018-09-29 KENNETH 0

환경 OS : CentOS-6 samba : 3.6 (centos6의 고유 패키지)   samba 로그 또는 /var/log/messages printing/print_cups.c:151(cups_connect) Unable to connect to CUPS server localhost:631 – Connection refused   원인 cups 서비스는 당연히 꺼놓았는데 계속해서 발생하며 요청하는 상황은 smb에서 프 린터 설정을 활성화 시켜서 윈도우의 기본 기능인 사용 가능한 프린터 찾는 것 때 문에 자꾸 접근해서 메세지를 쌓게 만들어 발생되는 것 이라고 한다.. 출처 : https://support.hpe.com/hpsc/doc/public/display?docId=emr_na-c01925386   해결 비활성화 시킨다…. file : smb.conf 위치 : [global] 섹션   고찰 참고한 자료 에서는 내용중 “printing” 지시자에 대해서 “none” 설정을 권장 했는데.. printing = none 실제로 적용을 해보니 WARNING: Ignoring invalid value ‘none’ for parameter ‘printing’ 이런 경고문을 띄웠다.. 아마도 해당 환경의 삼바 버전이 참고 내용의 버전과 맞지 않았기 때문일 것이다. 그래서 지시자를 “none” 에서 “bsd” 로 변경 시도 했다.  

프로그램 설치 없이 인터넷 속도 측정 하는 사이트

2018-09-26 KENNETH 0

가끔 사용중인 인터넷의 속도가 느릴 경우.. 이것이 내 환경의 문제 인지 아니면 저 서버의 문제 인지 즉각 판단이 어려운 경우가 있다.. 이럴 때 문득!!! 인터넷 속도좀 측정 해 볼까?? 싶지만… 매일 하는 것도 아니고, 그나마 어쩌다 한번씩 하는 요놈의 테스트는 뭔 놈의 프로그램을 그리 깔아야 하는지.. ㄷ ㄷ ㄷ   그런데!!!! https://www.speedtest.net/ 요런 사이트가 있었다.. ㅎㄷㄷㄷ 접속 후 “GO” 버튼만 누르면 끝! 물론 프로그램 설치 따위는 필요가 없다는 것!!!!! 두둥!!!!! 먼 훗날.. 내가 쓴 이 글을 나 자신이 기억 할 수 있을까 싶지만.. 우선 적어 놓는다…

PHP 지원기간 안내 (PHP Supported Versions) – 201809현재

2018-09-03 KENNETH 0

URL : http://php.net/supported-versions.php   Supported Versions Each release branch of PHP is fully supported for two years from its initial stable release. During this period, bugs and security issues that have been reported are fixed and are released in regular point releases. After this two year period of active support, each branch is then supported for an additional year for critical security issues only. Releases during this period are made on an as-needed basis: there may be multiple point releases, or none, depending on the number of reports. Once the three years of support are completed, the branch reaches its end of life and is no longer supported. A table of end of life branches is available. Currently Supported Versions Branch Initial Release Active Support Until Security Support Until 5.6 * 28 Aug 2014 4 years ago 19 Jan 2017 1 year, 7 [ more… ]

(28)No space left on device: AH00023: Couldn’t create the rewrite-map mutex in Apache

2018-09-01 KENNETH 0

  증상 아래 로그와 같이 아파치 실행이 되지 않는 문제 발생 이 에러 참으로 오랜만이다… 아마 마지막으로 본것이 10년은 족히 된것 같구나… 너무 오랜만이어서 대략적으로다가 순간 흠칫… ㄷ ㄷ ㄷ   에러 로그 [core:emerg] [pid 6744:tid 139704271460160] (28)No space left on device: AH00023: Couldn’t create the rewrite-map mutex AH00016: Configuration Failed   당장 처리 아파치 구동 유저가 “nobody”라는 가정 하에… ipcs -s |grep nobody|awk ‘{print $2}’ |xargs ipcrm -s 이후 아파치를 실행해 보면 정상 구동 될 것이다.   원인 리눅스의 세마포어(semaphore)와 관련이 있다.. 제한된 자원 할당량에 의해 더이상 자원을 사용하지 못한다고 생각 하면 될듯…   사용 현황 확인 # ipcs -s —— Semaphore Arrays ——– key semid owner perms nsems 0x00000000 236847104 root 666 1 0x00000000 236879873 root 666 1 0x00000000 236912642 nobody 600 1 0x00000000 236945411 nobody 600 1 0x00000000 87293956 nobody 600 1 0x00000000 87326725 nobody 600 1 [ more… ]

enable error logging on php-fpm

2018-08-28 KENNETH 0

  file : php-fpm.conf catch_workers_output = yes php_flag[display_errors] = on php_admin_value[error_log] = /var/log/php-fpm/error.log php_admin_flag[log_errors] = on   php-fpm restart