
部署
文章平均质量分 50
huangjiazhi_
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
docker 部署gitlab11.8.0
docker搭建gitlab11.8.0原创 2022-09-01 10:50:33 · 348 阅读 · 0 评论 -
Ubuntu16.04修改网卡名称
修改/etc/default/grub 如果有则修改,没有则添加 GRUB_CMDLINE_LINUX="net.ifnames=0 biosdevname=0" 命令行执行 update-grub 修改 /etc/network/interfaces auto eth0 iface eth0 inet static address 192.168.1.100 netmask 255.255.255.0 gateway 192.168.1.1 dns-nameservers 114.114.原创 2020-10-28 18:50:36 · 929 阅读 · 0 评论 -
ubuntu搭建git服务及使用
安装 apt-get install git-core openssh-server openssh-client 或者,git-core 后来更名为 git apt-get install git openssh-server openssh-client 配置git服务 创建管理员账号(必需) 创建用户名为git的系统用户 指定使用的shell环境为/bin/bash 指定git用户的家目录 /home/git useradd -m git -s /bin/bash -d /home/git原创 2020-10-23 17:28:26 · 252 阅读 · 0 评论 -
nrm搭建使用
下载 从这里选择要安装的版本 https://nodejs.org/zh-cn/download/releases/ 安装 本次以node-v8.16.0-linux-x64.tar.gz版本为例 wget https://nodejs.org/download/release/v8.16.0/node-v8.16.0-linux-x64.tar.gz 解压到 /opt/目录 tar zxvf node-v8.16.0-linux-x64.tar.gz -C /opt/ 建立nodejs的原创 2020-09-16 15:05:36 · 140 阅读 · 0 评论 -
ubuntu16.04.7记录安装OpenCV
apt-get 方式安装 安装命令 sudo apt-get install libopencv-dev python-opencv 查看版本 pkg-config opencv --modversion 源码安装 下载地址 https://jaist.dl.sourceforge.net/project/opencvlibrary/opencv-unix/2.4.9/opencv-2.4.9.zip 安装 unzip opencv-2.4.9.zip cd opencv-2.4.9 mkd原创 2020-09-16 13:37:52 · 202 阅读 · 0 评论 -
Ubuntu16.04.6下搭建Maven私服仓库(Nexus)
下载Nexus apt-get update docker pull sonatype/nexus3 cd /usr/local/ mkdir docker cd docker mkdir nexus cd nexusdocker-compose.yml vim docker-compose.yml 内容如下 version: '3.1' services: nexus: restart: always image: sonatype/nexus3 container_name:原创 2020-09-02 09:59:57 · 1086 阅读 · 1 评论 -
Docker安装步骤
更新apt包目录 apt-get update 安装https支持 apt-get -y install apt-transport-https ca-certificates curl software-properties-common 添加Docker的官方GPG Key curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - 验证密钥 apt-key fingerprint 0EBFCD88 添原创 2020-06-19 16:13:19 · 259 阅读 · 0 评论 -
Nginx文件服务器配置
在/etc/nginx/conf.d下添加扩展名为conf的配置文件 server{ listen 8100; root /released; server_name nginx_localhost; location / { autoindex on; autoindex_exact_size o...原创 2019-08-30 15:41:56 · 166 阅读 · 0 评论