OS/Linux (19) 썸네일형 리스트형 리눅스 find 루트에서부터 원하는 폴더 찾기 sudo find / -name hinos -type d 현재위치에서부터 폴더찾기 sudo find ./ -name hinos -type d 단어가 포함되어있는 파일 찾기 find / -name "ssh*" aws ligthsail 새로운 유저 만드는법 권한얻어오기 sudo su 유저만들기 adduser hinos 비트나미 계정의 ssh를 hinos 유저 폴더에 복사한 후 .ssh 소유권 변경 cp -R /home/bitnami/.ssh/ /home/hinos/ chown -R hinos:hinos /home/hinos/.ssh/ 우분투 계정 root 권한 부여 usermod -aG sudo hinos private key 말고 password로 접속하고 싶을 때 vim /etc/ssh/sshd_config open_org PermitRootLogin prohibit-password PasswordAuthentication no open_modify PermitRootLogin yes PasswordAuthentication yes sudo servic.. mysql or mariadb 원격접속 1. mysql 원격 아이디 생성 msyql -> grant all privileges on *.* to 'yk'@'%'; mysql -> flush privileges; vim /etc/my.cnf bind-address = 127.0.0.1 -> 0.0.0.0 수정 netstat -ntlp | grep mysqld firewall 사용하고 있으면 firewall-cmd --zone=public --add-port=3306/tcp --permanent firewall-cmd --reload firewall-cmd --list-ports iptables -I INPUT -i eth0 -p tcp --destination-port 3306 -j ACCEPT 이전 1 2 3 다음