에러메시지도 없다. 그냥 안된다.
확인 결과는 ssh 로 접속 할 때 아래처럼 에러메시지가 나오는 데, 그냥 무시하고 사용하고
있었다.
-bash: /usr/etc/jfbterm_profile: 그런 파일이나 디렉토리가 없음
ssh 는 에러메시지가 나와도 제대로 접속이 되지만, sftp 는 에러메시지가 나오면 제대로 되
지 않는다.
-bash: /usr/etc/jfbterm_profile: 그런 파일이나 디렉토리가 없음
./apachectl startssl
vim /usr/bin/apachectl ... case $ARGV in start) $HTTPD -k start -DSSL ERROR=$? ;; stop|restart|graceful) $HTTPD -k $ARGV ERROR=$? ;; startssl|sslstart|start-SSL) $HTTPD -k start -DSSL ERROR=$? ;; configtest) $HTTPD -t ERROR=$? ...
(GLOBAL_DBNAME = XE)
SID_LIST_LISTENER =
(SID_LIST =
(SID_DESC =
(SID_NAME = PLSExtProc)
(ORACLE_HOME = C:\oraclexe\app\oracle\product\11.2.0\server)
(PROGRAM = extproc)
)
(SID_DESC =
(SID_NAME = CLRExtProc)
(ORACLE_HOME = C:\oraclexe\app\oracle\product\11.2.0\server)
(PROGRAM = extproc)
)
(SID_DESC =
(GLOBAL_DBNAME = XE)
(SID_NAME = XE)
(ORACLE_HOME = C:\oraclexe\app\oracle\product\11.2.0\server)
)
)
LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
(ADDRESS = (PROTOCOL = TCP)(HOST = xxx.xxx.xxx.xxx)(PORT = 1521))
)
)
DEFAULT_SERVICE_LISTENER = (XE)
ActiveRecord::StatementInvalid (Mysql2::Error: Table 'bitnami_redmine.settings' doesn't exist: SHOW FULL FIELDS FROM `settings`): app/models/setting.rb:226:in `check_cache' app/controllers/application_controller.rb:98:in `user_setup'
rake aborted! D:/Bitnami/redmine-2.5.2-1/apps/redmine/htdocs/db/migrate/001_setup.rb:291: inva lid multibyte char (UTF-8) D:/Bitnami/redmine-2.5.2-1/apps/redmine/htdocs/db/migrate/001_setup.rb:291: inva lid multibyte char (UTF-8) D:/Bitnami/redmine-2.5.2-1/apps/redmine/htdocs/db/migrate/001_setup.rb:291: synt ax error, unexpected end-of-input, expecting keyword_end :firstname => "
This is an automatically generated Delivery Status Notification THIS IS A WARNING MESSAGE ONLY. YOU DO NOT NEED TO RESEND YOUR MESSAGE. Delivery to the following recipient has been delayed: test@test.com Message will be retried for 2 more day(s) Technical details of temporary failure: Google tried to deliver your message, but it was rejected by the server for the recipient domain xxxxxxxxxxxxxx. [xxx.xxx.xxx]. The error that the other server returned was: 454 TLS missing certificate: error:0200100D:system library:fopen:Permission denied (#4.3.0) ----- Original message ----- DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; ...
이것은 받는 메일서버에 tls 세팅이 제대로 되지 않은경우이다. qmail 의 경우 아래와 같이 해결한다. 1. 모듈확인 #ldd /var/qmail/bin/qmail-smtpd (명령으로 ssl 모듈이 추가되어 있는지 확인후 ) 2. 키를 생성한다. #openssl req -newkey rsa:1024 -x509 -nodes -days 3650 -out /var/qmail/control/servercert.pem -keyout /var/qmail/control/servercert.pem 키 생성시 Common Name 은 도메인명을 정확히 기록한다. #위의 명령어 실행시 나오는 내용 Country Name (2 letter code) [GB]:KR State or Province Name (full name) [Berkshire]:Seoul Locality Name (eg, city) [Newbury]:Jungu Organization Name (eg, company) [My Company Ltd]:Company Organizational Unit Name (eg, section) []:QnA Team Common Name (eg, your name or your server's hostname) []:서버의 설정된 도메인 명. Email Address []:관리자 이메일 3. 권한변경 #chmod 640 /var/qmail/control/servercert.pem 4. 소유자/그룹변경 #chown vpopmail.vchkpw /var/qmail/control/servercert.pem => 혹은 (qmaild.qmail) 5. 복사 #ln -s /var/qmail/control/servercert.pem /var/qmail/control/clientcert.pem 6. ciphers 만들어주기... #openssl ciphers > /var/qmail/control/tlsclientciphers #openssl ciphers > /var/qmail/control/tlsserverciphers pem 파일 내용 확인은 아래와 같다. #openssl x509 -text -noout -in servercert.pem 메일서버를 테스트는... #openssl s_client -crlf -starttls smtp -connect localhost:25 에러 없으면 된다... 아래도 해보자. #telnet localhost 25 ehlo localhost starttls
#/bin/sh TotalMem=`free -m | grep Mem: | awk {'print $2'}` TotalMem80per=$(echo "$TotalMem*0.8"|bc) #pa aux 의 6번째 값이 RSS 인데, 이 값을 가져옴. TotalHttpMem=`ps aux | grep httpd | grep -v grep | awk '{print $6}' | awk '{total = total + $1} END {print total/1024}'` httpCount=`ps aux | grep httpd | grep -v grep | wc -l` averageHttpMem=$(echo "$TotalHttpMem / $httpCount" | bc) MaxClient=$(echo "$TotalMem80per / $averageHttpMem" | bc) echo "총 메모리 : " $TotalMem echo "총 메모리의 80% : " $TotalMem80per echo "http use mem total : "$TotalHttpMem echo "http process count : "$httpCount echo "http use mem average : "$averageHttpMem echo "MaxClients " $MaxClient
if [ $checkTmp = 'y' ]
TotalMem=`free -m | grep Mem: | awk {'print $2'}`