# ------ 파일 /etc/ssh/sshd_config 변경 내용 ------
# #Port 22 -> Port 22
# #AddressFamily any -> AddressFamily inet or inet6
# #ListenAddress XX.XX.XX.X -> ListenAddress XX.XX.XX.X
# PermitRootLogin yes -> PermitRootLogin no
# PasswordAuthentication yes -> PasswordAuthentication no
# X11Forwarding ?
$ sudo vi /etc/ssh/sshd_config
$ sudo systemctl reload sshd.service
# ---------- 파일 .ssh/config 변경 내용 ----------
# Host centos
# HostName <ip-address>
# Port <port>
# User <user-name>
$ vi .ssh/config
$ chmod 600 .ssh/config
$ ssh centos
$ ssh-keygen
$ ssh-copy-id <user-name>@<ip-address>
$ cat ~/.ssh/id_rsa.pub
$ vi authorized_keys
$ chmod 600 authorized_keys
$ ssh-keygen -R <ip-address>
: 리눅스 시스템에서 프록시 서버를 운영할 때 사용되는 자유-오픈소스 소프트웨어
journalctl -xe
semanage fcontext -a -t httpd_sys_content_t "/kodekloud(/.*)?"
restorecon -R /kodekloud
ls -l
ls -Z
ps axZ
id -Z
getenforce
sudo setenforce 0
sudo semanage login -l
sudo chcon -t <type> <file>
sysctl -a
sudo sysctl -w <key>=<value>
sudo sysctl -p <file-path>
sudo sysctl <key>
sudo sysctl -p