반응형 DB,서버,OS 등28 [linux] Bash Script 로 hosts 등록하기 아래와 같이 manage-etc-hosts.sh 를 생성하여 작성하고 #!/bin/sh # PATH TO YOUR HOSTS FILE ETC_HOSTS=/etc/hosts # Hostname to add/remove. HOSTNAME=$1 # IP FOR HOSTNAME IP=$2 function removehost() { if [ -n "$(grep $HOSTNAME /etc/hosts)" ] then echo "$HOSTNAME Found in your $ETC_HOSTS, Removing now..."; sudo sed -i".bak" "/$HOSTNAME/d" $ETC_HOSTS else echo "$HOSTNAME was not found in your $ETC_HOSTS"; fi } funct.. 2021. 9. 6. [MySQL] Safe mode 해제 하는 방법 MySQL Safe mode Safe mode update 또는 delete 할 때 where 절이 없거나 where 절에 key column 외의 비교문일 때, 쉽게말해 한번에 여러 row 를 업데이트할 때, 막아두는게 Safe mode On 입니다. 예를들어 아래와 같은 쿼리겠죠. tb_user 라는 테이블의 key 는 userId 라고 했을 때 update tb_user set userName = ''; delete from tb_user where age > 10; 오류 메시지는 아래와 같습니다. 16:58:03 delete FROM testdb.tb_user Error Code: 1175. You are using safe update mode and you tried to update a ta.. 2021. 1. 9. [Markdown] md 아이콘 사용하기 #markdown icon People colcolcol :bowtie: 😄 :smile: 😆 :laughing: 😊 :blush: 😃 :smiley: ☺️ :relaxed: 😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart: 😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved: 😆 :satisfied: 😁 :grin: 😉 :wink: 😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning: 😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue: 😴 :sleeping: 😟 :worried: 😦 :frowning: 😧 :anguished: 😮 .. 2021. 1. 9. [Apache] port 추가하기. httpd vHosts Apache24 Virtual Host(vHosts) 설정 보통 8080 으로 쓰는데, 다른 포트를 추가하고 소스 디렉토리 설정 하는 방법입니다. Apache 설정에서 vhosts conf 주석 해제하기. {apache_home}/conf/httpd.conf 를 열어서 vhosts.conf 로 검색합니다. 아래 그림처럼 주석을 해제합니다. Listen 부분을 찾아서 추가할 port 를 추가해줍니다. 8080은 기본으로 되어있었고 8090 을 추가하는 예제입니다. {apache_home}/conf/extra/httpd-vhosts.conf 파일 수정 기본 예제로 입력되어있는 설정은 주석 치시고, 사용할 설정을 입력합니다. # Virtual Hosts # # Required modules: mod_log_c.. 2020. 12. 23. Windows MySQL 5 .x 설치 Windows MySQL 설치 downloads.mysql.com/archives/installer/ MySQL :: Download MySQL Installer (Archived Versions) Please note that these are old versions. New releases will have recent bug fixes and features! To download the latest release of MySQL Installer, please visit MySQL Downloads. MySQL open source software is provided under the GPL License. downloads.mysql.com 5.x 버전을 설치해야하면 버전을 맞게 선택합니다. .. 2020. 12. 12. [apache] Windows에 apache2.4 설치 + php7 연동 Apache2.4 + php7 Apache2.4 설치 www.apachelounge.com/download/ Apache VS16 binaries and modules download www.apachelounge.com x64, x32 중 본인 pc에 맞는 버전을 다운로드 합니다. C:\apache24 에 압축을 풉니다. cmd 를 관리자로 실행합니다. C:\apache24\bin 폴더로 이동해서 아래 명령어로 설치를 합니다. httpd.exe -k install Power Shell 인 경우에는 C:\Apache24\bin>.\httpd.exe -k install 윈도우 시작 > service 입력해서 서비스를 실행한 다음. Apache24를 찾아서 "시작"을 누릅니다. 정상적으로 시작이 됐네요. P.. 2020. 12. 10. [Apache] Windows Tomcat 설치 : Tomcat 9 Windows 에 Tomcat 설치 Tomcat 9 윈도우에서는 편하게 Tomcat 을 설치할 수 있습니다. 설치 파일로 다운로드 아래 링크로 이동합니다. tomcat.apache.org/ Apache Tomcat® - Welcome! The Apache Tomcat® software is an open source implementation of the Java Servlet, JavaServer Pages, Java Expression Language and Java WebSocket technologies. The Java Servlet, JavaServer Pages, Java Expression Language and Java WebSocket specifications ar tomcat.apa.. 2020. 12. 9. [Cafe24] FTP접속 오류. PWD 550: Permission denied 해결 Cafe24 FTP PWD 550 Permission denied Cafe24 에 FTP 로 접속할 일이 생겼습니다. 접속 정보는 맞는데 550 에러가 나더라고요. 구글링 해봐도 해결이 안되서, cafe24 에 1:1 문의를 남겨두고... 방화벽인가... 하면서 카페24 관리자 페이지를 뒤적거리는데, FTP/Shell 접속설정 메뉴를 들어가보니 똭!!! 특정 IP 에서만 접속 허용을 사용중이었고, FTP 접속 정보만 전달 받은 저는 접속이 안되고 550 에러만 나던거였습니다. 내 ip 를 추가하고 적용을 하니 바로 접속 되더랍니다. (참고) cafe24 ftp 는 passive mode 입니다. 2020. 11. 3. [tools] VS Code. Visual Studio Code 설치. FTP 설정 VS CODE Visual Studio Code 아래 사이트 접속해서 다운로드. 설치 하면 됩니다. code.visualstudio.com/ Visual Studio Code - Code Editing. Redefined Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications. Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows. code.visualstudio.com 설치 후 실행 화면 확장에서 ftp-simple 을 검색하고 .. 2020. 11. 2. [ffmpeg] n초의 빈 mp3 파일 생성 아무 소리 없는 mp3 파일 생성하는 명령어 ffmpeg -f lavfi -i anullsrc=r=44100:cl=mono -t -q:a 9 -acodec libmp3lame out.mp3 에 초(숫자)를 입력하면 됩니다. 저는 mp3 를 concat 할때 중간에 term을 두려고 만들었습니다. crossfade 등이 있지만 명령어가 길어져서 차라리 저런 empty mp3 file 하나 만들고 사이사이에 계속 껴주게 하면 쉽죠. 2020. 10. 13. 이전 1 2 3 다음 728x90 반응형