신규 플젝에 투입되면서 공통 웹 개발파트를 맡게 되었다. 그놈의 웹개발은 그만하고 싶긴 한데, 하라면 해야지 뭐. 아무튼, 공통부라길래 그냥 공통 컴포넌트 정도 만지작거릴 줄 알았는데 그게 아니었고, 이번에 많이 배우는 듯 싶다.
서론 . tiles 추가하기에 앞서
현재 전자정부 프레임워크 4.2 버전을 사용중이다.
SI를 하건 뭘 하건 대부분의 웹 페이지는 다음과 같은 레이아웃 구조를 가지고 있다.
저기서 상단의 Header , 좌측의 Nav, 하단의 Footer는 고정형 이미지이며 Body는 개발자들이 만들어내는 업무페이지라고 보면 된다. 처음에는 Header / Nav / Footer에 해당하는 JSP를 각각 만들고 Include하는 방식으로 생각했었는데 이거 아무리봐도 나이스하지가 않단말이다. 무슨 말이냐 하면,
1
2
3
4
5
6
7
8
9
10
11
<divclass="root-container">
<%@ include file="/WEB-INF/jsp/commons/commLeft.jsp"%><!-- 좌측 메뉴 -->
<divclass="container-wrap">
<%@ include file="/WEB-INF/jsp/commons/commNav.jsp"%><!--슬라이드 메뉴 -->
</div>
<!-- 요약을 많이 했지만 jsp 화면 컴포넌트가 여기들어감. -->
<divclass="footer-container">
<%@ include file="/WEB-INF/jsp/commons/commFooter.jsp"%><!-- 하단 푸터 -->
이렇게 모든 공통 레이아웃들을 저렇게 주저리주저리 include해야 한다. 우리는 상단의 이미지와 같이 심플한 구조가 아니라 공통 헤더, 공통 타이틀, 공통 네비게이터, 공통 슬라이드 네비게이터, 공통 인피니트탭, 공통 푸터 까지 있으니 위와 같은 방식으로 include file하려면 여섯개는 더 있어야 한다.
가장 큰 문제는 무어냐, 저 포맷을 고대로 갖다 써서 수많은 div태그를 뚫고 업무 화면을 그려내면 좋으련만, 저건 아주 극도로 축약한 div 태그들일 뿐이고 실제로는 약 100여줄에 가까운 태그들이 난무를 하고 있다는거다.
그럼 당연히 개발자의 실수 하나로 레이아웃이 모조리 깨지기도 하고 가독성도 너무 구려서 개발 난이도가 올라간다. 이럴때 무엇을 쓴다? apache tiles다.
tiles를 적용함으로 인해 공통으로 사용하는 레이아웃은 그대로 공통부에서 처리하고 업무 화면을 지정한 div태그의 어딘가에 끼워넣는 개념이라고 보면 된다. 즉, tiles로 사전에 레이아웃을 설정하고 특정 영역만 호출하는 개념이다. 이마리야.
1. tiles 적용 - pom.xml
tiles를 적용하기에 앞서 기본적인 레이아웃에 대한 작업은 퍼블리셔분께서 작업해주셨다고 가정한다. 이것까지 하다간 난 죽을지도 모른다. 아무튼, pom.xml에 다음과 같이 추가했다. GPT는 몇개 안넣어줬는데 돌려보니 계속 오류가 나서, 보태보태 병에 걸려 저렇게까지 추가하고 성공함.
dispatcher-servlet에 tiles관련 설정을 넣어준다. 동시에, 모든 view호출은 tiles 우선으로 처리하도록 (그래야 레이아웃이 먹으니) p:order를 0으로 주고, 기존의 view Resolver설정을 유지함과 동시에 후순위(나는 3순위로)로 설정한다.
이게 끝이 아니다. 우리는 Controller 에서 url을 호출하는 부분도 수정해야 한다.
5. 공통 컨트롤러 수정
나는 위에서 site/*/*/* 형태로 설정했다. 이 말은, ModelAndView 에서 return 하는 uri에 대해 tiles definition이 가로채서 WEB-INF/jsp/{1}/{2}/{3}.jsp 에 있는 jsp를 리턴해준다는 의미이다.
기존에 설정된 viewResolver도 동일하다. 하지만 내가 설정한 것은 site/를 반환하도록 되어있으니, 공통부 ModelAndView에서도 site/ 형태로 반환해야 한다.
그냥 별거 없이, ModelAndView return시 "site/"를 StringBuilder 에서 append해주면 된다. 이건 개발자 구현 나름이니까.
그래서 최종 형태는 다음과 같아야 한다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
public ModelAndView commonVie(HttpServletRequestreq, HttpServletResponse resp
One of the configured repositories failed (Unknown), and yum doesn't have enough cached data to continue. At this point the only safe thing yum can do is fail. There are a few ways to work "fix" this:
1. Contact the upstream for the repository and get them to fix the problem.
2. Reconfigure the baseurl/etc. for the repository, to point to a working upstream. This is most often useful if you are using a newer distribution release than is supported by the repository (and the packages for the previous distribution release still work).
3. Run the command with the repository temporarily disabled yum --disablerepo=<repoid> ...
4. Disable the repository permanently, so yum won't use it by default. Yum will then just ignore the repository until you permanently enable it again or use --enablerepo for temporary usage:
yum-config-manager --disable <repoid> or subscription-manager repos --disable=<repoid>
5. Configure the failing repository to be skipped, if it is unavailable. Note that yum will try to contact the repo. when it runs most commands, so will have to try and fail each time (and thus. yum will be be much slower). If it is a very temporary problem though, this is often a nice compromise:
이 내용을 참조하여 신규 서버에 PostgreSQL을 설치한 후, tar 파일을 업로드 한 이후, 다음의 과정을 수행한다.
#자세히 보면 서버가 다르다 [root@93e37f9f73ea lib]# ls alternatives dbus games misc private rpm-state systemd dav dnf httpd pgsql_back.tar portables rpm selinux tpm [root@93e37f9f73ea lib]# [root@93e37f9f73ea lib]# tar -xvf pgsql_back.tar pgsql/ pgsql/.bash_profile pgsql/.bash_history pgsql/.psql_history pgsql/13/ pgsql/13/data/
(중략)
[root@93e37f9f73ea lib]# ls alternatives dbus games misc pgsql_back.tar portables rpm selinux tpm dav dnf httpd pgsql private rpm-state systemd [root@93e37f9f73ea lib]# cd pgsql/13/data [root@93e37f9f73ea data]# ls PG_VERSION log pg_ident.conf pg_replslot pg_stat_tmp pg_wal postmaster.opts base pg_commit_ts pg_logical pg_serial pg_subtrans pg_xact postmaster.pid current_logfiles pg_dynshmem pg_multixact pg_snapshots pg_tblspc postgresql.auto.conf global pg_hba.conf pg_notify pg_stat pg_twophase postgresql.conf
# 이전 서버에서 접속포트를 18081로 설정했는데, 그대로 잘 압축해제 되었는지 확인 # 의도적으로 18081 에서 8084로 변경후 실행해본다. [postgres@93e37f9f73ea data]$ vi postgresql.conf
#------------------------------------------------------------------------------ # CONNECTIONS AND AUTHENTICATION #------------------------------------------------------------------------------
# - Connection Settings -
listen_addresses = '*' # what IP address(es) to listen on; # comma-separated list of addresses; # defaults to 'localhost'; use '*' for all # (change requires restart) port = 8084 # (change requires restart)
# PostgreSQL 서버 실행 [postgres@93e37f9f73ea data]$ /usr/pgsql-13/bin/pg_ctl -D /var/lib/pgsql/13/data start pg_ctl: another server might be running; trying to start server anyway waiting for server to start....2024-08-21 07:36:04.797 UTC [6143] LOG: redirecting log output to logging collector process 2024-08-21 07:36:04.797 UTC [6143] HINT: Future log output will appear in directory "log". done server started
뭐 그런데 결과가 당연하게도, 잘 구동 되었다.
문제는 기존 PostgreSQL 설정파일의 위치나 데이터베이스 파일, 테이블 스페이스 경로 등이 커스텀화 되지 않았는지 파악하는것이 가장 중요하다.
다음에는 직접 PostgreSQL 서버에 접속 후, 각종 테이블스페이스와 데이터베이스 설정 위치들을 쿼리를 통해 알아볼 예정이다.
The files belonging to this database system will be owned by user "postgres". This user must also own the server process.
The database cluster will be initialized with locale "C.UTF-8". The default database encoding has accordingly been set to "UTF8". The default text search configuration will be set to "english".
Data page checksums are disabled.
fixing permissions on existing directory /var/lib/pgsql/13/data ... ok creating subdirectories ... ok selecting dynamic shared memory implementation ... posix selecting default max_connections ... 100 selecting default shared_buffers ... 128MB selecting default time zone ... Etc/UTC creating configuration files ... ok running bootstrap script ... ok performing post-bootstrap initialization ... ok syncing data to disk ... ok
initdb: warning: enabling "trust" authentication for local connections You can change this by editing pg_hba.conf or using the option -A, or --auth-local and --auth-host, the next time you run initdb.
Success. You can now start the database server using:
Docker에서 PostgreSQL을 구동시켰으니 호스트PC인 Windows 에서 DBEaver를 통해 접속하려 한다. 꽤 많은(?) 삽질이 필요했는데, 아래의 방법을 진행하여 연결에 성공했다.
5-1. 접속 포트 설정
현재 Docker는 18081 포트로 포트포워딩이 설정된 상태이다. postgreSQL은 5432 포트가 기본포트이므로, 아래의 설정파일을 편집한다. 모든 과정은 postgres 계정으로 진행한다.
아래 항목 중, listen_address 항목을 모든 IP주소인 '*' 로 설정하고, port는 5432 에서 변경할 포트인 18081로 수정한다.
기본적으로 주석처리가 되어있으므로 주석 또한 해제한다.
postgresql 서버를 재시작해야 설정이 적용된다.
[postgres@82559cbe0973 data] cd/var/lib/pgsql/13/data [postgres@82559cbe0973 data] vi postgresql.conf
(중략)
# - Connection Settings -
listen_addresses = '*' # what IP address(es) to listen on; # comma-separated list of addresses; # defaults to 'localhost'; use '*' for all # (change requires restart) port = 18081 # (change requires restart)
5-2. 외부 접근 허용 정책 설정
외부 접근을 허용하는 정책을 설정하기 위해 같은 디렉토리에 있는 pg_hba.conf 파일을 열어준다.
# replication privilege. local replication all trust host replication all 127.0.0.1/32 trust host replication all ::1/128 trust host all all 0.0.0.0/0 md5 host all all ::/0 md5
5-3. 기본계정 postgres 비밀번호 설정
어디에선가 본 것으로는 postgres 계정의 비밀번호는 postgres라던데 사실 아니었나보다 -_-;
그래서 직접 접속 후, postgres 계정의 비밀번호를 설정해준다.
위 5-1. 항목에서 5432 포트를 18081로 변경하였기 때문에, 기본 접속 명령어인 psql 명령어가 오류가 나게 된다.
이럴 때에는 당황하지 말고 변경한 포트설정 옵션을 넣어주어야 한다.
(오류 예시) [postgres@82559cbe0973 data]$ psql psql: error: could not connect to server: No such file or directory Is the server running locally and accepting connections on Unix domain socket "/run/postgresql/.s.PGSQL.5432"?
(포트변경 후 옵션 설정) [postgres@82559cbe0973 data]$ psql -h localhost -p 18081 psql (13.16) Type "help" for help.
postgres=#
접속이 되었다면 아래의 쿼리를 입력하여 비밀번호를 설정해주자.
postgres=# alter user postgres password 'test1!'; ALTER ROLE
그리고 DBEaver 에서 접속하면 정상적으로 접속됨을 확인할 수 있다.
DB를 로컬 Windows PC에는 많이 설치해보고 개발용으로 설정한 적은 많아도, Docker Linux에 세팅한 후 접속해보는 건 처음인것 같다. 여러모로 설정이 많아 헷갈리기도 하고 조금 많이 어렵기도 했다. 실제 Linux 서버에 설치하는건 조금 다를것이고, 보안을 고려한다면 외부 접속 설정 정책 부분도 손을 좀 더 봐야 할 것으로 예상된다. 뭐, 그래도 해본게 어딘가 싶긴 하지만 말이다.
이번에는 이론상으로 생각해보던 SVN Repository를 tar 압축 후, 신규 서버에서 압축해제 했을 때 정상동작 하는지를 테스트 해보고자 한다. 스포일러를 조금 하자면, 같은 버전이라면 그냥 뭐 된다. 예상했던 결과이긴 하지만.
다른 버전의 경우에는 어디까지 호환되는지 궁금하긴 한데, 지금 이관 규칙 자체가 최대한 같은 버전이기 때문에 큰 문제의 여지는 없다고 판단된다.
1. SVN 저장소 경로 확인 및 tar 압축
리눅스 SVN 저장소는 저장소 디렉토리 하위에 SVN 설정들이 포함되어있는 형태로 구성된다. 이걸 통째로 압축하고, 신규 서버에서 동일하게 압축해제하면 될거라는 판단이 든다. 저장소 디렉토리를 확인 한 후, tar 압축을 수행한다.
[root@93e37f9f73ea /]# ls bin etc lib lost+found mnt proc run srv svn_repository testRepo usr dev home lib64 media opt root sbin svn_repo.tar sys tmp var [root@93e37f9f73ea /]# cd svn_repository [root@93e37f9f73ea svn_repository]# [root@93e37f9f73ea svn_repository]# ls README.txt conf db format hooks locks svnserve.log [root@93e37f9f73ea svn_repository]# tar -cvf svn_repo.tar svn_repository
2. 신규 서버에 tar 압축해제 및 구동
svn_repo.tar 파일을 신규 서버에 업로드 후, tar 압축해제를 수행한다.
[root@82559cbe0973 /]# ls bin etc lib lost+found mnt proc run srv sys usr dev home lib64 media opt root sbin svn_repo.tar tmp var [root@82559cbe0973 /]# tar -xvf svn_repo.tar svn_repository/ svn_repository/locks/ svn_repository/locks/db-logs.lock (중략) [root@82559cbe0973 /]# ls bin etc lib lost+found mnt proc run srv svn_repository tmp var dev home lib64 media opt root sbin svn_repo.tar sys usr
[root@82559cbe0973 /]# mkdir svn [root@82559cbe0973 /]# ls bin etc lib lost+found mnt proc run srv sys usr dev home lib64 media opt root sbin svn tmp var
2-2. svnadmin create [저장소 디렉토리]
해당 명령어를 입력하면 별다른 메시지가 출력되지는 않지만, 디렉토리에 들어가보면 SVN 관련 파일이 생성되어있음을 확인할 수 있다.
[root@82559cbe0973 /]# svnadmin create /svn [root@82559cbe0973 /]# cd svn [root@82559cbe0973 svn]# ls README.txt conf db format hooks locks
3. SVN 설정 변경
3-1. SVN 구동설정 변경
conf 디렉토리 하위의 svnserve.conf 파일을 변경해준다.
[root@82559cbe0973 svn]# cd conf [root@82559cbe0973 conf]# ls authz hooks-env.tmpl passwd svnserve.conf [root@82559cbe0973 conf]# vi svnserve.conf
설정 파일이 매우 길어서 찾아서 변경하는것이 빠르다.
각 파라미터별로 주석이 되어있는 것들을 찾아 주석을 해제한다.
주의할 점은 단순히 주석만 삭제할 것이 아니라, 각 파라미터 앞의 공백문자열(스페이스바)도 제거해주어야 한다. 이걸로 삽질을 몇시간이나 했던지;
(중략) [general] anon-access = read auth-access = write password-db = passwd realm = My First Repository (생략)
3-2. SVN 계정 생성
SVN에 접속가능한 계정을 생성한다. 계정별 권한도 부여가 가능한데 이건 좀 더 나중에.
알아보니까 리눅스에서는 VisualSVN이 지원되지 않아서, 직접 계정별 권한을 생성해줘야 한다고 한다 -_-;
conf 디렉토리 하위의 passwd 파일을 변경해준다.
[root@82559cbe0973 conf]# vi passwd
(중략) [users] # harry = harryssecret # sally = sallyssecret # 아이디 = 비밀번호 test = test12!@