읽지 않은 메일에 있길래 호기심에 눌러보았거늘 크롬이 차단해버리네 ㅠㅠ
'개소리 왈왈 > 블로그' 카테고리의 다른 글
도메인 또 1년 연장 (0) | 2019.06.03 |
---|---|
저작권 협상(?) 메일 (3) | 2019.03.25 |
간만에 해피빈 기부 (0) | 2019.03.08 |
별별 희한한 제약을 다 만들었네 -_- (4) | 2019.01.28 |
오랫만에 마음에 드는 티스토리 개편 (3) | 2018.10.10 |
읽지 않은 메일에 있길래 호기심에 눌러보았거늘 크롬이 차단해버리네 ㅠㅠ
도메인 또 1년 연장 (0) | 2019.06.03 |
---|---|
저작권 협상(?) 메일 (3) | 2019.03.25 |
간만에 해피빈 기부 (0) | 2019.03.08 |
별별 희한한 제약을 다 만들었네 -_- (4) | 2019.01.28 |
오랫만에 마음에 드는 티스토리 개편 (3) | 2018.10.10 |
설치
postgresql 은 client
postgresql-server 는 server
# yum install postgresql postgresql-server |
db 초기화
# service postgresql initdb |
(그냥 centos7 에서 이렇게 하니 Encoding이 SQL_ASCII로 Collate가 C로 된다.. 아놔..)
+
$ su -l postgres -c "initdb -E UTF8 --locale=ko_KR.UTF-8 --locale=en_US.utf8" |
설정 확인
# chkconfig postgresql on |
서비스 시작
# systemctl start postgresql |
[링크 : https://wiki.postgresql.org/wiki/YUM_Installation]
[링크 : https://www.lesstif.com/pages/viewpage.action?pageId=31850584]
사용자 생성 (암호 없이)
# sudo -i -u postgres # psql postgres=# create user [계정아이디] with password ''; postgres=# create database [데이터베이스 이름]; postgres=# \q # exit |
[링크 : https://www.lesstif.com/pages/viewpage.action?pageId=61899197]
[링크 : http://database.sarang.net/database/postgres/tutorial/lecture/x58.htm]
+
2019.06.18
sudo -u postgres psql postgres # \password postgres Enter new password: |
[링크 : https://serverfault.com/questions/110154/...]
암호 바꾸기
postgres=# ALTER USER postgres WITH PASSWORD ''; |
[링크 : https://stackoverflow.com/questions/5421807/set-blank-password-for-postgresql-user]
접속되지 않을 경우
connect to PostgreSQL server: FATAL: no pg_hba.conf entry for host
# vim /var/lib/pgsql/data/pg_hba.conf host all all ::1/128 trust host all postgres 127.0.0.1/32 trust |
# vim /var/lib/pgsql/data/pg_hba.conf listen_addresses = '*' |
[링크 : https://dba.stackexchange.com/.../connect-to-postgresql-server-fatal-no-pg-hba-conf-entry-for-host]
[링크 : https://sysops.tistory.com/8]
+
2019.06.18
서비스 재시작만으로는 포트가 안바뀌는 듯..(ubuntu 18.04) 그래서 완전히 재기동을 해야 하는 문제가 있었음
[링크 : https://blog.bigbinary.com/2016/01/23/configure-postgresql-to-allow-remote-connection.html]
+
2020.01.16
psql 상에서 현재 db의 locale을 확인할 수 있다.
# show LC_COLLATE;
postgresql WAL? (0) | 2019.03.14 |
---|---|
postgresql encoding / collate (0) | 2019.03.08 |
postgreSQL centos 패키지 (0) | 2019.02.01 |
postgreSQL 명령어 정리 (0) | 2019.02.01 |
psql - postgreSQL CLI client (0) | 2019.02.01 |
으으 얼마전에 검색하고 잊고 있던 단어인가...
망할(?) 10GbE NIC이 하나만 더 있었어도 고민을 안했을텐데..
4개 짜리 GbE만 서버에 꽂혀있어서 고민을 하는 중..
대개는 관리허브가 필요해서(L3) 못하는데 balance-alb 요건 허브없이 가능하지만
NIC에서 MAC을 변경할수있는 드라이버가 필요하다고..(이게 더 까다로워 보이는데..)
[링크 : http://www.mikrotik.co.kr/wiki/index.php/메뉴얼:Bonding#balance-alb]
[링크 : https://onecellboy.tistory.com/279]
[링크 : https://www.lesstif.com/pages/viewpage.action?pageId=6979680]
된다는겨 안된다는겨..
[링크 : https://access.redhat.com/.../deployment_guide/sec-configuring_a_vlan_over_a_bond]
rs232 to rs485 무전원 컨버터 전원공급 방법 RI(ring indicator) (0) | 2021.12.08 |
---|---|
win10 시대의 pl2303HX 칩 (UART / TTL) (0) | 2021.01.28 |
TLS 하드웨어 가속 (0) | 2019.02.07 |
iptime port trunk / link aggregation (0) | 2019.01.24 |
iptime VPN 관련 펌웨어 버전 (0) | 2018.05.14 |
별건 없고
아래처럼 dependencies에 jar을 넣어주면 된다.
dependencies { compile files('libs/lombok-1.16.8.jar') } |
Transaction was marked for rollback only; cannot commit (0) | 2019.03.25 |
---|---|
spring boot cassandra (0) | 2019.03.08 |
maven 빌드하기 (0) | 2019.03.08 |
spring 변수 생명주기 (0) | 2019.01.08 |
gradle buildship (0) | 2019.01.02 |
pom.xml이 있으면 maven으로 빌드가 가능한건데
maven 설치하기
(패키지 설치가 아니라 maven을 다운로드 받아서 해당 경로 패스 정해주면 끝)
[링크 : https://blog.hanumoka.net/2018/05/23/centOs-20180523-centos-install-maven/]
maven 프로젝트 빌드하기
$ mvn pakage
spring boot cassandra (0) | 2019.03.08 |
---|---|
gradle 에 jar 추가하여 빌드하기 (0) | 2019.03.08 |
spring 변수 생명주기 (0) | 2019.01.08 |
gradle buildship (0) | 2019.01.02 |
spring for android (0) | 2018.12.28 |
3월 31일 만료인게 몇개 있다고 해서 모은김에 또 기부!
저작권 협상(?) 메일 (3) | 2019.03.25 |
---|---|
Copy of: 온라인 명예훼손 출석통지서 - 피싱메일 (4) | 2019.03.08 |
별별 희한한 제약을 다 만들었네 -_- (4) | 2019.01.28 |
오랫만에 마음에 드는 티스토리 개편 (3) | 2018.10.10 |
티스토리 선조치 후보고? (0) | 2018.07.12 |
node.js랑 그래도 작동하는건 확인했는데..
임시 파일이 어디로 갔는지 모르겠네?
아래 링크는 파일 / 이미지 / 동영상 세파트로 나누어져 있으니 참고
(index.html 파일 내용도 조금씩 다르니 주의)
[링크 : https://www.froala.com/wysiwyg-editor/docs/server/nodejs/file-upload]
+
일단은 이녀석.. localhost를 제외하면 라이센스 경고를 띄운다.
쓰는건 보류!
node.js 사용자 모듈 만들기 (0) | 2019.03.13 |
---|---|
ckeditor 와 php, node.js 연동 (0) | 2019.03.11 |
wysiwyg editor / node.js (0) | 2019.02.26 |
node.js 파비콘 설정하기 (0) | 2019.02.22 |
node.js apache 스타일 로그 (0) | 2019.02.22 |
클래식
상단에 툴바 항상 나오고 그 바로 아래에 수정할 영역이 나옴
인라인
그냥 일반 문장 같은데
클릭하면 편집 가능하도록 변경됨
벌룬
인라인과 유사한데 드래그로 선택해야 툴바가 풍선으로 뜸
벌룬블록
선택영역에 따라 문단과 블록에 따라 서로 다른 툴바가 뜸
디커플러
툴바와 편집창을 분리해서 쓸 수 있다.
(문단별로 편집창을 띄우되 가장 위에 고정하는 식으로 운영 가능, 스크롤 할때 상단에 툴바 고정용으로 쓸 듯)
[링크 : https://ckeditor.com/docs/ckeditor5/latest/builds/guides/quick-start.html]
ckeditor full과 standard 그리고 옵션 설정 (0) | 2019.04.03 |
---|---|
ckeditor file upload with node.js (0) | 2019.03.07 |
ckeditor / fckeditor? (0) | 2014.07.16 |
ckeditor 사용하기 (0) | 2013.02.22 |
fckeditor plugin for squirrelMail (0) | 2011.06.14 |
첫애가 생일이라서 마트 키즈카페 놀러갔다가 맞은편에 있는 VR 코너를
아내와 첫애가 해봤는데 아내 평으로는 생각외로 화질이 안 좋다고
애는 어지러워 하고이래저래 아주 만족스럽지는 않았던 듯.
걍 한번 해본걸로 됐다 정도?
가격은 개당 30만원 정도인데
5.5인치에 2560*1440P(PPI 534)
어떻게 보면 갤럭시 노트 시리즈 급의 해상도는 되는 듯?
그럼 Stream VR 통해서 재생하는 설정이 문제거나.. 컨텐츠가 문제거나
게다가 시야도 연동 안되고 고정 시야라고..
근데 스펙상으로는 6 DOF 인데? 머야 -ㅁ-
가격은 산게 26만원. 디스플레이 스펙을 보면 그리 비싼것도 아닌 듯?
[링크 : http://item.gmarket.co.kr/Item?goodsCode=1512970342]
[링크 : https://eleparts.co.kr/goods/view?no=6949223]
[링크 : http://prod.danawa.com/info/?pcode=6226272]
[링크 : http://en.3dinlife.com/prod_view8.aspx?FId=t3:72:3&Id=191&TypeId=72&IsActiveTarget=True]
VaR VR 플레이어 한글 자막 문제 (0) | 2019.03.09 |
---|---|
마이크로 SD 64GB에 만원이라니.. (3) | 2019.03.09 |
바쁜.. 월..요일이 아니라 목요일이네? (0) | 2019.02.07 |
노트2 / 노트4 볼륨이 다른가? (0) | 2019.02.05 |
요금제 고민.. (0) | 2019.02.04 |
-
[링크 : https://gist.github.com/RedactedProfile/ac48c270d2bbe739f9f3]
[링크 : https://ckeditor.com/docs/ckeditor4/latest/examples/fileupload.html]
[링크 : https://hashcode.co.kr/questions/3187/nodejs-ckeditor로-이미지를-올리기]
[링크 : https://www.npmjs.com/package/ckeditor]
+
2019.03.08
ckeditor 4.11 을 기준으로 만든거고, 5.x 대에도 가능한지는 아직 테스트 하지 못함
express -e
를 이용하여 ejs로 express-generator로 생성후 아래의 파일을 수정함
index.js
index.ejs
4.11과 4.9 둘 다 작동되는 것 확인
+
ckeditor 5 기준. 4랑 비교해서 에디터 생성하는 방법을 제외하면 동일하게 작동한다.
index.ejs
[링크 : https://okky.kr/article/461219]
[링크 : https://www.cikorea.net/bbs/view/qna?idx=19725&view_category=&lists_style=]
[링크 : https://ckeditor.com/docs/ckeditor4/latest/guide/dev_file_upload.html]
[링크 : https://stackoverflow.com/questions/17699763/ckeditor-using-and-integration-in-node-js-web-page]
[링크 : https://stackoverflow.com/questions/21378630/node-js-sails-js-wysiwyg-editor-images]
[링크 : https://github.com/sca-/sails-ckeditor-sample]
ckeditor full과 standard 그리고 옵션 설정 (0) | 2019.04.03 |
---|---|
ckeditor 모드별 모양 (0) | 2019.03.08 |
ckeditor / fckeditor? (0) | 2014.07.16 |
ckeditor 사용하기 (0) | 2013.02.22 |
fckeditor plugin for squirrelMail (0) | 2011.06.14 |