Linux
-
[Linux] SCP 명령어로 서버 간 파일 복사, 가져오기Linux 2023. 1. 17. 20:42
1) 서버 A에서 서버 B로 파일 복사 scp 경로/파일명 서버B유저명@서버B ip주소:서버B 경로 scp ./test.txt userB@192.0.0.1:/home/userB/Desktop → ./는 현재 위치 2) 서버A에서 서버 B 파일 가져오기 scp 서버B유저명@서버B ip주소:/경로/파일명 서버A경로 scp userB@192.0.0.1:/home/userB/Desktop/test.txt /home/userA/Desktop
-
리눅스(Linux) Apache 상태/시작/중지/재시작Linux 2022. 7. 11. 12:57
Apache 버전 확인 httpd -v Apache 상태 확인 systemctl status httpd service httpd status Apache 시작 systemctl start httpd service httpd start apachectl start Apache 중지 systemctl stop httpd service httpd stop apachectl stop Apache 재시작 systemctl restart httpd service httpd restart apachectl restart