14.Docker搭建GitLab

 

2,修改Linux的ssh 22端口

将Linux的ssh连接端口由22改为65000。

1
vim /etc/ssh/sshd_config

添加Port 65000

1
2
3
4
5
6
7
8
9
10
11
...
# If you want to change the port on a SELinux system, you have to tell
# SELinux about this change.
# semanage port -a -t ssh_port_t -p tcp #PORTNUMBER
#
#Port 22
Port 65000
#AddressFamily any
#ListenAddress 0.0.0.0
#ListenAddress ::
...
1
2
3
4
5
6
7
8
9
10
11
12
// 把新的Port口告诉SELinux
semanage port -a -t ssh_port_t -p tcp 65000

# 如果不能执行先安装一下
# yum install policycoreutils-python
# // 把新的Port口告诉SELinux
# semanage port -a -t ssh_port_t -p tcp 65000

// 重启ssh
systemctl restart sshd.service
// 查看ssh状态
service sshd status

重启Linux系统。

1
2
// 关闭防火墙
systemctl stop firewalld.service

以后只能使用修改之后的端口登陆了

1
ssh://root:[password]@192.168.1.7:65000