Posted
Filed under 프로그래밍
mysql을 사용하다가 mariadb 10버전을 추가했다.
근데 기존에 쓰던 백업이 호환이 안되는게 아닌가 ㅋㅋㅋㅋ

mariadb 10버전은 xtrabackup_56을 사용해야 한다.
(참조 : Choosing the Right Binary)

하지만 innobackupex는 여전히 사용할수 없다.

apt-get install xtrabackup

* 백업
xtrabackup_56 --backup --datadir=/data/mysql/ --target-dir=/data/backup/mysql/

* 복구
xtrabackup_56 --prepare --target-dir=/data/backup/mysql/


2016/11/09 23:02 2016/11/09 23:02
Posted
Filed under 프로그래밍
가운데 파란키만 체리 갈축이고 나머지키는 오테뮤 청축~
기가 막히네~


사용자 삽입 이미지
2016/11/02 17:58 2016/11/02 17:58
Posted
Filed under 프로그래밍/PHP
난 PHPSTORM 을 쓰니까...
플러그인에서 power mode 라고 검색하면 Power Mode II 라는게 있는데 이걸 설치한다.
그럼 아래처럼 타이핑 할때마다 파파파팍~~
너무 심한것 같으면 설정에서 정도를 조절한다.

사용자 삽입 이미지



https://plugins.jetbrains.com/plugin/8251


2016/10/26 11:52 2016/10/26 11:52
Posted
Filed under 프로그래밍
용량이 0인 파일을 하위 디렉토리까지 전부 찾는다.

find . -size 0


2016/09/30 02:08 2016/09/30 02:08
Posted
Filed under 프로그래밍/PHP
프로젝트 디렉토리에서 실행 

composer.phar이 없으면 가지고 온다.
 
curl -sS https://getcomposer.org/installer | php
 


guzzle 설치
 
./composer.phar require guzzlehttp/guzzle
 


index.php 에 추가
$container['guzzleHttp'] = function ($container) {
 $client = new \GuzzleHttp\Client();
 return $client;
};


사용은 이런식으로..
 
echo $container['guzzleHttp']->get('http://www.naver.com')->getBody();
 


주의 : AWS SDK를 사용한다면 이미 AWS SDK에서도 guzzle을 로드하기때문에 충돌난다.
이럴때는 그냥 AWS SDK에 포함되어있는 guzzle을 사용하면된다.

참조 : http://docs.guzzlephp.org/en/latest/quickstart.html



2016/09/19 15:34 2016/09/19 15:34
Posted
Filed under 프로그래밍/PHP
기본적으로 PHP-FPM에서 오류가 기록되지 않는다.

1. fpm/pool.d/www.conf  파일을 연다. (보통 /etc/php5/fpm/pool.d/www.conf 여기에 있다)

2.  아래 내용의 주석을 푼다. (주석은 ; 이다)
;php_admin_value[error_log] = /var/log/fpm-php.www.log
;php_admin_flag[log_errors] = on

3. 로그파일을 생성한다. (슈퍼유저로 실행)
touch /var/log/fpm-php.www.log; 

4. 로그파일에 권한을 준다. (슈퍼유저로 실행)
www-data는 php-fpm의 실행 유저이다.
chown www-data.www-data /var/log/fpm-php.www.log

5. php5-fpm 재실행
service php5-fpm restart

6. 끝

2016/09/09 19:06 2016/09/09 19:06
Posted
Filed under 프로그래밍/PHP
array의 내용중에 하나또는 여러개를 unset으로 삭제했을때
json_encode를 하면 인덱스가 안맞아서 다른형태로 나오게 된다.
이럴때 사용해도 되고 여러곳에 응용.

  
$var_array = array_values(array_filter($var_array));
 





2016/08/31 14:20 2016/08/31 14:20
Posted
Filed under 프로그래밍/PHP
5.5.0부터는 @ 만으로 파일을 전송할수 없다.
CURLFile Class를 사용해야 한다.

http://php.net/manual/en/class.curlfile.php

CURLOPT_POSTFIELDS The full data to post in a HTTP "POST" operation. To post a file, prepend a filename with @ and use the full path. The filetype can be explicitly specified by following the filename with the type in the format ';type=mimetype'. This parameter can either be passed as a urlencoded string like 'para1=val1&para2=val2&...' or as an array with the field name as key and field data as value. If value is an array, the Content-Type header will be set to multipart/form-data. As of PHP 5.2.0,value must be an array if files are passed to this option with the @ prefix. As of PHP 5.5.0, the @ prefix is deprecated and files can be sent using CURLFile. The@ prefix can be disabled for safe passing of values beginning with @ by setting the CURLOPT_SAFE_UPLOADoption to TRUE.


2016/06/03 16:47 2016/06/03 16:47
Posted
Filed under 프로그래밍
일단 fiddler를 실행하고
Tools -> Fiddler Options -> Connections 까지 간다.
Allow remote computers to connect 체크 한다.
Fidder listens on port 에 있는 숫자가 프록시 포트 이다.

핸드폰 와이파이 고급옵션에서 프록시 사용으로 하고 fiddler깔린 컴퓨터의 아이피와 포트를 넣고
OK 하고 Fiddler 를 재실행한다.

그럼 핸드폰에서 하는게 다 들어온다.

끝.

2016/04/18 17:02 2016/04/18 17:02
Posted
Filed under 프로그래밍/PHP
국내 php 개발자들 대부분이 디버깅을 안하는걸로 알고 있다.
아직도 editplus를 쓰는곳이 허다하니...

제발 디버깅 하자~~~~~


* php에 xdebug설치
apt-get install php5-xdebug

* 20-xdebug.ini 에 추가
xdebug.remote_enable = 1
php5-fpm 리스타트

* 크롬에서 Xdebug helper 설치
https://chrome.google.com/webstore/detail/xdebug-helper/eadndfjplgieldjbigjakmdgkmoaaaoc

* phpstorm 에서 가운데 전화기 벌레모양 킨다
사용자 삽입 이미지




 브레이크 포인트를 하나 걸어놓고

* 크롬 Xdebug helper의 Debug를 키고 새로고침 한다.

* 처음 접근시에는 accpet  화면 나오는데 그냥 accpet누른다.

* phpstorm에서 잡힌다~
사용자 삽입 이미지








* 잘 쓰삼~

2016/04/14 18:35 2016/04/14 18:35