꿀팁
-
ubuntu 20.04 sudo su 가 안될때꿀팁 2023. 4. 18. 12:48
sudo su 를 하고 비밀번호를 알맞게 입력했는데 에러가 나는 경우가 있다. ubuntu is not in the sudoers file. this incident will be reported 이렇게 에러가 난다면, su root 를 한다음, 아래 블로그의 방법을 따라하면 된다. chmod 744 /etc/sudoers 요약하자면 sudo vi /etc/sudoers 를 하고 파일의 맨 아래로 내려가서 써주면 된다. 유저이름 ALL=(ALL) ALL https://bumday.tistory.com/46 특정 유저로 sudo명령어가 안될때 (XXX is not in the sudoers file.) 아래와같이 sudoers file에 유저가 존재하지 않는다고 뜰 때 postgres@VirtualBox:..
-
폐쇄망에서 mysql 설치하기꿀팁 2023. 4. 6. 13:20
https://sysong85.tistory.com/102 [MySQL] Windows 10 환경 MySQL 64bit 수동 설치 (v8.0.19) 아래와 같은 환경에서 MySQL 64bit를 수동설치시 도움이 되길 바랍니다! 운영체제: Windows 10 설치할 파일: MySQL 64bit (v8.0.19) 방법: 수동 설치 사실 MysSQL 을 MSI Installer 로 설치 하셔도 되는데 저는 연습 sysong85.tistory.com 위에 블로그 대로 따라하면된다. 1. mysql .zip 파일 다운받는다. 2. C드라이브에 압축 풀고 디렉터리 이름을 mysql로 해준다.(이름 아무거나 해도 상관없다.) 3. mysql 디렉터리에서 my.ini 파일을 만들고 위에 블로그에서 써달라는 대로 쓴다...
-
EC2 java 17,18 설치꿀팁 2023. 3. 31. 23:45
https://techviewleo.com/install-java-openjdk-on-ubuntu-linux sudo apt update sudo apt install openjdk-17-jdk 이렇게 설치하거나, 아래처럼 설치하면 된다. https://docs.aws.amazon.com/corretto/latest/corretto-17-ug/generic-linux-install.html Amazon Corretto 17 Installation Instructions for Debian-Based, RPM-Based and Alpine Linux Distributions - Amazon Corretto 17 Amazon Corretto 17 Installation Instructions for Debi..