아파치
리눅스
PHP
python
javascript
영어
여행
MS-SQL
맛집
안드로이드
태양광
mysql
로그인
회원가입
아이디/비번 찾기
여행
윈도우서버
아이폰
자유게시판
포토자료실
phptip
mysql
리눅스
아파치
자료실
자바스크립트
C
편집
2026.02.09 [17:47]
운영자
(
651
건)
박스형
요약형
Creating sort index mariadb
Creating sort indexselect id,title from section='aa' order by wdate DESC시 발생기존 index는alter table aaa_news add index u_idx11(section,wdate); 아래와 같이 변경 후 Creating sort index 발생 없어짐alte...
2025.06.11 11:25
운영자
Active 모드 방화벽 주의사항
로키리눅스 9 에서 ftp 접속하면 passvie 입력해야 하는데firewall 에 추가 해야 주어야 한다.Active 모드 방화벽 주의사항sudo firewall-cmd --permanent --add-service=ftpsudo firewall-cmd --r...
2025.06.07 14:20
운영자
세계 어린이날, 나라마다 다른 날짜와 의미
매년 어린이들의 건강과 행복을 기원하는 어린이날은 전 세계 다양한 나라에서 기념되고 있다. 그러나 그 날짜와 방식은 나라마다 다르며, 각기 다른 역사와 문화적 배...
2025.06.02 10:55
운영자
리눅스 find 명령서 예제
find ./ -type f -size +2M2M이상 파일만 찾아라find . -type f -size +2M | grep banner2M 이상 파일만 찾아서 그중 banner 가 들어간것만 출력해 예: /home 에서 aaa.txt 찾기find /home -name "...
2025.05.28 11:12
운영자
PHP 5용 WebP 크기 추출 함수
...
2025.05.27 12:29
운영자
사용가능한 chatgpt 모델 확인
from openai import OpenAIclient = OpenAI(api_key="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&...
2025.05.20 17:51
운영자
"role": "system" "role": "user" 의 차이점은
[ { "role": "system", "content": "당신은 친절하고 정중한 도우미입니다." }, { "role": "user", "content": "오늘 날씨 어때...
2025.05.15 15:22
운영자
MI-5200 도어록
MI-5200 도어록비밀번호 변경실내 건전지 덮개를 연후 REG 버튼을 누른후등록할 비밀번호 4-12자리 이내로 누룬 후 * 등록을 마치라면 다시 *AA 건전지 4개 들어감...
2025.05.08 12:30
운영자
진행중
<style>#overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); z-index: 9999;}.spinner { position: absolute; top: 50%; left: 50%; transform: translate(...
2025.04.15 17:58
운영자
rokey9 업데이트 후 ssh 접속 안될 때
rokey9Unable to negotiate with 192.168.0.1 port 22: no matching host key type found. Their offer: ssh-rsa,ssh-dsscat /root/.ssh/configHost *HostKeyAlgorithms +ssh-rsaPubkeyAcceptedKeyTypes +ssh-rsaConnection to 192.168.0...
2025.04.15 10:26
운영자
로키 리눅스 libmemcached
dnf --enablerepo=crb install libmemcached-awesome libmemcached-awesome-tools libmemcached-awesome-devel -y...
2025.04.03 14:55
운영자
엘라스틱 index 변경
{ "settings": { "number_of_shards": 1, "number_of_replicas": 1 }, "mappings": { "properties" : { "wdate" : {"type":"integer"}, ...
2025.04.01 10:01
운영자
firewall-cmd --list-all
firewall-cmd --list-allvi /usr/lib/firewalld/services/ssh.xmlRH-Satellite-6 RH-Satellite-6-capsule afp amanda-client amanda-k5-client amqp amqps apcupsd audit ausweisapp2 bacula bacula-client bareos-director bareos-filed...
2025.03.31 18:11
운영자
한달전 날짜 구하기 php strtotime
$m_date = strtotime("-60 day",time()); # 60일전 $m_date = strtotime("-30 day",time()); # 30일전 $m_date = strtotime("-3 month",time()); # 3달전$m_date = strtotime("-1 year",t...
2025.03.18 17:57
운영자
roykey9 ffpmeg
dnf -y install --nogpgcheck https://mirrors.rpmfusion.org/free/el/rpmfusion-free-release-9.noarch.rpmdnf config-manager --set-enabled crbdnf -y install ffmpeg...
2025.03.14 18:07
운영자
ansible
yum install -y ansiblessh-keygenssh-copy-id [원격서버계정ID]@[원격서버IP]ssh-copy-id root@192.168.0.100/etc/ansible/hosts에 추가ansible all -m ping로 확인ansible all -m shell -a "ipr 192.168.0.1"...
2025.03.14 15:41
운영자
sql injection 시도 예
[09/Mar/2025:13:29:40 +0900] "GET /aaa.php?uid=681'XOR(if(LENGTH(LENGTH(DATABASE()))=1,SLEEP(2),0))XOR'Z====================================================...
2025.03.11 12:11
운영자
sub_filter_once off; nginx
server { listen 192.168.85.1:80; server_name server-talk.com; root /home/aaa/public_html; access_log /usr/local/nginx/logs/aaa.com.access.log; error_log /usr/local/nginx/logs/aaa.com.error.lo...
2025.03.09 15:47
운영자
post json fetch javasript
<script>async function postJSON(data) { try { const response = await fetch("/php_bin/aaa.php", { method: "POST", headers: { "Content-Type": "application/json", }, ...
2025.03.06 12:13
운영자
php curl 다운로드
function download_file_curl($url, $local_path) { $fp = fopen($local_path, 'w'); $ch = curl_init($url); curl_setopt($ch, CURLOPT_FILE, $fp); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); curl_setopt($ch, CURLOPT_SS...
2025.02.24 17:06
운영자
더보기 (611)
1
2
3
4
5
6
7
8
9
10
33
전송
여러단어검색
전체검색
섹션전체
최근날짜부터
많이 본 기사
1
Bank Routing Number 026013343, Kookmin Bank 국민은행
2
미아트 몽골 항공 지사 전화 번호 주소
3
"role": "system" "role": "user" 의 차이점은
4
0216882688 / 02-1688-2688 흥국화재 자동차 보험
5
centos ifconfig route rpm net-tools
6
일반 전화 착신 음성 메세지 확인 방법
7
robots.txt 차단해야 할 봇 bot drop
8
mysql 설치시 에러
9
php array 키값 지정해서 배열 추가
10
Waiting for table level lock 마리아 디비 mariadb
최신기사
엘라스틱 이름 검색 안됨
access_log
$_SESSION['last_activity']
Amzn-SearchBot 차단 ip 목록
nginx aaa.com www.aaa.com 2개 ssl 인증서 적용되게