카테고리 없음2016. 8. 1. 13:24
반응형


/standalone/configuration/standalone.xml <interfaces> <interface name="management"> <inet-address value="${jboss.bind.address.management:192.168.33.10}"/> </interface> <interface name="public"> <inet-address value="${jboss.bind.address:192.168.33.10}"/> </interface> </interfaces>


Posted by 1010
카테고리 없음2016. 8. 1. 12:47
반응형

 - 설정 파일 추가.(기존에 해당 파일이 없음)

 - 홈디렉토리, listen port 등을 설정할 수 있음.

 - $ vi /etc/sysconfig/svnserve

OPTIONS="--threads --root /home/svn"


 - /etc/init.d/svnserve 파일을 보면 서비스에 등록하기 위해서 /etc/sysconfig/svnserve 파일이 필요하다는 것을 알 수 있다.

 - 이후 service svnserve start|stop|restart 로 구동 가능.

 

서버 재 부팅시 자동으로 시작하게 만들기.

 - 설정확인.

 - $ chkconfig --list svnserve


 - 설정하기.

 - $ chkconfig svnserve on

Posted by 1010
카테고리 없음2016. 8. 1. 12:46
반응형

1. /etc : postinstall.httpd.bat 실행


2. /bin : httpd -k install 실행 (서비스등록)


3./bin : net start Apache2.2 : 서비스 실행


원도우 서비스 관리자에 등록되어 있는지 확인


4. h

Posted by 1010