전체 글 썸네일형 리스트형 IntelliJ - SVN: E220001 오류 SVN repository 를 변경한 후 Check out/Commit 은 되지만 log 를 볼 수 없는 희한한 오류가 나타났다. 결론부터 말하자면, 지원되지 않는 SVN Connector를 사용하였기 때문에 나타난 오류였다. 다른 개발자들은 Eclipse+Subversive+SVNKit 을 사용하고 있기 때문에 이슈가 없던 것. IntelliJ 는 2018.01 버전부터 SVNKit 지원을 종료하고, 모듈을 삭제하였다고 밝혔다. https://blog.jetbrains.com/platform/2018/01/svnkit-library-is-removed-from-the-platform/ SVNKit library is removed from the platform | The JetBrains Platfo.. 더보기 vsftpd vsftpd Do :$ sudo apt-get install vsftpd $ sudo vi /etc/vsftpd.confchroot_local_user=YESchroot_list_enable=YESchroot_list_file=/etc/vsftpd.chroot_listallow_writeable_chroot=YES$ sudo service vsftpd restart ## vsftpd.chrool_list 에는 root급 권한의 계정을 넣어준다. 그 외 계정은 root 접근 불가 더보기 Tomcat 7 tomcat7 Do :$ sudo apt-get install tomcat7 $ sudo vi server.xml Port redirection sudo /sbin/iptables -vt nat -I PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 8080 더보기 Colored Vi Colored Vi Edit :vi .bashrc if [ -e /usr/share/terminfo/x/xterm-256color ]; then export TERM='xterm-256color'else export TERM='xterm-color'fi 더보기 SSH, Static IP SSH Do :$ sudo raspi-config > Interfacing Options > SSH > Enable # 서비스 시작$ sytemctl ssh start # 서비스 자동시작 등록$ update-rc.d ssh defaults Check :$ service ssh status Static IP Edit :$ sudo vi /etc/dhcpcd.conf interface eth0static ip_address=192.168.0.100static netmask=255.255.255.0static routers=192.168.0.1static domain_name_servers=192.168.0.1 Check :$ ifconfig 더보기 Oracle 11g Setup 선행 작업 - X-window, xrdp oracle 11g 설치는 GUI를 필요로 하므로, X window를 설치한다. 이후 xrdp를 사용하여 서버에 원격으로 접속, X-window에 접근하는 방법을 사용한다.Xming을 통해서도 가능하지만, 반응속도가 느리고, 폰트 등의 가독성이 좋지 않은 단점이 있다. 반면에 xrdp는 매우 쾌적한 컴퓨팅 환경을 제공한다. X-window 설치yum groupinstall "Server with GUI"startx xrdp 설치를 위한 Repository 추가vi /etc/yum.repos.d/xrdp.repo[xrdp] name=xrdp baseurl=http://li.nux.ro/download/nux/dextop/el7/x86_64/ enabled=1 gpg.. 더보기 CentOS7 FTP Setup FTP 데몬 설치yum install vsftpd -y FTP 설정vi /etc/vsftpd/vsftpd.conf anonymous_enable=NOlocal_enable=YESwrite_enable=YESlocal_umask=022dirmessage_enable=YESxferlog_enable=YESconnect_from_port_20=YESxferlog_file=/var/log/xferlogxferlog_std_format=YESchroot_local_user=YESlisten=YES#listen_ipv6=YESpam_service_name=vsftpduserlist_enable=YEStcp_wrappers=YESallow_writeable_chroot=YES FTP 시작systemctl enable.. 더보기 CentOS7 설치 준비물서버로 사용할 목적이므로, Minimal Core로 진행한다.기준 : CentOS-7-x86_64-Minimal-1611.isoCentOS7 Minimal ISO ISO파일을 USB에 넣어, 부팅하여 설치할 수 있도록 하는 유틸리티가 필요하다.Win32DiskImager 사전 작업Win32DiskImager를 설치하고, 실행한다.CentOS7 이미지를 로드하고, 해당 USB를 Target으로 잡은 후 "Write" Anacoda라는 레이블이 생성된다. 설치파티션 설정 외엔 어려운 과정이 없다. 설치과정 참고파티션 /boot : 1 GiB /swap : 4 GiB /(root) : 20 GiB lvm-cl , xfs /home : 450 GiB lvm-data, xfs이더넷 - IP : 192.168.. 더보기 이전 1 2 3 다음