우분투 타임존 변경

ubuntu 2020. 3. 17. 05:10

다음 디렉터리 내에서 변경하고 싶은 대륙과 국가를 확인하고 해당 경로를 기억합니다.

# 대륙 및 국가 확인
ls /usr/share/zoneinfo/
변경을 원하는 대륙 및 국가의 경로를 복사한 뒤, /etc/localtime에 적용합니다.


# 서버 시간 변경
sudo ln -sf /usr/share/zoneinfo/Asia/Seoul /etc/localtime

 

 

아래해야 아파치 시간적용됨

sudo /etc/init.d/apache2 restart

'ubuntu' 카테고리의 다른 글

mysql 외부접속  (0) 2020.04.24
ssh 포트번호 변경  (0) 2020.01.03
[Ubuntu 16.04] node.js 와 npm 설치  (0) 2019.11.27
우분투 16.04.06 init.d venv 만들기  (0) 2019.11.20
aws 아마존 시간존 변경  (0) 2019.10.04
Posted by wakira
,

ssh 포트번호 변경

ubuntu 2020. 1. 3. 02:40

    1  sudo vi /etc/ssh/sshd_config
    2  service sshd restart
    3  sudo ufw allow 18182

 

user@ubuntu16:~$ cat /etc/ssh/sshd_config
# Package generated configuration file
# See the sshd_config(5) manpage for details

# What ports, IPs and protocols we listen for
Port 18182
# Use these options to restrict which interfaces/protocols sshd will bind to
#ListenAddress ::
#ListenAddress 0.0.0.0
Protocol 2
# HostKeys for protocol version 2
HostKey /etc/ssh/ssh_host_rsa_key
HostKey /etc/ssh/ssh_host_dsa_key
HostKey /etc/ssh/ssh_host_ecdsa_key
HostKey /etc/ssh/ssh_host_ed25519_key
#Privilege Separation is turned on for security
UsePrivilegeSeparation yes

# Lifetime and size of ephemeral version 1 server key
KeyRegenerationInterval 3600
ServerKeyBits 1024

# Logging
SyslogFacility AUTH
LogLevel INFO

# Authentication:
LoginGraceTime 120
PermitRootLogin prohibit-password
StrictModes yes

RSAAuthentication yes
PubkeyAuthentication yes
#AuthorizedKeysFile %h/.ssh/authorized_keys

# Don't read the user's ~/.rhosts and ~/.shosts files
IgnoreRhosts yes
# For this to work you will also need host keys in /etc/ssh_known_hosts
RhostsRSAAuthentication no
# similar for protocol version 2
HostbasedAuthentication no
# Uncomment if you don't trust ~/.ssh/known_hosts for RhostsRSAAuthentication
#IgnoreUserKnownHosts yes

# To enable empty passwords, change to yes (NOT RECOMMENDED)
PermitEmptyPasswords no

# Change to yes to enable challenge-response passwords (beware issues with
# some PAM modules and threads)
ChallengeResponseAuthentication no

# Change to no to disable tunnelled clear text passwords
#PasswordAuthentication yes

# Kerberos options
#KerberosAuthentication no
#KerberosGetAFSToken no
#KerberosOrLocalPasswd yes
#KerberosTicketCleanup yes

# GSSAPI options
#GSSAPIAuthentication no
#GSSAPICleanupCredentials yes

X11Forwarding yes
X11DisplayOffset 10
PrintMotd no
PrintLastLog yes
TCPKeepAlive yes
#UseLogin no

#MaxStartups 10:30:60
#Banner /etc/issue.net

# Allow client to pass locale environment variables
AcceptEnv LANG LC_*

Subsystem sftp /usr/lib/openssh/sftp-server

# Set this to 'yes' to enable PAM authentication, account processing,
# and session processing. If this is enabled, PAM authentication will
# be allowed through the ChallengeResponseAuthentication and
# PasswordAuthentication.  Depending on your PAM configuration,
# PAM authentication via ChallengeResponseAuthentication may bypass
# the setting of "PermitRootLogin without-password".
# If you just want the PAM account and session checks to run without
# PAM authentication, then enable this but set PasswordAuthentication
# and ChallengeResponseAuthentication to 'no'.
UsePAM yes

 

 

'ubuntu' 카테고리의 다른 글

mysql 외부접속  (0) 2020.04.24
우분투 타임존 변경  (0) 2020.03.17
[Ubuntu 16.04] node.js 와 npm 설치  (0) 2019.11.27
우분투 16.04.06 init.d venv 만들기  (0) 2019.11.20
aws 아마존 시간존 변경  (0) 2019.10.04
Posted by wakira
,

homebrew nvm 설치

OS X 설정 2019. 12. 2. 23:05

  246  sudo chown -R $(whoami) /usr/local/share/man/man8
  247  chmod u+w /usr/local/share/man/man8
  248  brew install nvm
  249  nvm -v
  250  nvm -vmkdir ~/.nvm
  251  mkdir ~/.nvm
  252  vi ~/.zshrc
  257  nvm --version
  260  nvm ls-remote
  261  nvm install v12.13.0
  262  node -v
  264* node -v

'OS X 설정' 카테고리의 다른 글

macOS usb 만들기  (2) 2024.10.31
Catalina 카타리나 usb 만들기  (0) 2020.08.09
Mojave 모하비 usb 만들기  (0) 2019.07.21
맥 ssh 입력주소 줄이기  (0) 2019.07.21
맥 초기 설치  (1) 2018.09.07
Posted by wakira
,