.htpasswd 설정

리눅스 2015. 4. 28. 12:53


홈페이지 인증을 위해서 .htpasswd 파일과 .htaccess 파일 두개가 필요하다



- httpd.conf 파일수정


<Directory "/usr/local/apache/htdocs">

    AllowOverride all                                           <- 이부분이 none으로 되있을 것이다.

    Order allow,deny

    Allow from all

</Directory>




- 인증이 필요한 디렉토리에 파일 만들기.(웹소스가 있는 폴더)

vi  .htaccess


AuthName "oracle"                                                                      <- 임의로 지정가능. 보통은 홈페이지 이름

AuthType Basic

AuthUserFile /usr/local/apache/htdocs/.htpasswd

AuthGroupFile /dev/null                                                            <- 그룹으로 인증확인을 할경우에 그룹인증파일명을 적는다.

require valid-user                                                                       <- 인증된 사용자만이 접속을 허용한다




- 패스워드 파일 만들기 

vi  .htpasswd 


htpasswd -c  /usr/local/apache/htdocs/.htpasswd [USERID]


처음 사용시만   -c  옵션을 사용하고 두번재 부터는 그냥 만들면 된다.

'리눅스' 카테고리의 다른 글

CentOS 설치 시 BIOS RAID metadata  (0) 2015.04.28
cnetos 7 firewall 설정  (0) 2015.04.28
로그인시 bash 어쩌고 보이는 경우  (0) 2015.04.24
nfs 설치 설정  (0) 2015.04.24
mod-cband 설치  (0) 2015.04.23
Posted by Narusika
,



-bash-4.1$ 로 표시가 되는 경우



vi /etc/profile 열어서 아래 내용 추가

if [ -x /usr/libexec/path_helper ]; then 

        eval `/usr/libexec/path_helper -s` 

fi 

if [ “${BASH-no}” != “no” ]; then 

        [ -r /etc/bashrc ] && . /etc/bashrc 

fi 


source /etc/profile    명령어를 실행하여 적용 

로그 아웃 후 다시 확인해 보면 로그인한 사용자 계정이 보일 것 이다.



출처 : dbjara.com

'리눅스' 카테고리의 다른 글

cnetos 7 firewall 설정  (0) 2015.04.28
.htpasswd 설정  (0) 2015.04.28
nfs 설치 설정  (0) 2015.04.24
mod-cband 설치  (0) 2015.04.23
캐릭터셋 변경하기  (0) 2015.04.20
Posted by Narusika
,

nfs 설치 설정

리눅스 2015. 4. 24. 16:54


서버



nfs 설치

yum -y install nfs-utils nfs-utils-lib




nfs 설정

vi /etc/sysconfig/nfs


LOCKD_TCPPORT=32803

LOCKD_UDPPORT=32769

MOUNTD_PORT=892

RQUOTAD_PORT=875

STATD_PORT=662

STATD_OUTGOING_PORT=2020





디렉토리 설정

vi /etc/exports


/data1 192.168.9.40/24(rw,sync,no_root_squash)





포트 설정                                                 //안해도 된다. 나중에 자세히..

 vi /etc/sysconfig/iptables


-A INPUT -m state --state NEW -m udp -p udp --dport 2049 -j ACCEPT 

-A INPUT -m state --state NEW -m tcp -p tcp --dport 2049 -j ACCEPT 

-A INPUT -m state --state NEW -m udp -p udp --dport 111 -j ACCEPT 

-A INPUT -m state --state NEW -m tcp -p tcp --dport 111 -j ACCEPT 

-A INPUT -m state --state NEW -m udp -p udp --dport 32769 -j ACCEPT 

-A INPUT -m state --state NEW -m tcp -p tcp --dport 32803 -j ACCEPT 

-A INPUT -m state --state NEW -m udp -p udp --dport 892 -j ACCEPT 

-A INPUT -m state --state NEW -m tcp -p tcp --dport 892 -j ACCEPT 

-A INPUT -m state --state NEW -m udp -p udp --dport 875 -j ACCEPT 

-A INPUT -m state --state NEW -m tcp -p tcp --dport 875 -j ACCEPT 

-A INPUT -m state --state NEW -m udp -p udp --dport 662 -j ACCEPT 

-A INPUT -m state --state NEW -m tcp -p tcp --dport 662 -j ACCEPT


/etc/init.d/iptables restart




nfs 시작

service rpcbind start

service nfslock start 

service nfs start





rpcinfo -p localhost


   program vers proto   port  service

    100000    4   tcp    111  portmapper

    100000    3   tcp    111  portmapper

    100000    2   tcp    111  portmapper

    100000    4   udp    111  portmapper

    100000    3   udp    111  portmapper

    100000    2   udp    111  portmapper

    100024    1   udp    662  status

    100024    1   tcp    662  status

    100005    1   udp    892  mountd

    100005    1   tcp    892  mountd

    100005    2   udp    892  mountd

    100005    2   tcp    892  mountd

    100005    3   udp    892  mountd

    100005    3   tcp    892  mountd

    100003    2   tcp   2049  nfs

    100003    3   tcp   2049  nfs

    100003    4   tcp   2049  nfs

    100227    2   tcp   2049  nfs_acl

    100227    3   tcp   2049  nfs_acl

    100003    2   udp   2049  nfs

    100003    3   udp   2049  nfs

    100003    4   udp   2049  nfs

    100227    2   udp   2049  nfs_acl

    100227    3   udp   2049  nfs_acl

    100021    1   udp  32769  nlockmgr

    100021    3   udp  32769  nlockmgr

    100021    4   udp  32769  nlockmgr

    100021    1   tcp  32803  nlockmgr

    100021    3   tcp  32803  nlockmgr

    100021    4   tcp  32803  nlockmgr





클라이언트


설치

yum install nfs-utils nfs-utils-lib




폴더 설정

mkdir /data1




마운트

mount -t nfs 192.168.9.40:/data1 /data1


vi /etc/fstab   등록해서 계속 사용 가능


192.168.9.40:/data1 /data1                nfs     hard            0 0


 chkconfig --level 35 netfs on   요놈이 있어야 자동 마운트 가능


마운트 해제


umount 로 해제 그냥 해제 안되면 

umount -f 로 해제해주자.




구동/정지 순서


service netfs start

service portmap start

service nfslock start

service nfs start


service netfs stop

service portmap stop

service nfslock stop

service nfs stop


-------------------------------------------------------------------------------------------------------


*

서버는 portmap, nfs          //     항상 포트맵이 먼져 켜져야한다

클라이언트는 portmap



마운트 안될시

mount -t nfs -o nolock 192.168.9.40:/data1 /data1





'리눅스' 카테고리의 다른 글

.htpasswd 설정  (0) 2015.04.28
로그인시 bash 어쩌고 보이는 경우  (0) 2015.04.24
mod-cband 설치  (0) 2015.04.23
캐릭터셋 변경하기  (0) 2015.04.20
파일시스템 오류 give root password for maintenance  (0) 2015.04.20
Posted by Narusika
,

mod-cband 설치

리눅스 2015. 4. 23. 17:38


다운로드

http://freebsd.csie.nctu.edu.tw/distfiles/apache2/mod-cband-0.9.7.5.tgz



# ./configure --with-apxs=/usr/local/apache/bin/apxs

# make

# make install


# httpd.conf

LoadModule cband_module       modules/mod_cband.so              모듈 확인




<IfModule mod_cband.c>

    <Location /cband-status-me>

        SetHandler cband-status-me

    </Location>

    <Location /~*/cband-status-me>

        SetHandler cband-status-me

    </Location>

    <Location /cband-status>

        SetHandler cband-status

        Order deny,allow

        Deny from all

        Allow from 123.123.123

    </Location>

</IfModule>


추가



# vi httpd-vhost.conf

<VirtualHost *>

    ServerName mydomain.com    

    Document /home/www

    CBandLimit 300Mi

    CBandPeriod 1D

    CBandExceededURL http://mydomain.com/traffic_exceeded.html

</VirtualHost>


설정



# /etc/init.d/httpd configtest

# /etc/init.d/httpd graceful


데몬 재실행




-------------------------------------------------------------------------------

에러 날경우


# make


/usr/local/apache/bin/apxs -Wc,-Wall -Wc,-DDST_CLASS=3 -c src/mod_cband.c

/usr/local/apache/build/libtool --silent --mode=compile gcc -std=gnu99 -prefer-pic   -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -g -O2 -pthread -I/usr/local/apache/include  -I/usr/local/apache/include   -I/usr/local/apache/include  -Wall -DDST_CLASS=3  -c -o src/mod_cband.lo src/mod_cband.c && touch src/mod_cband.slo

src/mod_cband.c: In function 'mod_cband_create_traffic_size':

src/mod_cband.c:1054: warning: comparison with string literal results in unspecified behavior

src/mod_cband.c:1054: warning: comparison with string literal results in unspecified behavior

src/mod_cband.c:1058: warning: comparison with string literal results in unspecified behavior

src/mod_cband.c:1058: warning: comparison with string literal results in unspecified behavior

src/mod_cband.c: In function 'mod_cband_get_dst':

src/mod_cband.c:1333: error: 'conn_rec' has no member named 'remote_ip'

src/mod_cband.c: In function 'mod_cband_get_remote_host':

src/mod_cband.c:1362: error: 'struct conn_rec' has no member named 'remote_ip'

src/mod_cband.c:1363: error: 'struct conn_rec' has no member named 'remote_ip'

src/mod_cband.c:1365: error: 'struct conn_rec' has no member named 'remote_addr'

apxs:Error: Command failed with rc=65536

.

make: *** [src/.libs/mod_cband.so] 오류 1



이런 에러가 발생하면 다음 파일에 들어가서 수정을 해줍니다.

# vi src/mod_cband.c


/*  addr = c->remote_addr->sa.sin.sin_addr.s_addr; */  //변경 전             약 1300줄

    addr = c->client_addr->sa.sin.sin_addr.s_addr;  //변경 후


:%s/remote_ip/client_ip/g                                                              4개(?)변경

(remote_ip 변수를 client_ip로 변경한다.)

:wq










아래의 URL에서 cband status 를 확인할 수 있습니다.


http://mydomain.com/cband-status




xml 데이터도 출력이 가능합니다.


http://mydomain.com/cband-status?xml




'리눅스' 카테고리의 다른 글

로그인시 bash 어쩌고 보이는 경우  (0) 2015.04.24
nfs 설치 설정  (0) 2015.04.24
캐릭터셋 변경하기  (0) 2015.04.20
파일시스템 오류 give root password for maintenance  (0) 2015.04.20
ssl 인증서 갱신  (0) 2015.04.20
Posted by Narusika
,

# cat /etc/sysconfig/i18n
LANG="ko_KR.UTF-8"
SUPPORTED="en_US.UTF-8:en_US:en:ko_KR.UTF-8:ko_KR:ko"
SYSFONT="latarcyrheb-sun16"

 
 
LANG="ko_KR.eucKR
SUPPORTED="en_US:en:ko_KR.eucKR:ko_KR:ko" 
SYSFONT="lat0-sun16" 
SYSFONTACM="iso01"

 

바로 적용
 
# source /etc/sysconfig/i18n

 
적용 확인

 
# echo $LANG
ko_KR.eucKR


'리눅스' 카테고리의 다른 글

nfs 설치 설정  (0) 2015.04.24
mod-cband 설치  (0) 2015.04.23
파일시스템 오류 give root password for maintenance  (0) 2015.04.20
ssl 인증서 갱신  (0) 2015.04.20
freetds 설치  (0) 2015.04.15
Posted by Narusika
,

하드나 커널쪽 문제라고 하는데 정확히는....


Give root password for maintenance

(or type Control -D for normal startup):



root 패스워드를 입력하고, fsck 로 체크하는 방법이 있다.


부팅하는 방법


1. mount -o remount,rw /        읽기,쓰기로 다시 마운트


2. vi /etc/fstab        1 1 로 파일시스템 체크를 하게 되있는 부분을 0 0으로 변경하여 체크하지 않고 넘어가게 한다.


3. reboot

'리눅스' 카테고리의 다른 글

mod-cband 설치  (0) 2015.04.23
캐릭터셋 변경하기  (0) 2015.04.20
ssl 인증서 갱신  (0) 2015.04.20
freetds 설치  (0) 2015.04.15
HDD 파티션, 마운트, 포멧  (0) 2015.04.15
Posted by Narusika
,

ssl 인증서 갱신

리눅스 2015. 4. 20. 10:28

 1. key 값 생성

openssl genrsa -des3 -out DOMAINNAME.key 2048


확인

openssl rsa -noout -text -in DOMAINNAME.key



 2. csr 생성

openssl req -new -key DOMAINNAME.key -out DOMAINNAME.csr


Country Name (2 letter code) [GB]:KR                                 #나라를 나타내는 2문자의 ISO약어

State or Province Name (full name) [Berkshire]:Seoul               #조직이 있는 시도

Locality Name (eg, city) [Newbury]:Seocho-gu                       #조직이 있는 구동

Organization Name (eg, company) [My Company Ltd]:DMI       #조직의 법률상의 정식명칭

Organizational Unit Name (eg, section) []:                                #조직의 부서명

Common Name (eg, your name or your server's hostname) []:  #발급받을 정확한 FQDN의 도메인

Email Address []:                                                                  #이메일 주소


Please enter the following 'extra' attributes

to be sent with your certificate request

A challenge password []:                                                #엔터로 다음로 넘어간다, 생략 가능

An optional company name []:                                         #엔터로 다음로 넘어간다, 생략 가능


csr 확인

openssl req -noout -text -in DOMAINNAME.csr

   

-이제 생성된 key와 csr을 인증업체에 보내면 인증서 설치를 위한 crt를 발급해준다.


 3. 설치 

ssl.conf에 인증서 위치에 발급받은 값을 넣어주자/


100 #   Server Certificate:

101 # Point SSLCertificateFile at a PEM encoded certificate.  If

102 # the certificate is encrypted, then you will be prompted for a

103 # pass phrase.  Note that a kill -HUP will prompt again.  A new

104 # certificate can be generated using the genkey(1) command.

105 SSLCertificateFile /etc/httpd/ssl/jh.felix123.kr.crt

106 

107 #   Server Private Key:

108 #   If the key is not combined with the certificate, use this

109 #   directive to point at the key file.  Keep in mind that if

110 #   you've both a RSA and a DSA private key you can configure

111 #   both in parallel (to also allow the use of DSA ciphers, etc.)

112 SSLCertificateKeyFile /etc/httpd/ssl/jh.felix123.kr.key


-----------------------------------------------------------------------------------------------------------------------------------------------------------------


인증서 패스워드 제거

 openssl rsa -in jh.felix123.kr.key -out jh.felix123.kr.key

 writing RSA key


요런 메시지가 뜨고 용량을 확인하면 줄어들어있는걸 알 수 있다.




crt 생성

-인증업체가 발급해주니 필요는 없지만...

openssl req -x509 -days 365 -key -DOMAINNAME.key -in -DOMAINNAME.csr > -DOMAINNAME.crt



키값 확인 명령어


openssl x509 -noout -modulus -in ssl.crt | openssl md5


openssl rsa -noout -modulus -in ssl.key | openssl md5


openssl req -noout -modulus -in ssl.csr | openssl md5


각 값의 md5가 일치해야 동일 인증서



인증서 확인 

openssl x509 -in /app/apache/conf/server.crt -noout -text


'리눅스' 카테고리의 다른 글

캐릭터셋 변경하기  (0) 2015.04.20
파일시스템 오류 give root password for maintenance  (0) 2015.04.20
freetds 설치  (0) 2015.04.15
HDD 파티션, 마운트, 포멧  (0) 2015.04.15
configure 옵션 확인  (0) 2015.04.15
Posted by Narusika
,

freetds 설치

리눅스 2015. 4. 15. 17:17


freetds 다운로드

http://mirrors.ibiblio.org/freetds/stable/freetds-0.91.tar.gz


# ./configure --prefix=/usr/local/freetds --with-tdsver=8.0 --disable-odbc --disable-debug --enable-msdblib

(freetds-0.82 버전의 경우 --enable-dbmfix 옵션 추가)

 


mssql 2008 의 경우 옵션을 제외

mssql 2005 의 경우 --with-tdsver=8.0

mssql 2000 의 경우 --with-tdsver=8.0

mssql 7.0 의 경우 --with-tdsver=7.0

mssql 6.0 의 경우 --with-tdsver=4.2


make

make install




php를 재컴파일 하는게 속이 편하고, 전에 있던 파일 백업후 다시 작업


--with-sybase=/usr/local/freetds --with-mssql=/usr/local/freetds

기존 php configure에 추가



php 5.2.x


--prefix=/usr/local/php --with-apxs2=/usr/local/apache/bin/apxs --with-config-file-path=/usr/local/apache/conf --with-mysql=/usr/local/mysql --enable-mod-charset --enable-safe-mode --enable-sigchild --enable-magic-quotes --with-libxml-dir --with-openssl --with-zlib --with-zlib-dir --with-bz2 --enable-calendar --with-curl --enable-dba --with-gdbm --enable-exif --enable-ftp --with-gd --with-jpeg-dir --with-png-dir --with-ttf --with-freetype-dir --enable-gd-native-ttf --with-gettext --with-imap --with-imap-ssl --with-kerberos --enable-mbstring --with-mhash --with-mcrypt --enable-sockets --with-regex=php --enable-sysvmsg --enable-sysvsem --enable-sysvshm --enable-wddx --enable-zend-multibyte --enable-zip --with-sybase=/usr/local/freetds --with-mssql=/usr/local/freetds






# cd /usr/local/src/php-5.2.9/ext/mssql             php를 설치한 소스폴더


# /usr/local/php/bin/phpize


# ./configure --with-mssql=/usr/local/freetds --with-php-config=/usr/local/php/bin/php-config


# make


# make install


# cd /usr/local/src/php-5.2.9/ext/pdo_dblib


# /usr/local/php/bin/phpize


# ./configure --with-pdo-dblib=/usr/local/freetds --with-php-config=/usr/local/php/bin/php-config


# make


# make install


# mv /usr/local/php/lib/php/extensions/no-debug-zts-20060613/* /usr/local/php/lib/


# /usr/local/Zend/etc/php.ini


아래 내용 추가합니다.

   extension=mssql.so

   extension=pdo_dblib.so


 


 


2. 설정 


 아래 파일을 수정하여 한글 깨짐을 막고 해당 서버로 연결가능하도록 추가 설정합니다.


# vi /usr/local/freetds/etc/freetds.conf


 


[global]

client charset = EUC-KR



[192.168.10.2]

    host = 192.168.10.2


    port = 1433

    tds version = 8.0                    mssql 버전에 맞춰서 넣어주거나 삭제


 


 


3. 확인


아래 명령어를 통해서 접속이 잘 되는지 확인할 수 있습니다.


 


# /usr/local/freetds/bin/tsql -H 192.168.10.2 -p 1433 -U neulwon -P 12345678









 


configure 단계에서 'Directory /usr/local/freetds is not a FreeTDS installation directory' 라는 메시지가 나올경우

# cp /usr/local/src/freetds/include/tds.h /usr/local/freetds/include/

또는

# cp /usr/local/src/freetds/src/tds/.libs/tds.h /usr/local/freetds/include/

tds.h 파일을 설치된 디렉토리에 복사한다.




 


*php 5.X --with-mssql 오류시 해결 방안 

 

php 5.X에서 mssql연동을 위해 freetds를 설치할 경우에  php configure에 --with-mssql=/usr/local/freetds로 주었을때 해당 경로에 설치가 되어있음에도 불구하고 해당 경로에 설치가 되어있지 않다고 나오는 경우가 발생합니다.


에러 메세지

error Directory /usr/local/freetds is not a FreeTDS installation directory


해당 문제는 tds.h, libtds.a가 해당 설치경로에 있지 않아 설치되어 있는데도 설치되어 있지 않은것으로 인식되는 문제로 보입니다.


아래와 같이 해당 파일들을 경로로 복사해 주면 문제가 해결 됩니다.


cp /usr/local/src/freetds-xxx/include/tds.h /usr/local/freetds/include

cp /usr/local/src/freetds-xxx/src/tds/.libs/libtds.a /usr/local/freetds/lib


위와 같이 한 후에 make 과정중에 sysbase 오류가 발생한다면 configure 시에 --with-mssql과 --with-sybase를 같이 넣어 줍니다.



[PHP와 MS-SQL연동을 위해 odbc를 이용한 방법 - 오래된메뉴얼]

http://cafe.naver.com/webmas.cafe?iframe_url=/ArticleRead.nhn%3Farticleid=1000






*php - mssql 연동 테스트 소스


putenv("TDSVER=80");    <- 이거는 사용하지마시고 혹시 mssql 2008 이나 연결이 안될경우 추가해보세요.

$hostname = "";

$username = "";

$password = "";

$connection = mssql_connect($hostname,$username,$password)

or die("데이타 베이스에 연결 할수 없습니다.");

print ("데이타 베이스에 연결되었습니다.");

mssql_close($connection);

print ("데이타 베이스의 연결이 해지 되었습니다.");

?>




출처 http://sosnote.com/search/freetds


'리눅스' 카테고리의 다른 글

파일시스템 오류 give root password for maintenance  (0) 2015.04.20
ssl 인증서 갱신  (0) 2015.04.20
HDD 파티션, 마운트, 포멧  (0) 2015.04.15
configure 옵션 확인  (0) 2015.04.15
우분투 싱글모드 접속  (0) 2015.04.14
Posted by Narusika
,

파일시스템


-window - NTFS

-linux - ext

         5.X - ext3

         6.X, 7.X - ext4

-리눅스 버전정보 확인 - rpm -qa *-release




-HDD 추가


#fdisk -l


Disk /dev/sda: 128.0 GB, 128035676160 bytes

255 heads, 63 sectors/track, 15566 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes


   Device Boot      Start         End      Blocks   Id  System

/dev/sda1   *           1          64      514048+  83  Linux

/dev/sda2              65         586     4192965   82  Linux swap / Solaris

/dev/sda3             587       15566   120326850   83  Linux


WARNING: The size of this disk is 8.0 TB (7999955402752 bytes).

DOS partition table format can not be used on drives for volumes

larger than 2.2 TB (2199023255040 bytes). Use parted(1) and GUID

partition table format (GPT).



Disk /dev/sdb: 7999.9 GB, 7999955402752 bytes

255 heads, 63 sectors/track, 972605 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes





-파티션 생성


#fdisk /dev/sdb



Command (m for help): n

Command action

   e   extended

   p   primary partition (1-4)

p

Partition number (1-4): 1

First cylinder (1-972605, default 1): 1

Last cylinder or +size or +sizeM or +sizeK (1-267349, default 267349):

Using default value 267349

Command (m for help): w

The partition table has been altered!


Calling ioctl() to re-read partition table.


WARNING: Re-reading the partition table failed with error 16: ▒▒ġ▒▒ ▒ڿ▒▒▒ ▒▒▒▒ ▒▒.

The kernel still uses the old table.

The new table will be used at the next reboot.

Syncing disks.





-포멧


#mkfs.ext3 /dev/sdb


작업 확인


#disk -l


Disk /dev/sda: 128.0 GB, 128035676160 bytes

255 heads, 63 sectors/track, 15566 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes


   Device Boot      Start         End      Blocks   Id  System

/dev/sda1   *           1          64      514048+  83  Linux

/dev/sda2              65         586     4192965   82  Linux swap / Solaris

/dev/sda3             587       15566   120326850   83  Linux


WARNING: The size of this disk is 8.0 TB (7999955402752 bytes).

DOS partition table format can not be used on drives for volumes

larger than 2.2 TB (2199023255040 bytes). Use parted(1) and GUID

partition table format (GPT).



Disk /dev/sdb: 7999.9 GB, 7999955402752 bytes

255 heads, 63 sectors/track, 972605 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes


   Device Boot      Start         End      Blocks   Id  System

/dev/sdb1               1      267349  2147480811   83  Linux





-마운트


#mount /dev/sdb1 /data


-부팅시 마운트 정보 입력

#vi /etc/fatab


#/dev/sdb1  /data      ext3    defaults    1 2


맨아래 추가



-리마운트


mount -o remount r,w /

vi /etc/fstab









'리눅스' 카테고리의 다른 글

ssl 인증서 갱신  (0) 2015.04.20
freetds 설치  (0) 2015.04.15
configure 옵션 확인  (0) 2015.04.15
우분투 싱글모드 접속  (0) 2015.04.14
raid 구성  (0) 2015.04.13
Posted by Narusika
,

configure 옵션 확인

리눅스 2015. 4. 15. 11:34


아파치 폴더에 config.nice  


./build 에 있다   


열어보면 configure 옵션이 들어있다.

각 소스 폴더에 들어가면 

apache   cofnig.log

mysql     config.status

php         config.log






'리눅스' 카테고리의 다른 글

freetds 설치  (0) 2015.04.15
HDD 파티션, 마운트, 포멧  (0) 2015.04.15
우분투 싱글모드 접속  (0) 2015.04.14
raid 구성  (0) 2015.04.13
ftp user 폴더변경 접속제한 사용권한  (0) 2015.04.13
Posted by Narusika
,