[Linux]yum CentOS 지난 버전 사용하기
·
Linux
대략 지난 버전이 꼭 필요하다면 http://vault.centos.org를 이용하라는 소리다. http://vault.centos.org에 가보면 지난 디렉토리들이 보이고, 디렉토리에 들어가면 다른 미러와 다르게 여러 디렉토리들이 보인다. ------------------------------------------------------------------------- 버전확인 ------>grep . /etc/*-release cat /etc/*-release | uniq ------------------------------------------------------------------------- 경로 : /etc/yum.repos.d # CentOS-Base.repo # # The mirror..
[Linux]mount nfs 에러
·
Linux
mount -t nfs 실패 --> mount: wrong fs type, bad option, bad superblock on --> yum search nfs --> yum install nfs-utils mount -t nfs 실패 --> mount.nfs: rpc.statd is not running but is required for remote locking. mount.nfs: Either use '-o nolock' to keep locks local, or start statd. mount.nfs: an incorrect mount option was specified --> yum search portmap --> centos 6.3 에서는 portmap 을 안 쓰는건지 rpcbind ..
[개발자]초심 개념알기!!
·
Programing
Windows/Linux 둘다적용 0. JDK설치(1.5이상) 1. Oracle설치(운영DB기준, 10g이상) - 테이블스페이스,테이블셋팅,계정부여,권한부여 2. Apache설치(2.0이상, C:/app/Apache2.x) - 웹서버개념,rotalog설정(CustomLog,ErrorLog 일자별 적재),포트확인, DocumentRoot 3. Resin/Tomcat설치(C:/app/Resin4.x, C:/app/Tomcat7) - WAS개념,포트확인,java heap 메모리셋팅 4. 아파치,Resin/Tomcat 연동(Port 80) - 포트확인,연동포트(Listen포트) 위 내용이 다 끝나면 1. Apache vhost를 이용해서 100포트로 (ex, D:/Project/homepage_dev)로 두개 ..