Skip to content

Instantly share code, notes, and snippets.

View doohee323's full-sized avatar

Dewey Hong doohee323

View GitHub Profile
@doohee323
doohee323 / upgrade_64_68.sh
Created December 18, 2019 18:29
Upgrade Elasticsearch from 6.4 to 6.8 on Ubuntu
#!/usr/bin/env bash
############################################################################################
echo Upgrade Elasticsearch from 6.4 to 6.8 on Ubuntu
# cf. https://www.elastic.co/guide/en/elasticsearch/reference/current/rolling-upgrades.html
############################################################################################
############################################################################################
echo 1. Disable shard allocation.
############################################################################################

AWS 학습 링크집 시리즈

AWS 보안 관련 컨텐츠 모음집

이 문서는 AWS 공식문서 중 보안에 관련된 자료들을 한글 자료 중심으로 정리해 놓은 것 입니다.

단축URL: http://bit.ly/seccontents

import org.junit.Test;
import org.junit.Rule;
import org.junit.rules.ExpectedException;
public class JUnitExceptionTest {
@Rule
public ExpectedException exception = ExpectedException.none();
@Test
import org.junit.Before;
import org.junit.After;
import static org.junit.Assert.*;
import org.junit.Test;
public class JUnitTest {
@Before
public void setUp() throws Exception {
}