본문 바로가기

반응형

IT/ETC

(70)
Setting aws ec2 and rds, install java jdk8 on ec2(1/30/20 cudo notes1) installing java jdk 8 on ec2 Step 1: Check the Java Version java -version Step 2: Download RPM package of Oracle JDK (8u121) wget --no-check-certificate --no-cookies --header "Cookie: oraclelicense=accept- securebackup-cookie" http://download.oracle.com/otn-pub/java/jdk/8u141-b15/336fa29ff2bb4ef291e347e091f7f4a7/jdk-8u141-linux-x64.rpm Step 4: Install JDK 8 sudo yum install -y jdk-8u141-linux-x6..
UnsupportedClassVersionError jdk버전이 안맞다.. curl ifconfig.me 추가 : project를 자바 7버전으로 구성해서 세팅할시 mysql-connector depository를 확인하자. mysql-connector 버전 8 이후 부터는 java 7를 지원안해준다. mysql-connector 경로는 com.mysql.cj.jdbc.Driver이지만 mysql-connector 5같은 경우에는 com.mysql.jdbc.Driver
FTP vs SFTP FTP and STFP are two different file transfer protocols. FTP stands for File Transfer Protocol is commonly used protocol for exchanging files over the internet. FTP uses a cilent-server architecture, often secured with SSL/TLS. FTP works on a server and client based architecture, meaning that the client can access any information o nthe server at any given time. FTP uses two separate channels for..
AWS(1/29/20 notes) 접속 mv .ssh.zip ssh.zip sudo ssh -i /users/taewon/downloads/ssh/mykeypair.pem ec2-user@ec2-18-191-183-205.us-east-2.compute.amazonaws.com https://sarc.io/index.php/aws/520-aws-ec2-linux-10-apache-tomcat AWS의 EC2 Linux 인스턴스에 10분만에 Apache Tomcat 설치하기 Technical Note 정보 stdio.h 님이 작성하신 글입니다. 카테고리: [ Amazon Web Services ] 게시됨: 29 June 2016 작성됨: 30 June 2016 최종 변경: 21 September 2019 조회수: 20749 지난 주 스터디 주제..
Apache poi(excel) 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 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 @RequestMapping(value = "excelDownload") public void excelDownload(HttpServletResponse..
01/20/20 notes(mac java dw, java download and setup) 1. Delete java from mac completely by three steps: sudo rm -rf /Library/Java/* sudo rm -rf /Library/PreferencePanes/Java* sudo rm -rf /Library/Internet\ Plug-Ins/Java* 2. You can type java -version on terminal and click on more info to be directed to oracle java page. 3. I downloaded jdk 8u241 version 4. Create file on main page cd if .bash_profile does not exist, create it by touch .bash_profil..
Algorithms(week3, problemset) 1. Plurality 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 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 #include #include #include #define MAX 9 typedef struct{ ..
Arrays(week 2, problem set) 1. Readability 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 #import #import #import #import int main(int argc, char *argv[]){ int z; if(argc = 3){ printf("Usage: ./caesar key\n"); return 1; } else if((z = atoi(argv[1])) == 0 ){ printf("Usage: ./caesar key\n"); return 1; } z = atoi(argv[1])..

반응형