Gitee碼雲端是國內的Git為基礎的開源程式碼託管平台,它提供了程式碼託管、版本管理、文件管理、程式碼review、bug 管理等功能,並且還支援CI/CD、程式碼搜尋、社交互動等進階功能。在這篇文章中,我們將介紹在 CentOS 7 系統中如何建置 Gitee 碼雲端平台。
一、環境需求
建置Gitee 碼雲端平台需要滿足以下系統需求:
在進行安裝前需要確認是否已經安裝了上述全部軟體。
二、安裝必要軟體
1.升級系統軟體包
首先,我們需要升級系統內的所有軟體包,執行以下命令:
yum update -y
2.安裝MariaDB
MariaDB 是MySQL 資料庫的一個分支,安裝與設定皆和MySQL 接近。執行下列指令以安裝MariaDB:
yum install mariadb mariadb-server -y
啟動並設定開機啟動:
systemctl start mariadb.service systemctl enable mariadb.service
接下來,可以使用下列指令對MariaDB 進行初步的安全性設定:
mysql_secure_installation
根據指令提示,依序輸入新密碼、確認新密碼、刪除匿名使用者、禁止root 遠端登入、刪除test 資料庫並刷新權限即可。
3.安裝nginx
執行以下命令安裝nginx:
yum install nginx -y
啟動並設定開機啟動:
systemctl start nginx.service systemctl enable nginx.service
此時,在瀏覽器中訪問伺服器位址,將看到Nginx 的預設歡迎頁面。
4.安裝JDK
Gitee 碼雲平台需要Java 環境,執行以下指令安裝JDK:
yum install java-1.8.0-openjdk-devel -y
三、安裝Gitee 碼雲
#1 .下載Gitee 碼雲
從Gitee 碼雲官網下載碼雲安裝包,將下載好的包解壓縮到伺服器的目標目錄下:
wget https://gitee.com/oschina/git-osc/raw/master/doc/installation/source/gitee-official-%{version}.tar.gz tar zxvf gitee-official-%{version}.tar.gz -C /data/
2.安裝MySQL
#將Gitee 碼雲提供的SQL 檔案匯入到資料庫:
mysql -u root -p < /data/gitee/install/mysql-gitee-create.sql
3.設定Gitee 碼雲
編輯/data/gitee/srv/gitee/config/application.yml 文件,設定其中的以下內容:
server: port: 8080 # Gitee 码云监听的端口 context-path: / # Gitee 码云的上下文路径 spring: datasource: type: com.alibaba.druid.pool.DruidDataSource username: gitee # 数据库的用户名 password: gitee123 # 数据库密码 url: jdbc:mysql://localhost:3306/gitee_prod?useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull mybatis: mapper-locations: classpath:gitee/mapper/*.xml # MyBatis 的配置文件 redis: host: 127.0.0.1 # Redis 服务端的 IP 地址 port: 6379 # Redis 服务端的监听端口 password: # Redis 的连接密码 database-index: 0 # Redis 的数据库编号
4.建置Gitee 碼雲
執行下列指令來建置Gitee 碼雲平台:
cd /data/gitee/ ./build.sh
建置完成後,在/data /gitee/srv/gitee 下將產生一個gitee.war 文件,將其拷貝至/data/gitee/tomcat-8.5.40/webapps 中。
5.啟動Gitee 碼雲
接下來執行以下命令來啟動Gitee 碼雲:
cd /data/gitee/tomcat-8.5.40/bin/ ./startup.sh
此時,可以在瀏覽器中輸入IP位址或域名,加上自訂的上下文路徑來存取Gitee 碼雲平台。
完成以上步驟之後,你就已經成功地搭建了 Gitee 碼雲平台,並且可以用它承載自己的開發項目。
以上是CentOS7系統中如何建置Gitee碼雲端平台的詳細內容。更多資訊請關注PHP中文網其他相關文章!