Posts

Showing posts from 2022

몽고DB에 새 DB만들고 새계정 등록하기 / How to create new DB of mongoDB and how to create account for that DB

 1. mongoDB에 접속 mongo -u mongodbadmin -p password > use newDB > db.createUser({ user: "newdbuser", pwd: "password", roles: [ "readWrite" ] }) Successfully added user: { "user" : "pusangpruser", "roles" : [ "readWrite" ] } > db.createUser({ user: "newdbadmin", pwd: "password", roles: [ "dbAdmin" ] }) Successfully added user: { "user" : "pusangpradmin", "roles" : [ "dbAdmin" ] } 후에 mongodb url로 접속 mongodb://newdbuser:password@127.0.0.1:27017/newDB

Windows 11 to log in using local account not Microsoft account/윈도11 마이크로소프트 계정 로그인 안하는법

Image
 요즘 컴퓨터 윈도우 11 로그인이 로컬계정이 안된다길래 확인해보니,  마이크로소프트 계정 로그인전에 네트워크를 끊으면 된다고 하네요.  SHIFT+F10으로 시도를 해봤으나 잘 안되서 저는  WIFI잡고 설정 다한후에, 걍 WIN+R 누르고 ipconfig /release 를 입력하고 엔터를 누르니,  바로 로컬계정으로 설정가능하네요.  걍 이메일에 abc 암호에 123 눌러도 됨.  Recently,  I got Windows 11 tablet and tried to set up local account.  But, there are lots of ways to make local account log-in.  So, I connect Windows 11 tablet to my Wifi and when I got into microsoft log-in page,  Coneect USB keyboard(USB A to USB-C converter) and press WIN+R, then type ipconfig /release to disconnect all network.  So, now I can get local account log-in page.  Or just type abc in email and 123 for password.  Then it will be changed to local account.   

docker로 osm tile server실행하기 팁(한글폰트 수정)

1. docker exec -it [container-id] bash 로 실행 중인 docker 컨테이너에 접속 2. nano /home/renderer/src/opnstreetmap-carto/mapnik.xml 로 수정 준비 참고로 없을 경우, apt-get install nano로 실행해서 설치해준다.  3. CTRL+\ 를 눌러서 단어 바꾸기 실행 JP -> KR로 수정 후 저장 4. nan o  / usr /local/ etc / renderd.conf font_dir가 /usr/share/fonts 로 수정. (truetype에는 NOTO-SANS KR이 없음. ) docker run -p 8080:80 -v openstreetmap-data:/var/lib/postgresql/12/main -d sanghkim/openstreetmap-tile-server:latest run 로 실행 중. 그런데 해보니, image를 commit명령으로 새로 저장해줘야. 위에 수정된 게 저장됨.  실행 중에 빠져 나와서 docker commit  openstreetmap-tile-server openstreetmap-tile-server 혹은 docker ps 로 container ID를 얻은 후에 docker commit [containerID] openstreetmap-tile-server 로 저장해준다. 나중에 이거를 클라우드에 업로드 해도 되고, 기존대로 저장한걸 써도 된다.  

centos7 sshd 접속안될때 ssh서버 ssh server

Recently, I installed sshd on centos7.  But somehow, sshd is working okay but sometimes cannot connect ssh server.  Company use static IP address for this centos server.  As I spent 3 days for trying every methods, I finally get REAL cause why this happens.  It was IP address conflict.  As IP address conflict happens, centos7 is not connected to internet.  Anyway, I assign static different IP address, it works like a charm. If you got an error to connect ssh server, make sure server IP address is conflicted or not.  Have a nice server administrations!!! ------------------------------------------------- 최근에 CENTOS7 서버에 SSH서버(SSHD)를 설치했는데, 어느날은 접속이 되고, 어느날은 접속이 안되는 현상 발견.  3일간의 헛짓 이후 알아낸건 IP주소 충돌이었다.  알고보니, CENTOS7이 IP충돌이 발생하는데, 인터넷이 연결안되는거 외에는 현상이 없음.  결국은 새로운 IP설정하는 잘 되더라구요.  그럼 서버관리들 잘하시길.. 

DELL Latitude 5420 Rugged Intel 8265 Wifi + BT4.2 설치 실패기

Image
최근에 러기드 랩탑에 관심이 많아서 델 5420 rugged를 구매.  BT키보드랑 마우스가 안붙길래 봤더니, Wifi옵션중에 Intel 8265 no BT가 설치된건가 확인해서 이베이에서 Intel ac 8265 ngw (wifi + BT4.2)를 2개 구입. 설치하였으나, 안됨.  어 이상하네,  왜 BIOS에서 부터 안될까 고민고민 하다가.  구글링... intel 8265 BT activation how to dell intel 8265 bluetooth not working... dell intel 8265 bluetooth activation... .... 혹시나  intel 8265ngw dell bios not activated 로 찾아보니  DELL공식 답변은 특정 IO를 펌웨어 단에서 막았음. 즐 이건 마더보드 교체때까지 안됨. (메롱~ 그러게 주문 잘 하지)  -_- 이건 뭔 개소리. #WTF #DELL #주문에옵션이있으면나중에교체가능한줄알지그걸마더보드에서막을꺼라고누가생각하냐 그냥 USB BT하나 사서 달기로. 이게 무슨 개소리야 https://www.dell.com/community/Latitude/Latitude-7480-Bluetooth/m-p/5894323#M1339 -----------------------------------------