Installation of TeamCity continuous integration in Linux
In fact, it is very easy to install TeamCity, but I have found a lot on the Internet and no one has written about the installation. I want to use this simple article to help more new users get on the road.
The TeamCity path downloaded in this article is/usr/local/src/
# Cd/usr/local/src/TeamCity
# ../Bin/teamcity-server.sh start
Shown as follows:
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
Check whether tomcat and teamcity are successfully started.
View the configuration file to learn the teamcity port number.
# 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)
8111 indicates the port number.
Access via ip + port is available
This article permanently updates the link address: