yarn-spark 구조를 설명하려 할 때 도움되는 ㄷ그림.



출처 : https://hywelzhang.github.io/2018/12/06/Spark-Spark-Running-Architecture.html




Posted by '김용환'
,



맥 OS 탐색기에서 숨은 파일을 찾으려면 

shift + command + 점(마침표)를 선택하면 숨은 파일이 나타난다.

'Tool' 카테고리의 다른 글

td-agent 모니터링  (0) 2019.10.28
java.lang.NoSuchMethodError: No such DSL method 'withMaven' found among steps 에러  (0) 2019.03.11
tmux 사용 방법  (0) 2018.12.19
[git] no kex alg 이슈  (0) 2018.06.20
[intellij] 2018.1 lombok 설정  (0) 2018.06.19
Posted by '김용환'
,



ubuntu 16 에서 apt-get install을 이용해 설치하다가 다음과 같은 에러가 발생하면 ..



E: Could not get lock /var/lib/dpkg/lock - open (11 Resource temporarily unavailable)

E: Unable to lock the administration directory (/var/lib/dpkg/) is another process using it?  




다음과 같이 설치한다.



sudo rm /var/lib/apt/lists/lock

sudo rm /var/cache/apt/archives/lock

sudo rm /var/lib/dpkg/lock



 sudo dpkg --configure -a




Posted by '김용환'
,



ubuntu 16에 no_proxy가 안먹는 이슈가 있을 수 있다. 


https://bugs.launchpad.net/ubuntu/+source/apt/+bug/1575877



$ vi /etc/profile


setproxy() {

...

}





따라서 필요하다면 apt-get update와 install을 아래와 같이 설치해야 할 수도 있다.



- name: Update cache

  shell: "source /etc/profile && setproxy sudo -E apt-get update"

  args:

    chdir: /kakao/source

    executable: /bin/bash


- name: Install Nginx

  shell: "source /etc/profile && setproxy sudo -E apt-get install nginx"

  args:

    chdir: /kakao/source

    executable: /bin/bash






'Ansible-Puppet-Chef' 카테고리의 다른 글

[ansible] copy mode 주의사항  (0) 2019.01.14
ansible-galaxy  (0) 2019.01.14
ansible 설치 (virtualenv)  (0) 2018.12.18
[ansible] lineinfile  (0) 2018.07.05
[ansible] 배포될 서버의 호스트명 얻는 방법  (0) 2018.04.02
Posted by '김용환'
,