서버에서 로컬 언어팩 설치하기
서버에서 로컬 언어팩 설치하기 우분투에서 설치하기 apt install language-pack-ko RHEL/CentOS에서 설치하기 yum install langpacks-ko 사용 가능한 언어 목록 조회하기 $ locale -a | grep … ko_KR.euckr ko_KR.utf8 … POSIX Post …
서버에서 로컬 언어팩 설치하기 우분투에서 설치하기 apt install language-pack-ko RHEL/CentOS에서 설치하기 yum install langpacks-ko 사용 가능한 언어 목록 조회하기 $ locale -a | grep … ko_KR.euckr ko_KR.utf8 … POSIX Post …
nginx에서 php 확장자 제거하기 Edit /etc/nginx/sites-available/default.conf server { … location / { try_files $uri $uri/ $uri.html $uri.php$is_args$args; } location ~ \.php$ { try_files $uri =404; } … } Reference https://stackoverflow.com/questions/21911297/how-to-remove-both-php-and-html-extensions-from-url-using-nginx …
맥OS에서 도커 사용하기 download $ docker pull ubuntu run $ docker run ubuntu:18.04 $ docker run –rm -it ubuntu:18.04 /bin/bash $# cat /etc/issue Ubuntu 18.04.5 LTS \n \l Post Tags: …
우분투에서 VSFTPD 설치하기 Installation $ apt install -y vsftpd $ echo ''> /etc/vsftpd.user_list $ echo ''> /etc/vsftpd.chroot_list Configure If you want to upload files then write_enable=YES $ vim /etc/vsftpd.conf # …
MYSQL에서 사용자 추가하기 $ mysql -u root -p 모든 사용자 확인하기 mysql> SELECT User, Host, authentication_string FROM mysql.user; 사용자 추가 및 권한 부여하기 mysql> CREATE USER 'username'@'localhost' IDENTIFIED BY 'PASSWORD'; …
MYSQL 비밀번호 변경하기 버전 >= 5.7.6 이상 mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY '123456'; 버전 5.7.6 미만 mysql> SET PASSWORD FOR 'root'@'localhost' = PASSWORD('123456'); Post Tags: #mariadb, #mysql, #password, #sql, …
우분투에서 Mariadb 설치하기 Install Start installing the package. apt -y install mariadb-server mariadb-client Enables you to improve the security of your MariaDB installation. /usr/bin/mysql_secure_installation $ vi /etc/my.cnf [mysqld] character-set-server=utf8mb4 collation-server=utfmb4_unicode_ci …
우분투에서 MySQL 설치하기 Install apt install -y mysql-server 캐릭터셋 설정하기 $ vi /etc/my.cnf … [mysqld] character-set-server=utf8mb4 collation-server=utfmb4_unicode_ci systemctl restart mysql 서버 재부팅시 자동 활성화하기 $ systemctl stop mysql $ systemctl …
우분투에서 기본 패키지 설치하기 sudo su Upgrade your operating system to the latest. apt update && apt -y upgrade Installing prerequisites apt -y install git curl wget zip unzip vim …
우분투에서 가상호스팅으로 워드프레스 설치하기 Directory Structure . `– var/ `– www/ `– example.com/ |– public_html/ | `– index.html `– logs Virtualhost cp -r /var/www/wordpress /var/www/example.com Permission for owner (single user) …