설치환경 : centos7 파이썬3.6설치 [daraksharavim.tistory.com]$ yum -y install https://centos7.iuscommunity.org/ius-release.rpm [daraksharavim.tistory.com]$ yum -y install python36u python36u-libs python36u-devel python36u-pip [daraksharavim.tistory.com]$ ln -s /bin/python3.6 /bin/python3 [daraksharavim.tistory.com]$ ln -s /bin/pip3.6 /bin/pip [daraksharavim.tistory.com]$ pip install --upgrade pip [daraksh..
![[PHP]mysql 접속 에러](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2Fc0MHK6%2Fbtq85gmgfUE%2FXBVKHCXskt3xyPuu7AX7J1%2Fimg.png)
PHP Warning: mysql_connect(): mysqlnd cannot connect to MySQL 4.1+ using the old insecure authentication. Please use an administration tool to reset your password with the command SET PASSWORD = PASSWORD('your_existing_password'). This will store a new, and more secure, hash value in mysql.user. 위와 같이 오류가 발생할 경우는 php버전과 mysql버전에서 사용하는 password 암호화 방식이 다르기때문에 발생된 에러입니다. 해결방법은 아래와 같습니다. mysql> sel..
![[파워쉘]파일 마지막 쓰기한 날짜변경](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FJXDaR%2FbtrCiva7dlh%2FGvddhuOKCZ3yRuEy5fqlB1%2Fimg.png)
# 변경할 날짜지정 $d = Get-Date "02/09/2013 4:59 PM" # 변경할 파일 대상 지정 $f = Get-Item "C:\test\test.txt" # 변경할 파일에 변경할 날짜 적용 $f.LastWriteTime = $d 출처 : http://stackoverflow.com/questions/21630424/modifying-lastwritetime-directory-in-powershell
![[파워쉘]VBS로 파워쉘 실행](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2Fk9l94%2FbtrCiRegy3q%2FWb28mCEGKQBbV4KrO90GrK%2Fimg.png)
ps="powershell.exe -nologo -command " & Chr(34) & "[xxxx.ps1]" & Chr(34) set shell=createobject("WScript.Shell") shell.Run ps,0,true 출처 : http://kernel64.tistory.com/567