본문 바로가기

분류 전체보기758

[ Apache ] Linux 에서 Apache 설치 소스 설치 기준 (centos 7.6.1810 워크스테이션용) 1. https://httpd.apache.org 에서 apache 웹서버를 다운로드 한다. - 내가 받은 버전은 2.4.41 2. tar xvfz httpd-2.4.41.tar.gz 로 압축 해제 (나의 경우 /app 디렉토리에 파일을 옮겨옴) 3. cd httpd-2.4.41 4. ./configure --prefix=/app/apache2.4.41 --enable-mods-shared=all --enable-so --enable-rewrite --enable-proxy --enable-proxy-ajp --enable-proxy-balaner --enable-proxy-http --enable-proxy-connect --enable-s.. 2019. 10. 22.
[ Linux ] IP (ip v4) 확인 하기 1. hostname 사용 shell> hostname -I (대문자 I (아이)) [root@testcentos bin]# hostname -I 192.168.122.1 2. ip addr show (show 는 생략 가능함) : inet 뒤를 확인 shell> ip addr show [root@testcentos bin]# ip addr show 1: lo: mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 inet 127.0.0.1/8 scope host lo valid_lft forever preferred_lft forever inet6 :.. 2019. 10. 22.
[ ECLIPSE ] Server Type 에 Tomcat 이 보이지 않을 때 * eclipse server type 에 tomcat 이 보이지 않을 때 - help > Install New Software > Work with > All Available Sites 선택 - Web XML and JAVA EE Development 를 확장 JST Server Adapters 체크 - Web Tools Platform(WTP) 를 체크 - next 를 통해 설치 2019. 8. 24.
[ mysql ] root 비밀 번호 분실 시 변경 방법 1. windows 의 경우 - cmd 창에서 - %MYSQL_HOME%\bin\start mysqld --skip-grant-tables - %MYSQL_HOME%\bin\mysql - (5.7 미만 버전) UPDATE mysql.user SET password=password('패스워드') WHERE user='root'; FLUSH PRIVILEGES; - (5.7 이상 버전) UPDATE mysql.user SET authentication_string=password('패스워드') WHERE user='root'; FLUSH PRIVILEGES; 2019. 8. 19.