1. 파일하나 떨굼crontab -l > my_crontab 2. cat으로 긁음cat my_crontab 3. 그대로 긁으면됨
일단 확인해본다 - 대소문자 구분하는 버전이 있는데 0이들어있는 경우가 있다. 0 - 구분함1- 구분안함가끔 리눅스로 mariadb or mySql 다운받으면 생기는 문제인데예전에는 몰라서 db 테이블이름을 다 수정했던 기억이 있다.리눅스기준 마리아db는 다음 명령어로 접속한다. 이렇게 들어가서 확인한다. mysqld 밑에다가 해당 문자를 넣는다 → 1로 바꾼다는 뜻 마리아 디비를 다시 재실행 시킨다. 껏다 킨다는것 이렇게 되면 대소문자를 구분하지 않는다는 것
Dump 하는 기본 // MySQL database credentials String dbUser = "yourUsername"; String dbPassword = "yourPassword"; String dbName = "yourDatabaseName"; String dbHost = "localhost"; // or your database host String dumpFilePath = "path/to/your/dumpfile.sql"; // Construct the mysqldump command String command = String.format("mysqldump -u%s -p%s -h%s ..
SQL: INSERT INTO * (Describe*****) VALUES (?, ?, ?, ?, ?, ?, ?, ?)Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Describe)예약어 있는 경우 문제가 있음Describe이렇게 백틱으로 감싸주면 됨
설치법Debian/Ubuntusudo apt-get updatesudo apt-get install openssh-serverCentOS/RHELsudo yum install openssh-serverFedorasudo dnf install openssh-server2. SSH 서버 상태 확인 및 시작SSH 서버가 실행 중인지 확인하고, 실행되지 않았다면 시작합니다.상태 확인sudo systemctl status ssh만약 안되는 경우 sshd로 되어 있을 경우가 있음sudo systemctl status sshdSSH 서버 시작sudo systemctl start ssh부팅 시 자동 시작 설정sudo systemctl enable ssh방화벽 열어주기SSH 포트(기본적으로 22번 포트)가 방화벽에 의해..
문제점BEGIN NESTED EXCEPTION **javax.net.ssl.SSLException MESSAGE: closing inbound before receiving peer's close_notifySTACKTRACE:javax.net.ssl.SSLException: closing inbound before receiving peer's close_notify at java.base/sun.security.ssl.SSLSocketImpl.shutdownInput(SSLSocketImpl.java:847) at java.base/sun.security.ssl.SSLSocketImpl.shutdownInput(SSLSocketImpl.java:825) at com.mysql.cj.protocol.a..