2015년 9월 30일 수요일

GIT 사용법

  1. 저장소 받아오기(Clone)
    git clone "URL"
  2. 최신 HEAD 내용 가져오기
    git pull
  3. 로컬 저장소 최신(HEAD)로 되돌리기
    git reset --hard HEAD

2015년 9월 23일 수요일

MySQL - MySQL WorkBench 사용법

아마존 웹 서비스 구축시 참고사항


  1. EC2 instance 생성 + EC2용 Security Group 생성 및 instance의 attach
  2. RDS instance 생성 + RDS용 Security Group 생성 및 instance의 attach
    1. 외부에서 접속할려면 Security Group의 InBound의 anywhere로 설정 필요
  3. EC2의 LAMP 설치. 이때 RDS를 사용하면 MySQL은 설치안해도 되었습니다.
  4. https (SSL) 설치
    1. 자습서: SSL/TLS를 사용하여 Amazon Linux에서 Apache 웹 서버 구성 (아마존 제공)
    2. 인증서 만들기
    3. 인증서 구성
    4. Configuring SSL on Single Instances of PHP 5.3, PHP 5.4, and PHP 5.5
    5. Installing SSL on AWS EC2
  5. 시간 변경
    1. /etc/php.ini 열기
    2. timezone 변경
      [date]
      date.timezone="Asia/Seoul"
    3. Linux OS 시간 동기화



유니코드


오즈라엘 :: 유니티 최적화 관련 문서들 모음집

오즈라엘 :: 유니티 최적화 관련 문서들 모음집

Unity3D Dynamic Font


리눅스 SSH 관련


2015년 9월 18일 금요일

리눅스 웹 서버 설치


    • Apache2 restart 오류시 해결 방법
      AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1. Set the 'ServerName' directive globally to suppress this message. new version of apache2 you just following command like this:
      sudo nano /etc/apache2/apache2.conf
      Add the following new line end of file: ServerName localhost
      Then restart apache2: sudo nano service apache restart
      It's done.

[쇼핑] 코비 나무시계 블루투스 스피커 AL600

코비 나무시계 블루투스 스피커 AL600

2015년 9월 14일 월요일

Apache Server SSL 설정

Apache 설정을 아래와 같이 수정합니다.
파일은 httpd.conf 입니다.



웹서버 openssl로 인증서 만들기

c:/openssl/bin>openssl req -config d:\apache\server\conf\openssl.cnf -new -out server.csr -keyout server.pem
Loading 'screen' into random state - done
Generating a 1024 bit RSA private key
...............++++++
................++++++
writing new private key to 'server.pem'
Enter PEM pass phrase:
Verifying - Enter PEM pass phrase:
phrase is too short, needs to be at least 4 chars
Enter PEM pass phrase:
Verifying - Enter PEM pass phrase:
-----
You are about to be asked to enter information that will be incorporated
into your certificate request.
What you are about to enter is what is called a Distinguished Name or a DN.
There are quite a few fields but you can leave some blank
For some fields there will be a default value,
If you enter '.', the field will be left blank.
-----
Country Name (2 letter code) [AU]:KR
State or Province Name (full name) [Some-State]:Seoul
Locality Name (eg, city) []:Seoul
Organization Name (eg, company) [Internet Widgits Pty Ltd]:jyblues
Organizational Unit Name (eg, section) []:
Common Name (e.g. server FQDN or YOUR name) []:jyblues.blogspot.kr
Email Address []:

Please enter the following 'extra' attributes
to be sent with your certificate request
A challenge password []:
An optional company name []:



c:/openssl/bin>openssl rsa -in server.pem -out server.key

Enter pass phrase for server.pem:
writing RSA key



c:/openssl/bin>openssl x509 -in server.csr -out server.crt -req -signkey server.key -days 365
Loading 'screen' into random state - done
Signature ok
subject=/C=KR/ST=Seoul/L=Seoul/O=jyblues/CN=jyblues.blogspot.kr
Getting Private key
unable to write 'random state'

2015년 9월 7일 월요일

[PHP] 유니코드 변환 (\uXXXX)

http://bloodguy.tistory.com/m/post/666

PHP 유니코드를 UTF-8로 변환

http://panic910.tistory.com/m/post/50

To be a programmer... :: [Unity3D]C# + PHP + JsonFX 사용기

To be a programmer... :: [Unity3D]C# + PHP + JsonFX 사용기

Unity에서 Json 사용 시 고려할 라이브러리. | 발로쓰는 개발로그

Unity에서 Json 사용 시 고려할 라이브러리. | 발로쓰는 개발로그

김용환 블로그 :: R 개발 후기

R과 일래스틱서치를 이용하여 데이터의 검색 랭킹 시스템을 구현해보았다.
R 공부를 책으로 하지 않고, 그냥 부딪히면서 (HEAD FIRST R Language) 개발 후기 경험담을 적는다...

... (생략) ...

김용환 블로그 :: R 개발 후기

AWS - Elasticsearch

김용환 블로그 ::

아마존웹서비스와 게임 개발이 만나면

아마존웹서비스와 게임 개발이 만나면

사람의 마음을 얻는 심리학 5가지 원칙 – 인간관계가 좋아지는 과학적인 방법

  사람과 사람 사이의 관계는 단순해 보이지만 실제로는 매우 섬세하고 복잡합니다. 우리는 누구나 좋은 인간관계를 원합니다. 직장에서는 협력적인 관계를 만들고 싶고, 일상에서는 신뢰할 수 있는 사람들과 가까워지고 싶어 합니다. 그래서 많...