https://www.digitalocean.com/community/tutorials/how-to-install-linux-nginx-mysql-php-lemp-stack-on-centos-7 How To Install Linux, Nginx, MySQL, PHP (LEMP) stack On CentOS 7 Introduction A LEMP…
-
-
CentOS SSH Installation And Configuration
http://www.cyberciti.biz/faq/centos-ssh/ How do I install and configure ssh server and client under CentOS Linux operating systems? You need to install the following packages (which are install…
-
HOW TO INSTALL PUPPET ON CENTOS7
https://garage.godaddy.com/tech/config/install-puppet-centos7/ Puppet is a configuration management tool designed to allow users to define the state of complex IT infrastructures in the easiest way po…
-
HOW TO INSTALL SENSU ON CENTOS7
https://garage.godaddy.com/tech/config/install-sensu-centos7/ Sensu is a monitoring router for Linux operating systems such as CentOS 7. It monitors “check” scripts and passes their results to the cor…
-
[펌] HOWTO: Turn off MySQL reverse DNS lookup to speed up response times
내용을 요약 하자만.. mysql이 접속 할때 reverse DNS lookup을 하는데 이때 시간이 많이 걸리니 이를 skip처리 하면 접속 속도가 많이 빨라 진다는 이야기.. http://developer.sugarcrm.com/2012/01/10/howto-turn-off-mysql-reverse-dns-lookup-to-sp…
-
[Tips- Spring, hibernate] 커넥션 풀 유지하기
http://www.mimul.com/pebble/default/2008/06/24/1214258760000.html 기본적으로 mysql은 8시간 이후에 동작하지 않는 커넥션은 종료시킵니다. 그래서 커넥션 풀이 비정상 상태가 될 확률이 있어 아래와 같은 설정이 필요하게 됩니다. 기본적으로 데이터 소스는 dbcp, c3p0 두개 중에 하나를 사…
-
[linux] 사용자 생성, 그룹생상, 그룹에 사용자 배정하기
1.사용자 등록 useradd -r username – G groupname –shell /bin/false 2. 사용자 삭제 userdel username 3. 그룹 생성 groupadd groupname 4. 존재하는 그룹에 사용자 배정하기 usermod -a -G groupname username
-
NGINX , TOMCAT으로 Virtual Host 구성 하기
1. NGINX 의 기존 디렉토리인 /etc/nginx/config.d/ 하위에 사용할 도메일 별로 *.conf을 생성 한다. 2. 내용은 하기와 같이 한다. server { listen 80; server_name www.aaaa.com; location / { proxy_pass http://127.0.0.1:(열리PORT 보통 8080); } } 3….
-
TOMCAT Virtual Host만들기
1. ${catalina.home}/conf/server.xml 화일을 열어서 아래와 같이 변경 <Engine name=”Catalina”defaultHost=”localhost”debug=”0″> To <Engine name=”Catalina”defaultHost=”www.example.com”debug=”0″> ** 여기서 지정한…
-
Securing Svnserve using SSH
http://tortoisesvn.net/ssh_howto.html Securing Svnserve using SSH This section provides a step-by-step guide to setting up Subversion and TortoiseSVN to use the svn+ssh protocol. If you already use au…