2017년 11월 21일 화요일

[LiNuX] 시간 동기화


root@freecatz:~# rdate -s time.bora.net && hwclock --systohc

root@freecatz:~# vi /etc/crontab

# m : minute (0 - 59) 
# h : hour (0 - 23)
# dom : day of month (1 -     ) 
# mon : month (1 - 12) OR jan,feb,mar,apr ... 
# dow : day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
# m h dom mon dow user  command
59 23   * * *   root    rdate -s time.bora.net && hwclock --systohc



2017년 11월 20일 월요일

[EtC] nodejs 로 Hello World

1. nodejs 다운로드 및 설치

   https://nodejs.org

  설치 과정 생략


2. 프로젝트 디렉토리 생성

   D:\>helloworld 생성

3. nodejs 실행 파일 생성

   D:\>helloworld 에 server.js 파을 생성 후 아래의 코드를 입력 한다.

   var express = require('express');
   var app = express();

   /*
get으로 / 요청시 아래의 내용들이 실행 된다.
   */
   app.get('/', function (req, res) {

      _date = new Date();
      console.log('Date :', _date.getFullYear() + '.' + _date.getMonth() + 1 + '.' + _date.getDate());
      console.log('uptime : ' + process.uptime());
      console.log('Client : ' + req.connection.remoteAddress);
      res.send('Hello World!');
   });

   /*
테스트용 코드로 /exit 주소를 호출 하는 경우 서버 프로그램을 종료 시킨다.
실제 운영시에는 사용하지 않는다.
   */
   /*
   app.get('/exit', function (req, res) {
      console.log('program self kill');
      process.exit();
   });
   */


   /*
9090 포트로 프로그램을 실행 후, 콘솔에 로그를 찍는다.
   */
   app.listen(9090, function () {

       /* public 디렉토리내 static 리소스들을 사용 하기 위한 코드 */
       app.use(express.static('public'));

       /* 서버가 시작 되고 1초 후 아래의 내용들을 찍어 준다. */
       setTimeout(function() {
       console.log('PID : ' + process.pid);
       console.log('node ver : ' + process.version);
       console.log('arch : ' + process.arch);
   console.log('platform : ' + process.platform);
   console.log('-----> nodejs server started');
       }, 1000);
   });


4. npm init


  D:\helloworld 에서 npm init 명령을 실행 한다.

  D:\helloworld> npm init
  This utility will walk you through creating a package.json file.
  It only covers the most common items, and tries to guess sensible defaults.

  See `npm help json` for definitive documentation on these fields
  and exactly what they do.

  Use `npm install <pkg>` afterwards to install a package and
  save it as a dependency in the package.json file.

  Press ^C at any time to quit.
  package name: (helloworld)          # 프로젝트 명칭. Mandatory.
  version: (1.0.0)                      # 프로젝트 버전. Optional.
  description: hello world              # 프로젝트 설명. Optional.
  entry point: (index.js)                # 프로젝트 진입점 파일명. Mandatory.
  test command:                      # 모름. Optional.
  git repository:                       # git repository 가 있는 경우. Optional.
  keywords:                          # 키워드. Optional.
  author:                             # 작성자. Optional.
  license: (ISC)                        # 라이센스. Optional.
  About to write to D:\helloworld\package.json:

  {
    "name": "helloworld",
    "version": "1.0.0",
    "description": "hello world",
    "main": "index.js",
    "scripts": {
      "test": "echo \"Error: no test specified\" && exit 1"
    },
    "author": "",
    "license": "ISC"
  }


  Is this ok? (yes)                # 최종 위의 내용으로 package.json 파일이 생성.

  D:\helloworld>


  npm init 명령 실행 후, D:\helloworld\package.json 파일이 생성 된다.


5. express 패키지 설치


    D:\>helloworld> npm install express --save

    위의 명령 실행 후 D:\helloworld 디렉토리 아래 node_module 디렉토리가 생성 되고
    그 아래 express 패키지와 의존성 패키지들이 설치 된다.

6. 실행

   D:\>npm server.js


7. 브라우저와 콘솔을 통한 확인


   http://localhost:9090

2017년 10월 30일 월요일

[EtC] Mac OS X 업데이트 후, svn 명령어에 문제 발생시.


Mac OS 는 업데이트 후 안드로이드 스튜디오에서 svn 명령어를 제대로 사용 하지 못하는 상황이 발생 하였다.

freecatz-MacBook-Pro:~ freecatz$ svn --version
xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun

freecatz-MacBook-Pro:~ freecatz$ xcode-select --install
xcode-select: note: install requested for command line developer tools


freecatz-MacBook-Pro:~ freecatz$ svn --version
svn, version 1.9.4 (r1740329)
   compiled Aug 13 2017, 18:20:28 on x86_64-apple-darwin16.1.0

Copyright (C) 2016 The Apache Software Foundation.
This software consists of contributions made by many people;
see the NOTICE file for more information.
Subversion is open source software, see http://subversion.apache.org/

The following repository access (RA) modules are available:

* ra_svn : Module for accessing a repository using the svn network protocol.
  - handles 'svn' scheme
* ra_local : Module for accessing a repository on local disk.
  - handles 'file' scheme
* ra_serf : Module for accessing a repository via WebDAV protocol using serf.
  - using serf 1.3.8 (compiled with 1.3.8)
  - handles 'http' scheme
  - handles 'https' scheme

The following authentication credential caches are available:

* Plaintext cache in /Users/freecatz/.subversion
* GPG-Agent
* Mac OS X Keychain

freecatz-MacBook-Pro:~ freecatz$






2017년 10월 26일 목요일

[AnDrOiD] MacOS 10.13 에서 HAXM 설치가 안되는 경우




Mac OS, IOS 는 업데이트 할 때 마다 뭐 하나씩 안되는게 있어서 찾아 봐야 한다.

이럴땐 윈도우와 리눅스가 참 편하다 싶다.

여튼, Mac OS X 10.13 에서 HAXM 가 설치 되지 않았다.

[여기] 를 보니 advancedFeatures.ini 를 찾아 수정 해주라고 한다.

freecatz-MacBook-Pro:~ freecatz$ find ./ -name advancedFeatures.ini
.//Library/Android/sdk/system-images/android-26/google_apis_playstore/x86/advancedFeatures.ini
.//Library/Android/sdk/system-images/android-19/default/x86/advancedFeatures.ini
.//Library/Android/sdk/emulator/lib/advancedFeatures.ini
freecatz-MacBook-Pro:~ freecatz$

찾은 advancedFeatures.ini 파일들을 열어 "HVF = on" 를 추가해 준다.

예)
GrallocSync = on
GLDMA = on
LogcatPipe = on
GLAsyncSwap = on
GLESDynamicVersion = on
PlayStoreImage = on
EncryptUserData = on
IntelPerformanceMonitoringUnit = on
HVF = on

2017년 10월 11일 수요일

[AnDrOiD] apk file name config


build.gradle 파일을 열어 archivesBaseName 를 추가 한다.


... 중략 ...

android {
     compileSdkVersion 26
     buildToolsVersion "26.0.2"
     defaultConfig {
          applicationId "freecatz.pe.kr.mytestapplication"
          minSdkVersion 19
          targetSdkVersion 26
          versionCode 1
          versionName "1.0"
          testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
          archivesBaseName = "freecatz.pe.kr_v" + versionName
     }
     buildTypes {
          release {
               minifyEnabled true
               proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
          }

          debug {
               minifyEnabled false
          }
     }
}

... 중략 ...

[AnDrOiD] gradle.properties

org.gradle.jvmargs=-Xms512m -Xmx1536m
org.gradle.parallel=true
org.gradle.daemon=true

2017년 9월 11일 월요일

[JaVa] URL 읽어 들이기

        StringBuffer _sb = new StringBuffer();

        try {
            URL _url = new URL("http://dev.freecatz.pe.kr:8080/web/sample2");
            URLConnection _conn = _url.openConnection();
            InputStream _is = _conn.getInputStream();
            InputStreamReader _isr = new InputStreamReader(_is, "UTF-8");
            BufferedReader _br = new BufferedReader(_isr);
             
            String _temp;
            while((_temp = _br.readLine()) != null){
             _sb.append(_temp + "\r\n") ;
            }
            System.out.println(_sb.toString()) ;
             
        } catch (MalformedURLException mf) {
         mf.printStackTrace();
        } catch (IOException ioe) {
         ioe.printStackTrace();
        }

2017년 8월 14일 월요일

[EtC] Linux 에 redis 설치 및 설정


1. redis 설치 


공식 홈페이지 : https://redis.io/download


1-1. redis 다운로드 및 컴파일

[redis@localohst ~]$ wget http://download.redis.io/releases/redis-3.2.9.tar.gz
[redis@localohst ~]$ tar xzf redis-3.2.9.tar.gz
[redis@localohst ~]$ cd redis-3.2.9
[redis@localohst redis-3.2.9]$ make


1-2. 주요 명령어 사용을 위한 PATH 설정

redis-cli, redis-server 명령어의 경우 redis 압축 해제후 make 한 디렉토리 아래  src 에 위치 하고 있다.

어느 위치에서든 사용 가능 하도록 PATH 로 잡아 주도록 한다.

[redis@localohst redis-3.2.9]$ vi ~/.bashrc

export JAVA_HOME=/usr/local/jdk1.8.0_121
export REDIS_HOME=/home/freecatz/redis-3.2.9/src
export PATH=$PATH:$JAVA_HOME/bin:$REDIS_HOME


2. redis 설정

[redis@localohst redis-3.2.9]$ cp ./redis.conf ./redis.conf.ori
[redis@localohst redis-3.2.9]$ vi redis.conf

bind 0.0.0.0
protected-mode no
port 6379
timeout 0
logfile "/home/freecatz/redis-3.2.9/logs/redis.log"
requirepass myPassword



3. redis 실행 및 종료


3-1. redis 실행

[redis@localohst redis-3.2.9]$ redis-server ./redis.conf --protected-mode no & 


3-2. redis 실행 확인

[redis@localohst redis-3.2.9]$ redis-cli
127.0.0.1:6379> auth myPassword
OK
127.0.0.1:6379> ping
PONG


3-3. redis 종료

[redis@localohst redis-3.2.9]$ redis-cli
127.0.0.1:6379> auth myPassword
OK
127.0.0.1:6379> shutdown
11725:M 14 Aug 11:48:56.727 # User requested shutdown...
11725:M 14 Aug 11:48:56.727 * Saving the final RDB snapshot before exiting.
11725:M 14 Aug 11:48:56.732 * DB saved on disk
11725:M 14 Aug 11:48:56.732 * Removing the pid file.
11725:M 14 Aug 11:48:56.732 # Redis is now ready to exit, bye bye...
not connected> exit
[1]+  Done                    redis-server ./redis.conf --protected-mode no
[redis@localohst redis-3.2.9]$







2017년 6월 21일 수요일

[EtC] Linux 에 nginx 설치 및 설정


Environment
- Ubuntu 14.x
- nginx 1.12.0
- spring boot 1.5.3 : executeable jar deploy(using embeded undertow)




nginx 공식 사이트 : http://nginx.org/en/download.html


# 컴파일시 필요한 의존성에 걸린 패키지들을 설치 한다.
root@freecatz:~# apt-get install openssl openssl-devel pcre pcre-devel zlib zlib-devel

root@freecatz:~# wget http://nginx.org/download/nginx-1.12.0.tar.gz

root@freecatz:~# tar zxvf nginx-1.12.0.tar.gz

root@freecatz:~# cd nginx-1.12.0

root@freecatz:~# ./configure --prefix=/usr/local/nginx-1.12.0 --with-http_ssl_module --with-http_v2_module --with-openssl=/root/archive/openssl-1.0.2l

* 참고 : --with-openssl 옵션을 적용하는 경우 openssl 의 소스 경로를 넣어 주어야 한다.

root@freecatz:~# make && make install

root@freecatz:~# cp /usr/local/nginx-1.12.0/conf/nginx.conf /usr/local/nginx-1.12.0/conf/nginx.conf.ori

# 설정 파일 편집
root@freecatz:~# vi /usr/local/nginx-1.12.0/conf/nginx.conf

worker_processes  auto;

events {
    worker_connections  1024;
    use epoll;
    multi_accept on;
}

... 중략 ...
http {

    # 보안을 위해 서버 버전 정보 노출을 막는다.
    server_tokens off;
    sendfile on;
    client_max_body_size 10M;

    ... 중략 ...
    upstream undertow {
        ip_hash;
        server 127.0.0.1:8080 weight=1 max_fails=3 fail_timeout=5s;
        server 127.0.0.1:8081 weight=1 max_fails=3 fail_timeout=5s;
        server 127.0.0.1:8082 weight=1 max_fails=3 fail_timeout=5s;
    }

    server {
        listen           80;
        server_name  freecatz.pe.kr;
        # return 301 https://$server_name$request_uri;
        rewrite ^ https://$server_name$request_uri? permanent;
    }

    server {
        listen           443 ssl;
        server_name  freecatz.pe.kr;

        # Chrome 콘솔에 "Error parsing header X-XSS-Protection: 1; mode=block, 1:mode=block: expected semicolon at character position 14. The default protections will be applied." 메세지 나타남.
        # add_header X-XSS-Protection "1; mode=block";

        ssl on;
        ssl_certificate      /etc/fullchain.pem;
        ssl_certificate_key  /etc/privkey.pem;

        # 보안상의 이유로 SSLv2 SSLv3 은 사용 하지 않는 것이 좋다고 한다. TLSv1.3을 지원 하기 위해서는 OpenSSL 1.1.1 이상의 버젼이 필요 하다고 한다.
        ssl_protocols SSLv2 SSLv3 TLSv1 TLSv1.1 TLSv1.2;
        ssl_prefer_server_ciphers on;
        ssl_ciphers 'EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH';

 
        location / {
            charset                           utf-8;
            proxy_set_header              Host $http_host;
            proxy_set_header              X-Real-IP $remote_addr;
            proxy_set_header              X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_set_header              X-Forwarded-Proto $scheme;
            proxy_set_header              X-NginX-Proxy true;
            proxy_set_header              X-Forwarded-Port $server_port;

            proxy_connect_timeout      150;
            proxy_send_timeout          100;
            proxy_read_timeout          100;
            proxy_redirect                  off;

            proxy_pass http://undertow$request_uri;

        } # location / end

    } # server end

} # http end
... 중략 ...

# nginx 설정 파일 테스트
root@freecatz:~# nginx -t
nginx: the configuration file /usr/local/nginx-1.12.0/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx-1.12.0/conf/nginx.conf test is successful

# nginx 시작
root@freecatz:~# /usr/local/nginx-1.12.0/sbin/nginx

# nginx 종료
root@freecatz:~# /usr/local/nginx-1.12.0/sbin/nginx -s quit

# nginx 재시작
root@freecatz:~# /usr/local/nginx-1.12.0/sbin/nginx -s reload










2017년 5월 17일 수요일

[EtC] 한컴, 오픈소스 라이선스 위반...


<이미지를 클릭 하시면 원본 사이즈로 보실 수 있습니다.>

이번에 문제가 된 PDF 기능 입니다.



<이미지를 클릭 하시면 원본 사이즈로 보실 수 있습니다.>

업데이트 내역에는 PDF 관련 내용은 쏙 빠져 있습니다.



<이미지를 클릭 하시면 원본 사이즈로 보실 수 있습니다.>

해당 기사 입니다.




프로그램을 만들어서 판매 하는 회사가 타사의 라이브러리의 라이선스를 잘 알아 보지도 않고 가져다 쓰는 것도 참 아이러니 합니다.

정부기관, 기업, 회사에서 라이선스에 대해서 잘 알아 보지 않고 한컴 제품을 불법으로 쓴다면 한컴에서는 어떤 말을 할까요?

손에 꼽히는 국내 몇 안되는 개발사 인데 실망이 참으로 큽니다.