'Apache'에 해당되는 글 2건

  1. 2014.03.07 apache에서 mp4 스트리밍하기
  2. 2013.06.07 SSL 인증서 비밀번호 제거하는 방법
Linux2014. 3. 7. 14:08



##### APM 컴파일 설치시  #####

cd /usr/local/src
wget http://h264.code-shop.com/download/apache_mod_h264_streaming-2.2.7.tar.gz
tar -zxvf apache_mod_h264_streaming-2.2.7.tar.gz
cd mod_h264_streaming-2.2.7
./configure --with-apxs='/usr/local/apache/bin/apxs'
make
make install

# so파일 있는지 확인
ll /usr/local/apache/modules/mod_h264_streaming.so

 

# httpd.conf 파일 수정 #
LoadModule h264_streaming_module modules/mod_h264_streaming.so
AddHandler h264-streaming.extensions .mp4

 

 

 

##### APM rpm 설치시 #####
cd /usr/local/src
wget http://h264.code-shop.com/download/apache_mod_h264_streaming-2.2.7.tar.gz
tar -zxvf apache_mod_h264_streaming-2.2.7.tar.gz
cd mod_h264_streaming-2.2.7
find / -name "*apxs*"
./configure --with-apxs='/usr/sbin/apxs'
make
make install
# so파일 있는지 확인
ll /etc/httpd/modules/mod_h264_streaming.so


# httpd.conf 파일 수정 #
LoadModule h264_streaming_module modules/mod_h264_streaming.so
AddHandler h264-streaming.extensions .mp4

'Linux' 카테고리의 다른 글

CentOS7 minimal 설치 후 초기 설정  (0) 2015.12.10
NSF 설치 및 설정  (0) 2015.06.24
SSL 인증서 비밀번호 제거하는 방법  (0) 2013.06.07
PHP5 설치  (0) 2010.10.28
아파치 설치  (0) 2010.10.28
Posted by requireme
Linux2013. 6. 7. 16:20


SSL 인증서 키에 비밀번호가 걸려있을때 비밀번호를 제거하는 방법.

 

~]# openssl rsa -in ssl.key -out ssl_nopass.key

     Enter pass phrase for ssl.key: 비밀번호 입력

 


반대로 비밀번호 없는 인증서 키에 비밀번호 거는방법

~]# openssl rsa -in ssl_nopass.key -passout pass:'password123' -out ssl.key -des3



 

끝.

 

 

'Linux' 카테고리의 다른 글

NSF 설치 및 설정  (0) 2015.06.24
apache에서 mp4 스트리밍하기  (0) 2014.03.07
PHP5 설치  (0) 2010.10.28
아파치 설치  (0) 2010.10.28
[Mysql] characterset이 euckr인 mysql 서버에서 utf8 Database 생성하기  (0) 2010.10.28
Posted by requireme