일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 테이블목록
- shp내려받기
- 공주페이
- Python
- postgrest
- psql
- 테이블리턴
- rc.local
- 순댓국밥
- 하위디렉토리
- 테이블 중복조회
- pygqis
- posgtresql
- 와콤뱀부슬레이트
- HP스펙터x360
- postgis
- idw
- PostgreSQL
- Openlayers
- qgis
- posgresql
- ST_InvDistWeight4ma
- tablewidget
- SQL
- table
- shape내려받기
- 네이버클라우드
- HP스펙터
- 데이터비교
- table비교
- Today
- Total
목록오픈소스/네이버클라우드 (8)
오픈소스의 일상
1. vsftpd 설치 [root@flas www]# ps -ax | grep vsftpd 6334 pts/1 S+ 0:00 grep --color=auto vsftpd [root@flas www]# yum -y install vsftpd ... Dependencies Resolved ======================================================================================================== Package Arch Version Repository Size ================================================================================================..
1. httpd 설치 및 정상설치 여부 확인 [root@flas ~]# yum install -y httpd Loaded plugins: fastestmirror, langpacks Loading mirror speeds from cached hostfile * base: mirror.kakao.com * centos-sclo-rh: mirror.kakao.com * epel: mirrors.nipa.cloud * extras: mirror.kakao.com * updates: mirror.kakao.com Resolving Dependencies --> Running transaction check ---> Package httpd.x86_64 0:2.4.6-97.el7.centos.2 will be ..
[root@flas ~]# yum install java-1.8.0-openjdk [root@flas ~]# yum install java-1.8.0-openjdk-devel -- 들어가서 설치위치 확인 [root@flas ~]# cd /usr/lib/jvm/ --환경변수 등록 [root@flas ~]# readlink -f /usr/bin/java /usr/lib/jvm/java-1.8.0-openjdk-1.8.0.312.b07-1.el7_9.x86_64 -- JAVA_HOME, PATH, CLASSPATH 등록 [root@flas ~]# vi /etc/profile .... JAVA_HOME=/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.312.b07-1.el7_9.x86_64 ..
1. 계정생성 및 비밀번호 변경 [root@flas ~]# su - postgres Last login: Wed Dec 22 08:55:09 KST 2021 on pts/0 -- 사용자 생성 -bash-4.2$ createuser 사용자ID -- 디비 생성 및 사용자 할당 -bash-4.2$ createdb flas_db -O 사용자ID -bash-4.2$ psql -d flas_db psql (11.14) Type "help" for help. -- 비밀번호 변경 flas_db=# alter user postgres with password '비밀번호'; ALTER ROLE -- 비밀번호 변경 flas_db=# alter user 사용자ID with password '비밀번호'; ALTER ROLE f..
1. PostGIS 3.1.X 설치 및 확인 - PostGIS는 민감하기에 설치과정을 전부 표기함 [root@flas /]# yum install postgis31_11.x86_64 -y Loaded plugins: fastestmirror, langpacks Loading mirror speeds from cached hostfile * base: mirror.kakao.com * centos-sclo-rh: mirror.kakao.com * epel: mirrors.nipa.cloud * extras: mirror.kakao.com * updates: mirror.kakao.com Resolving Dependencies --> Running transaction check ---> Package p..
1. libxml2-devel [root@flas /]# yum install libxml2-devel -y Loaded plugins: fastestmirror, langpacks Loading mirror speeds from cached hostfile * base: mirror.kakao.com * extras: mirror.kakao.com * updates: mirror.kakao.com Resolving Dependencies --> Running transaction check ---> Package libxml2-devel.x86_64 0:2.9.1-6.el7_9.6 will be installed --> Processing Dependency: zlib-devel for package:..
1. Centos 업데이트 [root@flas ~]# yum update -y Loaded plugins: fastestmirror, langpacks Determining fastest mirrors * base: mirror.kakao.com * extras: mirror.kakao.com * updates: mirror.kakao.com base | 3.6 kB 00:00 extras | 2.9 kB 00:00 updates | 2.9 kB 00:00 (1/4): base/7/x86_64/group_gz | 153 kB 00:00 (2/4): extras/7/x86_64/primary_db | 243 kB 00:00 (3/4): base/7/x86_64/primary_db | 6.1 MB 00:00..
기존 PostgreSQL 9.6.X 에서 PostgreSQL 11.X 로 업그레이드를 꼭 해야 하는일이 생겨서 이제는 포스팅으로 이력을 남겨본다. 1. 서버생성 2. 인증키 생성 3. 네트워크 접근 설정 4. 최종확인 5. 서버생성 6. ACG 규칙설정 7. Public IP 신청 및 할당 8. 스토리지 상태확인 및 추가 [root@flas ~]# fdisk -l Disk /dev/xvda: 53.7 GB, 53687091200 bytes, 104857600 sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes ..