阿里云

1.环境搭建

1.1MySQL

手动部署MySQL数据库(CentOS 7)

  1. 首先设置ECS入网规则快速配置
  2. 安装命令
    1.运行以下命令更新YUM源
    	rpm -Uvh  http://dev.mysql.com/get/mysql57-community-release-el7-9.noarch.rpm
    2.运行以下命令安装MySQL
    	yum -y install mysql-community-server
    3.运行以下命令查看MySQL版本号
    	mysql -V
    4.返回结果如下,表示MySQL安装成功
    	mysql  Ver 14.14 Distrib 5.7.26, for Linux (x86_64) using  EditLine wrapper
    
  3. 配置MySQL
    1.运行以下命令启动MySQL服务
    	systemctl start mysqld
    2.运行以下命令设置MySQL服务开机自启动
    	systemctl enable mysqld
    3.运行以下命令查看/var/log/mysqld.log文件,获取并记录root用户的初始密码
    	# grep 'temporary password' /var/log/mysqld.log
    	2019-04-28T06:50:56.674085Z 1 [Note] A temporary password is generated for root@localhost: 3w)WqGlM7-o,
    	说明 下一步重置root用户密码时,会使用该初始密码
    
  4. MySQL安全性配置
    运行下列命令对MySQL进行安全性配置
    	mysql_secure_installation
    安全性的配置包含以下五个方面:
    1.重置root用户的密码
    	Enter password for user root: #输入上一步获取的root用户初始密码
    	The 'validate_password' plugin is installed on the server.
    	The subsequent steps will run with the existing configuration of the plugin.
    	Using existing password for root.
    	Estimated strength of the password: 100 
    	Change the password for root ? ((Press y|Y for Yes, any other key for No) : Y #是否更改root用户密码,输入Y
    	New password: #输入新密码,长度为8至30个字符,必须同时包含大小写英文字母、数字和特殊符号。特殊符号可以是()` ~!@#$%^&*-+=|{}[]:;‘<>,.?/
    	Re-enter new password: #再次输入新密码
    	Estimated strength of the password: 100 
    	Do you wish to continue with the password provided?(Press y|Y for Yes, any other key for No) : Y
    2.输入Y删除匿名用户账号
    	By default, a MySQL installation has an anonymous user, allowing anyone to log into MySQL without having to have a user account created for them. This is intended only for testing, and to make the installation go a bit smoother. You should remove them before moving into a production environment.
    	Remove anonymous users? (Press y|Y for Yes, any other key for No) : Y  #是否删除匿名用户,输入Y
    	Success.
    3. 输入Y禁止root账号远程登录
    	Disallow root login remotely? (Press y|Y for Yes, any other key for No) : Y #禁止root远程登录,输入Y
    	Success.
    4.输入Y删除test库以及对test库的访问权限
    	Remove test database and access to it? (Press y|Y for Yes, any other key for No) : Y #是否删除test库和对它的访问权限,输入Y
    	- Dropping test database...
    	Success.
    5.输入Y重新加载授权表
    	Reload privilege tables now? (Press y|Y for Yes, any other key for No) : Y #是否重新加载授权表,输入Y
    	Success.
    	All done!
    
  5. 远程访问MySQL数据库 数据管理控制台
    您可以使用数据库客户端或阿里云提供的数据管理服务DMS(Data Management Service)来远程访问MySQL数据库。本节以DMS为例,介绍远程访问MySQL数据库的操作步骤。 
    1.在ECS实例上,创建远程登录MySQL的账号
    	 mysql -uroot -p
    2.依次运行以下命令创建远程登录MySQL的账号。示例账号为dms、密码为123456
    	mysql> grant all on *.* to 'dms'@'%'IDENTIFIED BY '123456'; #使用root替换dms,可设置为允许root账号远程登录。
    	mysql> flush privileges;
    	登录数据管理控制台 。
    3.在左侧导航栏中,选择自建库(ECS、公网)。
    4.单击新建数据库。
    5.配置自建数据库信息。 配置详情,请参见配置自建数据库。
    6.单击登录。
    7.成功登录后,您可以使用DMS提供的菜单栏功能,创建数据库、表、函数等,详情请参见管理ECS自建数据库。
    

1.2 GitLab

阿里云手动GitLab教程

1.2.1 手动部署GitLab环境

  1. 安装依赖包 sudo yum install -y curl policycoreutils-python openssh-server
  2. 设置SSH开机自启动并启动SSH服务。
    sudo systemctl enable sshd
    sudo systemctl start sshd
    
  3. 安装Postfix来发送通知邮件sudo yum install postfix
  4. 设置Postfix开机自启动sudo systemctl enable postfix
  5. 启动Postfix服务
    1. 行命令vim /etc/postfix/main.cf打开main.cf文件,找到inet_interfaces = localhost 修改为 inet_interfaces = all
    2. 运行命令sudo systemctl start postfix启动Postfix服务
  6. 添加GitLab软件包仓库curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash
  7. 安装GitLab sudo EXTERNAL_URL="GitLab服务器的公网IP地址" yum install -y gitlab-ce
  8. 使用浏览器访问GitLab服务器的公网IP地址。
    返回页面如下图所示,表示环境搭建成功,并且您需要设置新密码。

1.2.2使用GitLab

  1. 登录GitLab。
    在浏览器的地址栏中,输入ECS服务器的公网IP即可进入GitLab的登录界面,首次登录使用用户名root,密码为首次访问GitLab时设置的新密码。

  2. 创建Project
    11. 使用Linux自带的软件源安装Git工具 yum install git

    1. 生成密钥文件.ssh/id_rsa ssh-keygen

    2. 查看公钥文件id_rsa.pub中的内容。在下一步操作中,您需要粘贴该内容到GitLab服务器的SSH-key的配置文件中。 cat .ssh/id_rsa.pub

    3. 在GitLab的主页中新建一个Project

    4. 添加ssh key,导入步骤2中生成的密钥文件内容

    5. 保存项目地址,该地址在进行克隆操作时需要用到

  3. 简单配置

    1. 配置使用Git仓库的人员姓名。git config --global user.name "testname"
    2. 配置使用Git仓库的人员email,填写自己的公司邮箱 git config --global user.email "abc@example.com"
    3. 克隆项目,在本地生成同名目录,并且目录中会有所有的项目文件git clone git@iZxxxxxxxxxxxxxxxxx3Z:root/test.git
  4. 上传文件

    1. 进入到项目目录cd test/
    2. 创建需要上传到GitLab中的目标文件echo "test" > /root/test.sh
    3. 将目标文件或者目录复制到项目目录下cp /root/test.sh ./
    4. 将test.sh文件加入到索引中git add test.sh
    5. 将test.sh提交到本地仓库git commit -m "test.sh"
    6. 将文件同步到GitLab服务器上git push -u origin master
      在网页中查看上传的test.sh文件已经同步到GitLab中
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值