centos6使用yum源安装gitlab-ce私有环境

使用清华镜像源配置yum源: vim /etc/yum.repos.d/gitlab.repo [Gitlab-CE]name=GitlabCEbaseurl=https://mirror.tuna.tsinghua.edu.cn/gitlab-ce/yum/el6/enabled=1gpgcheck=0 2. yum安装 yum installgitlab-ce -y 3.

CentOS下yum安装PostgreSQL

目录 1Configure YUM repository 2Install PGDG RPM file 3Install PostgreSQL 4配置 5Initialize 6Startup 7艺搜参考 Configure YUM repository vim /etc/yum.repos.d/CentOS-Base.repo [base] and [updates] sec

CentOS环境下jdk的安装与配置

下载 搜索jdk 点击download 同意协议,选择下载 解压 tar -zxvf jdk-8u101-linux-x64.tar.gz 编辑/etc/profile文件 在/etc/profile文件末尾添加如下内容 export JAVA_HOME=/path/to/jdk1.8.0_101export PATH=$JAVA_HOME/bin:$PATHexport CLASSPATH=

Centos配置SAMBA服务

1,安装 2,配置/etc/samba/smb.cnf workgroup = WORKGROUP security = user [glory] comment = glory_share path = /data/app public = yes writable = yes browseable = yes

使用cmake在CentOS6.5安装MYSQL5.6

一、卸载CentOS6.5中已经安装的mysql版本和工具包的安装 1、使用命令检查是否安装有MySQL Server,如果已经安装就卸载掉 [root@wlm~]#rpm-qa|grepmysqlmysql-server-5.1.73-7.el6.x86_64mysql-connector-odbc-5.1.5r1144-7.el6.x86_64mysql-5.1.73-7.e

Install and use CentOS 7 or RHEL 7 as KVM virtualization hos

When thinking about virtualization, everybody immediately thinks about VMWare. And it must be said, the product they offer is very decent but also comes with a “decent” price. As an alternative, it’s

CentOS 网络设置

一、自动获取IP 1、编辑网卡配置文件 vi /etc/sysconfig/network-scripts/ifcfg-eth0 2、修改配置文件相关配置 BOOTPROTO=dhcp 二、设置固定IP 1、编辑网卡配置文件 vi /etc/sysconfig/network-scripts/ifcfg-eth0 2、修改配置文件相关配置 BOOTPROTO=sta

Centos 配置eth0 提示Device does not seem to be present

Centos 配置eth0 提示Device does not seem to be present 一.故障现象: [root@c1node01 ~]# service network restart Shutting down loopback insterface:[ OK

centos 手动增加swap分区

SWAP是Linux中的虚拟内存,用于扩充物理内存不足而用来存储临时数据存在的。它类似于Windows中的虚拟内存。在Windows中,只可以使用文件来当作虚拟内存。而linux可以文件或者分区来当作虚拟内存。 首先查看当前的内存和swap 空间大小(默认单位为k, -m 单位为M

Centos 7下安装node.js

今天买了一个阿里云的学生服务器,系统为Centos 7,做为一个前端学习者,必不可少的就是给服务器安装Node,作为linux小白的我,期间还是与坑不少,这里就来记录一下安装的过程: 安装node Node的安装需要依赖很多,如gcc等,首先我们需要将这些安装成功,用rp

返回顶部