IT 한길

CentOS 8 다운로드

IT/Linux2020. 6. 8. 16:59

 

다운로드 : http://isoredirect.centos.org/centos/8/isos/x86_64/

 

http://mirror.kakao.com/centos/8.1.1911/isos/x86_64/CentOS-8.1.1911-x86_64-dvd1.iso

1. downlaod : http://yum.baseurl.org/download/2.0/index.html

2. gzip -d yum-2.0.8.tar.gz

3. tar -xvf yum-2.0.8.tar

4. cd yum-2.0.8

5. ./configure

6. make

7. make install

 

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

리눅스 버전 확인  (0) 2020.09.22
패스워드 변경 주기 삭제  (0) 2020.08.12
CentOS 8 다운로드  (0) 2020.06.08
/bin/sh^M: bad interpreter: No such file or directory 오류 발생 시  (0) 2020.06.03

- vi 바이너리 모드에서 ^M을 삭제 한다. (vi -b )

 

- 일괄 치환

:%s/^M//g   (^:ctrl+v, M:ctrl+m)

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

리눅스 버전 확인  (0) 2020.09.22
패스워드 변경 주기 삭제  (0) 2020.08.12
CentOS 8 다운로드  (0) 2020.06.08
yum : command not found (Redhat)  (0) 2020.06.08

 

1.periodic-rotating-file-handler

<periodic-rotating-file-handler name="FILE">
   <formatter>
      <pattern-formatter pattern="%d{HH:mm:ss,SSS} %-5p [%c] (%t) %s%E%n"/>
   </formatter>
   <file relative-to="jboss.server.log.dir" path="server.log"/>
   <suffix value=".yyyy-MM-dd"/>
   <append value="true"/>
</periodic-rotating-file-handler>

 

 

2. size-rotating-file-handler

<size-rotating-file-handler name="size_rotating" autoflush="true">
   <level name="DEBUG"/>
   <file relative-to="jboss.server.log.dir" path="server.log"/>
   <rotate-size value="500k"/>

<formatter>
      <pattern-formatter pattern="%d{HH:mm:ss,SSS} %-5p [%c] (%t) %s%E%n"/>
</formatter>

</size-rotating-file-handler>

 

3.async-handler

<async-handler name="async_handlers">
   <level name="INFO"/>
   <queue-length>512</queue-length>
   <overflow-action>block</overflow-action>
   <subhandlers>
      <handler-ref name="FILE"/>
   </subhandlers>
</async-handler>

'IT > Was' 카테고리의 다른 글

톰캣 불필요한웹메서드 제거  (0) 2020.07.14
[Tomcat]도커(Docker)에서 톰캣 설치  (0) 2020.06.11
JBoss AS 7 설치  (0) 2014.03.07
웹로직 64비트 설치  (0) 2014.02.10
jBoss7 Web Application Deploy 하기  (0) 2014.01.21

JBoss AS 7 설치

IT/Was2014. 3. 7. 20:37
  1. 설치
    - 다운로드 : http://www.jboss.org/jbossas/downloads
    - 윈도우인 경우 전체 디렉토리 경로상에 띄어쓰기가 포함되지 않도록 주의
  2. JBoss AS 시작
    - 시작 : standalone.bat
    - 시작 속성 변경 : standalone.conf.bat
    - 또는 java -jar jboss-modules.jar -mp "%JBOSS_HOME%\modules" org.jboss.as.standalone -Djboss.home.dir="%JBOSS_HOME%"
  3. 커맨드라인 인터페이스 서버 연결
    - jboss-cli.bat 실행
  4. 정지
    [disconnected /] connect
    [standalone@localhost:9999 /] :shutdown
    {"outcome" => "success"}
    [standalone@localhost:9999 /]

    - 스크립트 : jboss-cli.bat --connect command=:shutdown
  5. 재시작
    [disconnected /] connect
    [standalone@localhost:9999 /] :reload
    {"outcome" => "success"}
    [standalone@localhost:9999 /]

 

 

'IT > Was' 카테고리의 다른 글

[Tomcat]도커(Docker)에서 톰캣 설치  (0) 2020.06.11
Jboss AS 7 서버로깅설정  (0) 2014.03.24
웹로직 64비트 설치  (0) 2014.02.10
jBoss7 Web Application Deploy 하기  (0) 2014.01.21
jBoss7 admin 계정 생성  (0) 2014.01.21

웹로직 64비트 설치

IT/Was2014. 2. 10. 17:46

웹로직 다운로드 링크 -

http://www.oracle.com/technetwork/middleware/fusion-middleware/downloads/index.html

 

wls_121200.jar 파일 다운로드

java -jar wls_121200.jar 명령을 이용하여 설치

 

'IT > Was' 카테고리의 다른 글

[Tomcat]도커(Docker)에서 톰캣 설치  (0) 2020.06.11
Jboss AS 7 서버로깅설정  (0) 2014.03.24
JBoss AS 7 설치  (0) 2014.03.07
jBoss7 Web Application Deploy 하기  (0) 2014.01.21
jBoss7 admin 계정 생성  (0) 2014.01.21

 

standalone.xml 수정

 

1. enable-welcome-root="true" -> enable-welcome-root="false" 로 수정.

true 상태로 올라가는 경우 path가 중복되면서 예외가 발생 하여 서비스가 시작 되지 않는다.

 

2. <subsystem xmlns="urn:jboss:domain:deployment-scanner:1.1">
            <deployment-scanner path="D:/Source/TEST/" scan-interval="5000" auto-deploy-zipped="true" auto-deploy-exploded="true"/>
        </subsystem>

 

auto-deploy-exploded="false" 를 auto-deploy-exploded="true" 로 변경

 

 

 

'IT > Was' 카테고리의 다른 글

[Tomcat]도커(Docker)에서 톰캣 설치  (0) 2020.06.11
Jboss AS 7 서버로깅설정  (0) 2014.03.24
JBoss AS 7 설치  (0) 2014.03.07
웹로직 64비트 설치  (0) 2014.02.10
jBoss7 admin 계정 생성  (0) 2014.01.21

JBOSS_HOME\bin\add-user.bat 실행

 

What type of user do you wish to add?
 a) Management User (mgmt-users.properties)
 b) Application User (application-users.properties)
(a): a

Enter the details of the new user to add.
Realm (ManagementRealm) :
Username : admin
Password :
Re-enter Password :
The username 'admin' is easy to guess
Are you sure you want to add user 'admin' yes/no? yes
About to add user 'admin' for realm 'ManagementRealm'
Is this correct yes/no? yes
Added user 'admin' to file 'JBOSS_HOME\standalone\configura
tion\mgmt-users.properties'
Added user 'admin' to file 'JBOSS_HOME\domain\configuration
\mgmt-users.properties'
계속하려면 아무 키나 누르십시오 . . .

 

관리자 페이지 접속 하기 : http://localhost:9990/

'IT > Was' 카테고리의 다른 글

[Tomcat]도커(Docker)에서 톰캣 설치  (0) 2020.06.11
Jboss AS 7 서버로깅설정  (0) 2014.03.24
JBoss AS 7 설치  (0) 2014.03.07
웹로직 64비트 설치  (0) 2014.02.10
jBoss7 Web Application Deploy 하기  (0) 2014.01.21