-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgeth_local.html
More file actions
88 lines (82 loc) · 2.99 KB
/
geth_local.html
File metadata and controls
88 lines (82 loc) · 2.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html>
<head>
<title>Session 2. Geth 실습 가이드</title>
<meta charset="utf-8">
<link href="https://fonts.googleapis.com/earlyaccess/nanumgothic.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/earlyaccess/nanumgothiccoding.css" rel="stylesheet">
<link href="css/Styles.css" rel="stylesheet">
</head>
<body>
<h1 id="main_title" align="center">Session 2. Geth 실습 가이드</h1>
<!--Step 1-->
<div class="steps">
<h3 class="sub_title">Step 1. Geth 설치 및 실행</h3>
<div class="content">
<ol>
<!--li>Geth 다운로드</li>
<p>운영체제에 맞는 Geth 클라이언트를 다운로드하세요.<a href="https://geth.ethereum.org/downloads/" target="_blank">링크</a></p><br><br>
<li>Geth 설치하기</li>
<p>Windows: 인스톨러의 가이드에 따라 설치하세요.(환경변수 자동 등록)</p>
<p>Mac: Users/Username 디렉토리에 설치하세요.(Home 디렉토리)</p><br><br-->
<li>Geth 설정하기 </li>
<p>Mist에 내장된 Geth를 다시 실행합니다. </p>
<p>(만일 Mist 내장된 Geth를 사용하지 않고, 별도로 Geth 설치하려면 다음 Geth 클라이언트를 다운로드하세요. <a href="https://geth.ethereum.org/downloads/" target="_blank">링크</a>)</p>
<!--table border="0px" width="800px" bgcolor="black" cellpadding="10pt">
<tr>
<td>
<p><code>~/> cd etherstudy/day2 </code></p>
</td>
</tr>
</table>
<p>Mac일 경우,</p>
<table border="0px" width="800px" bgcolor="black" cellpadding="10pt">
<tr>
<td>
<p><code>~/etherstudy/day2> source gethenv.sh</code></p>
</td>
</tr>
</table>
<p>Window일 경우,</p>
<table border="0px" width="800px" bgcolor="black" cellpadding="10pt">
<tr>
<td>
<p><code>~/etherstudy/day2> gethenv.bat</code></p>
</td>
</tr>
</table-->
<p>Window일 경우,</p>
<table border="0px" width="800px" bgcolor="black" cellpadding="10pt">
<tr>
<td>
<p><code>
(터미널1)<br><br>
<font color="red">
gethclient.bat 파일을 열어 아래 옵션을 추가합니다.
<br>
--rpccorsdomain "*" --rpcapi "admin,db,eth,miner,net,txpool,personal,web3"</font>
<br>
> gethclient.bat 실행
<br><br>
(터미널2)<br><br>
> gethconsole.bat 실행
</code></p>
</td>
</tr>
</table>
<!--p>Mac일 경우,</p>
<table border="0px" width="800px" bgcolor="black" cellpadding="10pt">
<tr>
<td>
<p><code>> gethclient.sh 실행</code></p>
</td>
</tr>
</table-->
<div class="steps">
<h4 class="sub_title">
► <a href="https://remix.ethereum.org/" target="_new">Remix Link</a> <br><br>
► <a href="https://github.com/etherstudy/first_exercise" target="_new">Github Link</a>
</h4>
</div>
</body>
</html>