Author - 오길호

Image Warehouse Update

Recently, we have performed server migration and stabilization work due to a sudden increase in traffic. Changed name servers Modified source code Updated design Changed usage instructions Added short domain Supported mobile access Enabled image zoom feature In addition, we plan to enable fast access from overseas through a CDN in the near future. If...

Removing PAGEFILE.SYS and HIBERFIL.SYS

Removing pagefile.sys (A file that uses hard disk as RAM when memory is insufficient) Control Panel – System – Advanced system settings Advanced tab – Settings Advanced tab – Change Uncheck the box for automatic management of paging file size for all drives No paging file – Settings hiberfil.sys (Temporary file for hibernation) Start –...

Changing SSH Port (CentOS)

SSHD Configuration vi /etc/ssh/sshd_config Port {port_number} service sshd restart Firewall Configuration vi /etc/sysconfig/iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport {port} -j ACCEPT service iptables restart * After changing the SSH port, ensure that the firewall is configured to allow traffic on that port.