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” 로 변경 시도 했다.  

(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… ]

How to clean up generated files by cmake

2018-05-31 KENNETH 0

mysql 등의 패키지를 “소스 컴파일” 형태로 설치시 cmake 를 이미 진행했던 소스디렉토리를 “clean up” 하려면… 소스 디렉토리 하단의 CMakeCache.txt (file) CMakeFiles (directory) 두 항목을 삭제 해주면 됨… rm -fr CMakeCache.txt CMakeFiles

error: unpacking of archive failed on file : cpio: rename on centos7

2018-05-14 KENNETH 0

상황 이번 새로 출시된 7.5 업데이트 실행중 “/”파티션 FULL 에 의해 프로세스 강제 종료.. 여유공간 마련 후에 재시도 진행시 아래 두개 패키지의 update 오류 발생   에러메세지 # yum update Loaded plugins: fastestmirror, langpacks Loading mirror speeds from cached hostfile * base: mirror.navercorp.com * elrepo: mirror.rackspace.com * epel: mirror.premi.st * extras: mirror.navercorp.com * updates: mirror.navercorp.com Resolving Dependencies –> Running transaction check —> Package python-backports-ssl_match_hostname.noarch 0:3.4.0.2-4.el7 will be updated —> Package python-backports-ssl_match_hostname.noarch 0:3.5.0.1-1.el7 will be an update —> Package python-urllib3.noarch 0:1.10.2-3.el7 will be updated —> Package python-urllib3.noarch 0:1.10.2-5.el7 will be an update –> Finished Dependency Resolution Dependencies Resolved ============================================================================ Package Arch Version Repository Size ============================================================================ Updating: python-backports-ssl_match_hostname noarch 3.5.0.1-1.el7 base 13 k python-urllib3 noarch 1.10.2-5.el7 base 102 k Transaction Summary ============================================================================ Upgrade 2 Packages Total download size: 114 k Is this ok [y/d/N]: y Downloading packages: No Presto metadata available for [ more… ]

error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE in PHP (after update centos-7.4)

2017-11-14 KENNETH 0

error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE CentOS-7.4 업데이트 이후 PHP측의 별다른 설정 내지는 설치 관련 작업 이슈가 없었음에도 발생   1. 테스트 코드 <? error_reporting(E_ALL); ini_set("display_errors", 1); var_dump(openssl_get_cert_locations()); fsockopen("ssl://fcstdpay.inicis.com",443); ?> 정작 작동을 안하는 부분은 fsockopen(”ssl://fcstdpay.inicis.com”,443); 이 부분으로.. 상단은 그냥 에러 참고용…     2. 발생 에러 PHP Warning: fsockopen(): SSL operation failed with code 1. OpenSSL Error messages: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed in /home/jirak.net/public_html/bb.php on line 4 PHP Stack trace: PHP 1. {main}() /home/jirak.net/public_html/bb.php:0 PHP 2. fsockopen() /home/jirak.net/public_html/bb.php:4 Warning: fsockopen(): SSL operation failed with code 1. OpenSSL Error messages: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed in /home/jirak.net/public_html/bb.php on line 4 Call Stack: 0.0003 348216 1. {main}() /home/jirak.net/public_html/bb.php:0 0.0004 348696 2. fsockopen() /home/jirak.net/public_html/bb.php:4 PHP Warning: fsockopen(): Failed to enable crypto in /home/jirak.net/public_html/bb.php on line 4 PHP Stack trace: PHP 1. {main}() /home/jirak.net/public_html/bb.php:0 PHP 2. fsockopen() /home/jirak.net/public_html/bb.php:4 Warning: fsockopen(): Failed to enable crypto in /home/jirak.net/public_html/bb.php on line 4 [ more… ]