/usr/local/Cellar/tomcat/9.0.21/bin
./catalina start
명령으로 톰캣 구동(서버 멈추는 건 ./catalina stop
)/usr/local/Cellar/tomcat9.0.21/libexec/conf
server.xml
있는지 확인vi server.xml
입력파일 내용 뜨면 Connector 태그를 찾아 port 번호가 8080으로 되어있는 것을 원하는 포트넘버로 바꾸기(내 경우 8000)
<Connector port="8000" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
<!-- A "Connector" using the shared thread pool-->
s
입력하면 그 자리에 있던 문자열 한글자가 삭제된 후 insert모드로 변하니 원하는 문자열을 입력하면 된다. esc로 인서트 모드 종료 후 :wq
입력하여 저장 및 파일 종료