일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- docker
- NextJS
- submit
- FCM
- mysql
- rocky9
- Java
- Push
- node.js
- spring3
- pwa
- security
- config
- nodejs
- jquery
- PM2
- SpringBoot
- popup
- MSsql
- git
- ajax
- centos7
- mybatis
- javascript
- MariaDB
- yona
- Next.js
- Eclipse
- Maven
- jenkins
- Today
- Total
목록centos7 & rocky9 (17)
ふたりで
[root@localhost lib]# netstat -tln Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN tcp 0 0 0.0.0.0:27017 0.0.0.0:* LISTEN tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN tcp 0 0 192.168.122.1:53 0.0.0.0:* LISTEN tcp6 0 0 :::22 :::* LISTEN tcp6 0 0 ::1:631 :::* LISTEN tcp6 0 0 127.0...
1. JDK설치 #yum install java-1.8.0-openjdk-devel.x86_64 2. tomcat8.x 다운로드 및 압축 해제 및 이동 #wget http://apache.tt.co.kr/tomcat/tomcat-8/v8.5.54/bin/apache-tomcat-8.5.54.tar.gz #tar -xzf apache-tomcat-8.5.54.tar.gz #mv ./apache-tomcat-8.5.54 /usr/local/tomcat8 3. tomcat 서비스 등록. [root@localhost dbkang]# cat /etc/systemd/system/tomcat8.service # Systemd unit file for tomcat [Unit] Description=tomcat8 Aft..
tail -f [file] 로 모니터링 중 ctrl+s 를 하면 화면 스크롤이 멈춘다. 다시 모니터링을 시작 하려면 ctrl+r 을 하면 멈추었던곳 부터 현재 까지 내용이 출력 되면서 다시 모니터링을 할 수있다.
centos7 이상부턴 firewall로 포트오픈을 한다. #>firewall-cmd --zone=public --permanent --add-port=8080/tcp firewall-cmd --reload firewall-cmd --zone=public --list-all
//jenkins yum설치 ]#yum -y install https://pkg.jenkins.io/redhat/jenkins-2.157-1.1.noarch.rpm 설치 과정 지나가고 Installed: jenkins.noarch 0:2.157-1.1 Complete! ]# //jenkins 서비스 구동 ]#service jenkins start //중지 ]#service jenkins stop //jenkins 포트 변경. //jenkins config 열기 ]#vi /etc/sysconfig/jenkins ## Type: integer(0:65535) ## Default: 8080 ## ServiceRestart: jenkins # # Port Jenkins is listening on. # Set ..