본문 바로가기

반응형

IT

(137)
Writing Shell script 1 source : http://linuxcommand.org/lc3_writing_shell_scripts.php Writing shell scripts a shell script is file containing a series of commands. The shell reads this file and carries out the commands as though they have been entered directly on the command line. a shell script is a file that contains ascii text. to create a shell script, you use a text editor. Use vi to use text editor, make sure to..
Linux commands 1 Linux command notes Shell - a program that takes commands from keyboard and gives them to the operating system to perform. Nowadays we have graphical user interfaces in addition to command line interfaces such as the shell. On most linux system a bash acts as the shell program. Terminal - a program that gets you interact with the shell. A. Navigation pwd - prints current directory cd - changes d..
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..

반응형