본문 바로가기
반응형

SW LAB/Linux14

WAS : WebLogic 설치 및 세팅 절차 WebLogic 세팅 절차입니다. 1. weblogic 설치 http://1004lucifer.blogspot.com/2018/08/weblogic-linux-103-1211.html 2. weblogic 도메인 설정 http://1004lucifer.blogspot.com/2018/08/weblogiclinux-103-1211.html -- 설정 시.. localhost 가 아니라 192.168.104.1 로 입력해야 외부에서 접속 가능 -- true 도 추가 -- config 파일은 config.xml 파일 찾아볼 것 * 특이사항 1. 네트워크 구성 오류 발생시 https://blogs.oracle.com/luzmestre/javalangassertionerror:-could-not-obtain-th.. 2020. 4. 26.
WAS : Jeus 설치 및 세팅 절차 Tibero 사의 Jeus 는 세팅 절차입니다. 1. 다음 사이트에서 Jeus 를 받습니다. https://technet.tmaxsoft.com/ko/front/download/viewDownload.do?cmProductCode=0101&version_seq=PVER-20140203-000001&doc_type_cd=DN#binary --> Technet 회원가입 필요 --> Trial License 는 접속인원 5명으로 제한 2. 다운로드 받은 매뉴얼을 참고하면 쉽게 설치가 가능합니다. * 특이사항 1. vhost 문제로 running 준비 중 오류 발생 - jeus 설치 경로의 vhost.properties 파일에 pc name 을 알맞게 입력해야 합니다. - port 도 기본포트 외 다른 것으로 .. 2020. 4. 26.
리눅스 SSH 인증키 발급 및 접속 절차 리눅스 SSH 인증키 발급 절차 1) Home 디렉토리의 SSH 폴더로 이동 cd ~/.ssh 2) 키 생성 ssh-keygen –t rsa 3) Enter file in which to save the key (/root/.ssh/id_rsa) : 질문 Enter key 입력 4) Enter passphrase (empty for no passphrase) : 질문 Enter key 입력 5) Ender same passphrase again: 질문 Enter key 입력 6) [id_rsa, id_rsa.pub, known_hosts, authorized_keys] 파일이 생성되었는지 확인 (authorized_keys 는 없을 수도 있으니 무시) ls 7) 권한 변경 chmod 700 ~/.ssh .. 2020. 4. 26.
WAS : JBOSS 설치 및 세팅 가이드 JBOSS 세팅 절차입니다. 1. jboss 다운로드 http://jbossas.jboss.org/downloads 2. 설치방법 http://blog.naver.com/PostView.nhn?blogId=crehacktive3&logNo=221033209095&parentCategoryNo=&categoryNo=6&viewDate=&isShowPopularPosts=true&from=search -> 요약하면, 사용자 계정 생성 후.. 실행하면 됩니다. 2-1. 실행 쉘 스크립트 폴더 이동 [@root]# cd /home/was/jboss/jboss-as-7.1.1.Final/bin 2-2. 계정 생성 [@root]# ./add-user.sh 2-3. 실행 [@root]# ./standalone.sh .. 2020. 4. 26.
Linux : Command 정리 도메인 편집 vi /etc/hosts 방화벽 관련 service iptables stop service firewalld stop 이더넷 드라이버 관련 /etc/sysconfig/network-scripts/ 특정 확장자 파일 제거 find /work/dir -name "*.tmp" -exec rm -rf {} \; 특정 확장자 파일 이동 find /work/dir -name "*.tmp" -exec cp {} /des/dir \; 특정 확장자 파일 복사 find /work/dir -name "*.tmp" -exec mv {} /des/dir \; 2020. 4. 24.
Linux Shell Command 정리 sed (stream editor) ed 명령어와 grep명령어 기능의 일부를 합친 것입니다. 각 라인을 읽으면서 ed에서 사용하던 형식의 대치작업을 수행합니다. 치환 sed 's/as-is대상/to-be대상' 파일명 sed 's/abcd/transfer' filename.txt 라고 했을 때.. filename.txt 파일 내 abcd 라는 문자열을 transfer로 변환합니다. 삭제 sed '/abcd/d' filename.txt filename.txt 파일 내 abcd 문자열이 포함된 줄을 삭제하여 출력합니다. sed '/abcd/!d' filename.txt filename.txt 파일 내 abcd 문자열이 있는 줄을 제외하고 모두 삭제합니.. 2020. 4. 24.
반응형