전체 글 (67)

내 ip로 접속했을때 톰캣 매니져화면이아니라 프로젝트를 띄우고싶을때 서버.xml에서 저부분을 바꿔주면된다


DEV/Linux

가상서버 세팅

2018. 10. 10. 10:31

버츄얼박스, 익스텐션팩 다운

CentOS .iso 다운

VBox 익스텐션팩 확장
개발환경 구성 JDK/TOMCAT/MYSQL 설치
MYSQL 설치전 MARIADB 삭제

VBox 설정 NAT 포트포워딩 8080(톰캣)/3306(mysql) 127.0.0.1 
                            or
VBox 설정 브릿지 네트워크 ip 확인 

디비관리툴
HeidiSQL 게스트 db접속 확인


'DEV > Linux' 카테고리의 다른 글

yum rpm 만 설치  (0) 2022.03.04
Mysql 로그 & pid 위치  (0) 2019.08.13
1
2
3
4
5
6
7
$('#모달ID').on('hidden.bs.modal', function () {
        //모달이 닫힐때 로직
});
 
$('#모달ID').on('show.bs.modal', function () {
       // 모달이 열릴때 로직
});
cs


1
2
3
4
5
6
7
8
9
$('#테이블ID').on("click""button#버튼ID", function() {
        $(this).closest("tr").children().eq(0).text();
        $(this).closest("tr").children().eq(1).text();
        $(this).closest("tr").children().eq(2).text();
        $(this).closest("tr").children().eq(3).text();
        $(this).closest("tr").children().eq(4).text();
        $(this).closest("tr").children().eq(5).text();
        $(this).closest("tr").children().eq(6).text();
});
cs