'2019/02/13'에 해당되는 글 12건

  1. 2019.02.13 smb on centos
  2. 2019.02.13 centos backup
  3. 2019.02.13 centos epel 저장소 추가
  4. 2019.02.13 R730 RAID5 성능 테스트(?)
  5. 2019.02.13 squid 비디오 차단
  6. 2019.02.13 squid 윈도우 업데이트 캐싱
  7. 2019.02.13 squid cache 정책
  8. 2019.02.13 squid log format
  9. 2019.02.13 idrac virtual console
  10. 2019.02.13 dell quick sync
Linux/centos2019. 2. 13. 19:08

오늘도 여전히(?) selinux가 날 잡는군 -_-


[링크 : https://wiki.centos.org/HowTos/SetUpSamba]

[링크 : https://www.lesstif.com/pages/viewpage.action?pageId=18219476]


firewall-cmd --permanent --zone=public --add-service=samba

firewall-cmd --reload 

[링크 : https://www.manualfactory.net/10439] 방화벽

[링크 : https://www.manualfactory.net/10153]

'Linux > centos' 카테고리의 다른 글

centos timezone 변경  (2) 2019.02.23
svn on centos  (0) 2019.02.22
centos backup  (0) 2019.02.13
centos epel 저장소 추가  (0) 2019.02.13
KVM spice 원격 접속시 No route to host  (0) 2019.01.28
Posted by 구차니
Linux/centos2019. 2. 13. 17:34

'Linux > centos' 카테고리의 다른 글

svn on centos  (0) 2019.02.22
smb on centos  (0) 2019.02.13
centos epel 저장소 추가  (0) 2019.02.13
KVM spice 원격 접속시 No route to host  (0) 2019.01.28
yum checkupdate  (0) 2019.01.25
Posted by 구차니
Linux/centos2019. 2. 13. 17:13

귀찮구먼...


-------------- For RHEL/CentOS 7 --------------

# wget dl.fedoraproject.org/pub/epel/7/x86_64/Packages/e/epel-release-7-11.noarch.rpm

# rpm -ihv epel-release-7-11.noarch.rpm  

[링크 : http://wget dl.fedoraproject.org/pub/epel/7/x86_64/Packages/e/epel-release-7-11.noarch.rpm]


+

2019.04.22

위에거는 복잡하니 아래것만 외우자? ㅋ

$ sudo yum -y install epel-release 

[링크 : http://cheapwindowsvps.com/blog/how-to-install-htop-on-centos-7/]

'Linux > centos' 카테고리의 다른 글

smb on centos  (0) 2019.02.13
centos backup  (0) 2019.02.13
KVM spice 원격 접속시 No route to host  (0) 2019.01.28
yum checkupdate  (0) 2019.01.25
centos 서비스 등록하기  (0) 2018.12.03
Posted by 구차니
하드웨어/RAID2019. 2. 13. 17:00

10K SAS RAID5 구성한 녀석(PERC H730P mini 였나? + 1G cache)

의외로 성능이 잘 나온다고 해야하려나? 아무튼 몇번에 대해서는 순간 1GB/s 나오는거 보고 깜놀


[root@localhost home]# dd if=/dev/zero of=/home/testfile bs=1G count=1 oflag=direct

1073741824 bytes (1.1 GB) copied, 0.968236 s, 1.1 GB/s


[root@localhost home]# dd if=/dev/zero of=/home/testfile bs=1M count=1024 oflag=direct

1073741824 bytes (1.1 GB) copied, 0.877165 s, 1.2 GB/s

1073741824 bytes (1.1 GB) copied, 1.67205 s, 642 MB/s

1073741824 bytes (1.1 GB) copied, 1.64823 s, 651 MB/s

1073741824 bytes (1.1 GB) copied, 1.70338 s, 630 MB/s

1073741824 bytes (1.1 GB) copied, 1.67719 s, 640 MB/s


[root@localhost home]# dd if=/dev/zero of=/home/testfile bs=1G count=1 oflag=direct

1073741824 bytes (1.1 GB) copied, 0.981585 s, 1.1 GB/s

1073741824 bytes (1.1 GB) copied, 1.86161 s, 577 MB/s

1073741824 bytes (1.1 GB) copied, 1.83748 s, 584 MB/s


[root@localhost home]# dd if=/dev/zero of=/home/testfile bs=512 count=1024 oflag=direct

524288 bytes (524 kB) copied, 0.0448593 s, 11.7 MB/s

524288 bytes (524 kB) copied, 0.0444185 s, 11.8 MB/s

524288 bytes (524 kB) copied, 0.0448892 s, 11.7 MB/s


[root@localhost home]# dd if=/dev/zero of=/home/testfile bs=512 count=102400 oflag=direct

5242880 bytes (5.2 MB) copied, 0.359296 s, 14.6 MB/s


[root@localhost home]# dd if=/dev/zero of=/home/testfile bs=4096 count=102400 oflag=direct

52428800 bytes (52 MB) copied, 2.87847 s, 18.2 MB/s


[root@localhost home]# dd if=/dev/zero of=/home/testfile bs=4096 count=102400 oflag=direct
419430400 bytes (419 MB) copied, 3.62074 s, 116 MB/s
419430400 bytes (419 MB) copied, 3.60996 s, 116 MB/s


[링크 : https://www.thomas-krenn.com/en/wiki/Linux_I/O_Performance_Tests_using_dd]

'하드웨어 > RAID' 카테고리의 다른 글

RAID 1+0 구성과 span  (0) 2019.02.19
R730 PERC RAID-0 vs RAID-5  (0) 2019.02.15
PowerEdge RAID Controller - PERC  (0) 2019.02.12
512b vs 4k sector HDD (Advanced Format - AF)  (0) 2019.02.12
SAS  (0) 2013.11.12
Posted by 구차니
프로그램 사용/squid2019. 2. 13. 16:30

'프로그램 사용 > squid' 카테고리의 다른 글

mrtf centos  (0) 2019.02.14
squid cache hit rate 올리기  (0) 2019.02.14
squid 윈도우 업데이트 캐싱  (0) 2019.02.13
squid cache 정책  (0) 2019.02.13
squid log format  (0) 2019.02.13
Posted by 구차니
프로그램 사용/squid2019. 2. 13. 16:29

'프로그램 사용 > squid' 카테고리의 다른 글

squid cache hit rate 올리기  (0) 2019.02.14
squid 비디오 차단  (0) 2019.02.13
squid cache 정책  (0) 2019.02.13
squid log format  (0) 2019.02.13
squid refresh_pattern  (0) 2019.02.12
Posted by 구차니
프로그램 사용/squid2019. 2. 13. 16:26

'프로그램 사용 > squid' 카테고리의 다른 글

squid 비디오 차단  (0) 2019.02.13
squid 윈도우 업데이트 캐싱  (0) 2019.02.13
squid log format  (0) 2019.02.13
squid refresh_pattern  (0) 2019.02.12
squid cachemgr  (0) 2019.02.12
Posted by 구차니
프로그램 사용/squid2019. 2. 13. 13:59


[링크 : https://wiki.squid-cache.org/Features/LogFormat]

[링크 : http://www.squid-cache.org/Doc/config/logformat/]


+

2019.02.18


access log

[링크 : https://wiki.squid-cache.org/SquidFaq/SquidLogs#access.log]


(1) TCP_HIT, TCP_MEM_HIT

    요청한 컨텐츠가 캐시에 있어서 응답한 경우


(2) TCP_MISS

    요청한 컨텐츠가 캐시에 없어서 실제 서버로 요청을 하여 응답한 경우

    대부분 이미지 외 것에 해당한다.


(3) TCP_IMS_HIT

    클라이언트가 If-Modified-Since 필드를 요청 헤더에 보냈는데 HIT가 났다는 의미이다. 

    만약 결과 HTTP코드값이 '304 Not Modified'로 나왔다면 캐시는

    클라이언트로 컨텐츠를 보낼 필요없이 클라이언트 브라우저에 있는 컨텐츠를 사용한다는 의미이다.


(4) TCP_IMS_MISS 

    요청헤더에 If-Modified-Since 가 포함되어 있지만 캐시가 신선하지 않다고 판단되어 실제 서버로 재요청을 한 경우


(5) TCP_REFRESH_HIT 

    요청한 컨텐츠가 신선하지 않아 실제 서버로 요청했는데 '304 Not Modified'를 받아 캐시에서 클라이언트로 응답한 경우


(6) TCP_REFRESH_MISS 

    요청한 컨텐츠가 신선하지 않아 실제 서버로 요청했는데 

    서버에서 새로운 컨텐츠를 전송받아 캐시에 저장하고 다시 클라이언트로 응답


(7) TCP_CLIENT_REFRESH 

    클라이언트 요청 헤더에 'no_cache'를 포함한 경우


(8) TCP_CLIENT_REFRESH_MISS 

    클라이언트 요청에 'no-cache'나 'no-store'같은 캐시를 제어하는 필드를 포함하여서 

    캐시가 서버로부터 컨텐츠를 가져왔을때


(9) TCP_DENIED 

    클라이언트 요청이 캐시에 의해서 거절당했을 경우(컨텐츠필터링과 연관) 

[링크 : http://egloos.zum.com/darkit/v/221572]


* Matched If-None-Match requests are logged as TCP_INM_HIT (proposed by Amos)

* If-Modified-Since requests for modified cached objects are processed as normal HITs

* Not matched If-None-Match requests for cached objects are processed as normal HITs

* If-Modified-Since header is ignored if If-None-Match header exists (RFC7232 compliance) 

[링크 : http://lists.squid-cache.org/pipermail/squid-dev/2016-November/007315.html]

'프로그램 사용 > squid' 카테고리의 다른 글

squid 윈도우 업데이트 캐싱  (0) 2019.02.13
squid cache 정책  (0) 2019.02.13
squid refresh_pattern  (0) 2019.02.12
squid cachemgr  (0) 2019.02.12
howto make squid as https proxy  (0) 2019.02.11
Posted by 구차니

+

2019.02.14

조금 확인을 해보니.. 되는 놈은   Firmware Version 2.43.43.43

동일 모델인데 안되는 놈은        Firmware Version 2.10.10.10

이렇게 버전 차이가 난다. 구버전이면 짤없이 Native와 Java밖에 안된다.


----

idrac 기본은 Native인데 이걸로 하면 JNLP 어쩌구 깔면서 실행하라고 하는데 안된다.

그래서 한번 HTML5로 해보면 되겠지? 하고 했는데


처음에는 No Signal이래서 작동안하는 줄 알았는데



마우스 한번 움직여주니 의외로 느므느므 잘된다? (centos 7 설치 되었음)


Posted by 구차니

메뉴에서 본거 같은데 귀찮아서 패스하다가

서버 장비들 정리하고 제대로 꽂아놓을겸 하다 보니..

어라...? 서버 프론트 패널에 quick sync 라는게 있고 

잘 보니 FPCB로 서버랙 우측에 무언가 단자도 보여서 한번 프론트 패널을 꽂아보니 인식이 된다


요랬던 녀석이


요렇게 인식됨


그래서 머하는 녀석인가 찾아보는데..

단순(?)하게 NFC로 iDRAC의 정보를 넘기는 듯

[링크 : https://www.dell.com/learn/us/en/04/videos~en/documents~poweredge-idrac-quick-sync-nfc-bezel.aspx]

[링크 : https://vthing.wordpress.com/2017/02/06/dell-idrac-quick-sync-nfc-with-poweredge-r730/]


+

요거 깔고 NFC P2P 모드로 설정해두고 하면 잘 인식된다.

[링크 : https://play.google.com/store/apps/details?id=com.dell.omm]



+

요걸 centos에 깔면 idrac에서 os까지 제어가 가능해지는건가? ㄷㄷ

[링크 : https://www.dell.com/...?driverId=H4XF0&osCode=RHE70&productCode=poweredge-r730]

Posted by 구차니