|
In fact, this TeamCity installation is very simple, but the Internet to find a lot of people did not write install this regard, Daniel, do not spray it, I want this simple little article to help more novice.
This article download TeamCity path is / usr / local / src /
# Cd / usr / local / src / TeamCity
# ./bin/teamcity-server.sh Start
It is shown below:
Using CATALINA_BASE: / usr / local / src / TeamCity
Using CATALINA_HOME: / usr / local / src / TeamCity
Using CATALINA_TMPDIR: / usr / local / src / TeamCity / temp
Using JRE_HOME: / usr
Using CLASSPATH: /usr/local/src/TeamCity/bin/bootstrap.jar:/usr/local/src/TeamCity/bin/tomcat-juli.jar
Tomcat started.
# Ps aux | grep tomcat
# Ps aux | grep teamcity
See if tomcat and have successfully started to teamcity
Then by viewing the configuration file the port number that teamcity
#vim /usr/local/src/TeamCity/conf/server.xml
< Connector port = "8111" protocol = "org.apache.coyote.http11.Http11NioProtocol"
connectionTimeout = "60000"
redirectPort = "8543"
useBodyEncodingForURI = "true"
socket.txBufSize = "64000"
socket.rxBufSize = "64000"
tcpNoDelay = "1"
/>
This version is TeamCity 9.0.2 (build 32195)
Where 8111 is the port number
Open the can with ip + port access |
|
|
|