본문 바로가기

전체보기161

Android install referrer Library test 가. refer를 정의하고 설치 링크를 생성한다., https://play.google.com/store/apps/details?id=&referrer= 나. 플레이스토어가 동작하면 절대로 install 버튼을 누르면 안됩니다. ( 이미 배포하셨다면 상관없음. ) 다. adb 명령어가 있는 디렉토리로 apk 파일을 복사합니다. (C:\Users\사용자명\AppData\Local\Android\Sdk\platform-tools ) adb install -r app-debug.apk 라. 플레이 스토어에 열기 버튼을 클릭합니다. 2021. 8. 8.
MySQL 5.7 source 설치 가. 설치 # yum groupinstall "Development Tools" # wget http://downloads.sourceforge.net/project/boost/boost/1.59.0/boost_1_59_0.tar.gz # tar xvfz boost_1_59_0.tar.gz #yum install openssl-devel #yum install openssl #yum install ncurses-devel #cmake . -DCMAKE_INSTALL_PREFIX=/home/o2olab/apps/mysql -DMYSQL_DATADIR=/home/o2olab/data -DDEFAULT_CHARSET=utf8mb4 -DDEFAULT_COLLATION=utf8mb4_general_ci -DDOW.. 2021. 6. 23.
Selenium Remote WebDriver접근시 1. stand-alone 서버 설치 ( 사이트에서 다운로드 후 설치 ) 2. bat 파일 생성 start.bat java -Dwebdriver.chrome.driver=C:\\TomcatInstance\\driver\\chromedriver.exe -jar selenium-server-standalone-3.141.59.jar 3. bat 실행 00:18:34.356 INFO [GridLauncherV3.parse] - Selenium server version: 3.141.59, revision: e82be7d358 00:18:34.465 INFO [GridLauncherV3.lambda$buildLaunchers$3] - Launching a standalone Selenium Server on p.. 2021. 6. 7.
AWS Chrome 설치 Install ChromeDriver You will need to install ChromeDriver which allows you programmatic access to google chrome via the Webdriver API protocol. #cd /tmp/ #sudo wget https://chromedriver.storage.googleapis.com/80.0.3987.106/chromedriver_linux64.zip #sudo unzip chromedriver_linux64.zip #sudo mv chromedriver /usr/bin/chromedriver #chromedriver – version Navigating to the /tmp/ folder. Using wget t.. 2021. 6. 5.
특정날자 기준으로 조회 및 삭제 1. 특정 날자 이전 #find -type f ! -newermt '2020-03-14' -exec ls -l {} \; find -type f ! -newermt '2020-03-14' -exec rm -rf {} \; 2. 특정 날자 이후 #find -type f -newermt '2020-03-14' -exec ls -l {} \; find -type f -newermt '2020-03-14' -exec rm -rf {} \; 2021. 5. 11.
NFS 설정 서버 설정 1. nfs 관련 프로그램을 설치합니다. #yum -y install nfs-utils 2. 공유 디렉토리 설정 #vi /etc/exports /home/nfs 172.31.0.0/16(rw,sync,insecure,all_squash) /home/nfs : 공유할 디렉토리 172.31.0.0/16 : 접근할 아이피 대역 3. NFS 데몬 구동 #service nfs start #chkconfig --level 3 nfs on 4. 설정 확인 # showmount -e Export list for ip-xxxxx: /home/nfs 172.31.0.0/16 클라이언트 설정 1. 환경설정 #yum -y install nfs-utils #chkconfig --level 3 nfs on #mount.. 2021. 4. 3.
Office365 outlook 에서 네이버 웍스 IMAP 설정하기 네이버 웍스에서 IMAP 설정하기 우선 네이버 웍스에서 설정하는 것은 다른 사이트에서 설명이 많이 나와있어서 생락하고 해당 주소 정보를 확인후 아래와 같이 옵션을 설정해 주면 된다. 2021. 2. 5.
tomcat connector 설치 $ tar xvzf tomcat-connectors-1.2.48-src.tar.gz $ cd tomcat-connectors-1.2.48-src/native $ ./configure --with-apxs=/home/taxhelper/apps/apache/bin/apxs $ make && make install 2021. 1. 11.
@Scheduled 동작하지 않을때 XML 설정에 하단 부분이 존재하는지 판단한다. 1. xmlns:task="http://www.springframework.org/schema/task" 2. xsi:schemalocation=" http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-3.0.xsd"> 3. 2020. 12. 7.
windows 10 license KEY 얻어오기 wmic path SoftwareLicensingService get OA3xOriginalProductKey 2020. 12. 6.