'windows'에 해당되는 글 4건

  1. 2023.02.22 xampp 아파치 설정 by 이그제민
  2. 2023.02.16 windows php redis 설정 by 이그제민
  3. 2023.01.30 ubuntu 22.04 virtual box 설치 by 이그제민
  4. 2023.01.25 windows command by 이그제민

xampp 아파치 설정

windows 2023. 2. 22. 17:13

httd.conf

 

# 포트 2개 쓰자

Listen 80
Listen 8081

 

DocumentRoot 경로설정1

<Directory 경로설정1>

  

</Directory>

 

httpd-vhosts.conf

<VirtualHost *80 *:8081>
    DocumentRoot "경로설정2"
<Directory "경로설정2">
  AllowOverride None
  Require all granted
</Directory>
</VirtualHost>

'windows' 카테고리의 다른 글

windows php redis 설정  (0) 2023.02.16
ubuntu 22.04 virtual box 설치  (0) 2023.01.30
windows command  (0) 2023.01.25
Posted by 이그제민
l

windows php redis 설정

windows 2023. 2. 16. 17:04

https://pecl.php.net/package/redis
https://pecl.php.net/package/igbinary

각 버전에 맞는 dll 다운

ext 에 붙여넣고 php.ini에 추가
php_igbinary.dll
php_redis.dll

; redis 추가
extension=redis
; igbinary 추가
; Load igbinary extension
[igbinary]
extension=igbinary

; session.serialize_handler=php <- 이거 주석
session.serialize_handler=igbinary
; Enable or disable compacting of duplicate strings
; The default is On.
igbinary.compact_strings=On
; If uncommented, use igbinary as the serializer of APCu
; (APCu 5.1.10 or newer is strongly recommended)
;apc.serializer=igbinary


cmd 에서 php -m 으로 에러안나는지 확인 후 아파치 start

'windows' 카테고리의 다른 글

xampp 아파치 설정  (0) 2023.02.22
ubuntu 22.04 virtual box 설치  (0) 2023.01.30
windows command  (0) 2023.01.25
Posted by 이그제민
l

vi /etc/sudoers
내계정   ALL=NOPASSWD:ALL

 

 

------------- 클립보드 양방향 

설정
일반-고급-클립보드공유 양방향
일반-디스플레이-비디오메모리 128

 

실행중에 장치-게스트확장 CD삽입
cd /media/내계정/VBox_GAs....버전
sudo ./VBoxLinuxAdditions.run
reboot

 

 

'windows' 카테고리의 다른 글

xampp 아파치 설정  (0) 2023.02.22
windows php redis 설정  (0) 2023.02.16
windows command  (0) 2023.01.25
Posted by 이그제민
l

windows command

windows 2023. 1. 25. 16:46

# 윈도우 심볼릭 걸기
# 파일  : mklink 링크 원본
# 디렉토리 : mklink /d 링크 원본
mklink /d json E:\rise_doc\02.Data\Server


# 사용중인 포트 찾기
netstat -nao | findstr 9180
# 찾아서 제거
taskkill /f /pid {$PID}

'windows' 카테고리의 다른 글

xampp 아파치 설정  (0) 2023.02.22
windows php redis 설정  (0) 2023.02.16
ubuntu 22.04 virtual box 설치  (0) 2023.01.30
Posted by 이그제민
l