맥OS에서 도커 사용하기
맥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: …
맥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 # …
우분투에서 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) …
우분투에서 워드프레스 보안 인증서(SSL) 설치하기 Installing Certbot apt -y install certbot python3-certbot-apache Obtaining an SSL Certificate certbot –apache Auto Renew Show crontab list crontab -l every 1 month crontab -e …
우분투에서 워드프레스 설치하기 When you request a directory without specifying a filename, index.html will be given the priority and hence will be displayed. You can change the priority order in …
우분투에서 php sendmail 설치하기 require more 1GB RAM Installation apt -y install sendmail php-mail Configure vim /etc/hosts 127.0.0.1 localhost example.com sendmailconfig vim /etc/php/7.4/fpm/php.ini sendmail_path = "env -i /usr/sbin/sendmail -t -i" …
우분투에서 php Ioncube loader 설치하기 Ubuntu check operating system bit getconf LONG_BIT 64 Download Ioncube Loader cd /tmp wget http://downloads3.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.tar.gz tar -zxvf ioncube_loaders_lin_x86-64.tar.gz cd ioncube/ Obtain php location for modules …