【Linux】
shenzhen_zsw
这个作者很懒,什么都没留下…
展开
-
centos7下安装apache服务器httpd的yum方式安装
Apache在Linux系统中,其实叫“httpd”,可以使用yum来安装。1、查看httpd包是否可用:# yum list | grep httpd2、安装Apache# yum install httpd3、配置ServerName# vi /etc/httpd/conf/httpd.conf如果没有域名,则原创 2017-06-28 17:53:49 · 14022 阅读 · 0 评论 -
【CentOs7.x】- 安装httpd服务
#安装httpd[root@localhost soft]# yum list | grep httpd[root@localhost soft]# yum install httpd#配置httpd[root@localhost soft]# vi /etc/httpd/conf/httpd.conf ......ServerName localh原创 2017-09-04 22:56:50 · 441 阅读 · 0 评论 -
【Centos7.x】 - 安装svn
安装svn[root@localhost ~]# yum install mod_dav_svn subversion -y[root@localhost ~]# systemctl restart httpd.service[root@localhost ~]# ls /etc/httpd/modules/ | grep svnmod_authz_svn.somod_dav_svn.so原创 2017-09-05 01:28:11 · 231 阅读 · 0 评论 -
【CentOS7.x】关闭系统自带防火墙或调整设置iptables
【CentOS7.x】关闭系统自带防火墙或调整设置iptablesCentOS 7.x系统默认使用的是firewall做防火墙,而且有些端口没有开放,需要临时关闭或进行调整。如使用iptables需重新设置。1、直接关闭防火墙systemctl stop firewalld.service #停止firewallsystemctl disable firewalld.service #禁止fire原创 2017-09-04 23:03:08 · 642 阅读 · 0 评论 -
【CentOS7.x】设置tomcat开机启动
[root@edu-ci-server bin]# vi /etc/rc.local touch /var/lock/subsys/local#!/bin/sh## This script will be executed *after* all the other init scripts.# You can put your own initialization stuff in he原创 2017-09-06 12:19:30 · 310 阅读 · 0 评论 -
BugFree3.0.4Linux环境安装指南
bugfree安装的前提是配置LAMP(apache+mysql+php),我安装的linux系统是centos6.0一、安装Apache服务器1、安装apacheyum install httpd检查apache服务器是否安装:service httpd status启动apache进程:service httpd start二、安装mysql转载 2017-09-10 12:50:57 · 618 阅读 · 0 评论 -
Linux常用软件安装
Linux常用软件安装1. 目标1.1. 熟练使用Linux常用命令1.2. 熟练修改Linux的基本配置1.3. 熟练在Linux上安装JDK、Tomcat、MySQL软件2. 修改Linux的基本配置1.修改主机名vi /etc/sysconfig/networkNETWORKING=yesHOSTNAME=server1.itcast.原创 2017-11-03 22:36:33 · 703 阅读 · 0 评论 -
CentOS 7 安装 nginx
1、准备工作Nginx的安装依赖以下文件: 1.1、安装gcc: yum install gcc-c++ 1.2 、安装PCRE pcre-devel: yum install -y pcre pcre-devel 1.3 、安装zlib: yum install -y zlib zlib-devel 1.4、安装OpenSSL: ...原创 2018-08-29 21:59:55 · 142 阅读 · 0 评论 -
XShell连接阿里云CentOS7.x服务-Connection closed by foreign host.
XShell连接阿里云CentOS7.x服务-Connection closed by foreign host.1)进入云安全中心2)选择安全配置3)添加一个白名单说明: 1)不知道自己IP外网IP,就设置了所有,先用着先,哈哈。。。==============================QQ群:143522604群里有相关资源欢...原创 2019-03-22 21:18:56 · 1099 阅读 · 0 评论 -
CentOS7.x 安装、配置JDK、Maven
CentOS7.x 安装、配置JDK、Maven#创建存储目录[root@localhost ~]# mkdir -p /application/soft/[root@localhost ~]# cd /application/soft/#安装上传、下载命令[root@localhost soft]# rz -y[root@local原创 2017-09-04 22:49:15 · 1620 阅读 · 0 评论 -
Centos7.x - 安装vim
#安装vim[root@localhost soft]# yum install vim -y原创 2017-09-04 22:44:51 · 15461 阅读 · 0 评论 -
CentOS7系统操作httpd服务 - 开机启动/重启/查看状态
操作部署某个环境的时候使用的是CentOS7版本,然后在需要启动httpd服务的时候惯性的使用service httpd start命令,但是提示有"/bin/systemctl start httpd.service"问题。看来系统变动之后一些操作命令还是有些变化的。当然,为了兼容性,我们原来习惯使用的service命令在CentOS7中仍然是可以使用的,它会重定向命令到新的syste原创 2017-09-04 22:39:37 · 58320 阅读 · 2 评论 -
Linux系统下安装rz/sz命令及使用说明
方法1yum install lrzsz -y方法2对于经常使用Linux系统的人员来说,少不了将本地的文件上传到服务器或者从服务器上下载文件到本地,rz / sz命令很方便的帮我们实现了这个功能,但是很多linux系统初始并没有这两个命令。今天,我们就简单的讲解一下如何安装和使用rz、sz命令。1.软件安装root 账号登陆后,依次原创 2017-06-29 12:00:21 · 307 阅读 · 0 评论 -
CentOS7修改网卡为eth0
CentOS7修改网卡为eth01.编辑网卡信息[root@Linux-node2~]# cd /etc/sysconfig/network-scripts/ #进入网卡目录[root@linux-node2network-scripts]# mv ifcfg-eno16777728 ifcfg-eth0 #重命名网卡名称[root@linux-node2原创 2017-06-29 12:05:20 · 309 阅读 · 0 评论 -
CentOS7 更改yum源
更改yum源yum install wget net-tools -ymv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backupwget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-.rep原创 2017-06-29 12:50:17 · 424 阅读 · 0 评论 -
在CentOS7下获取Mac地址的值
[root@localhost shell]# ifconfig eth0eth0: flags=4163 mtu 1500 inet 192.168.2.10 netmask 255.255.255.0 broadcast 192.168.2.255 inet6 fe80::20c:29ff:fed7:8537 prefixlen 64 scopeid原创 2017-06-29 17:47:31 · 39920 阅读 · 5 评论 -
vim如何删除文件中所有东西
方法1: 按ggdG方法2: :%d原创 2017-06-29 18:33:59 · 4237 阅读 · 0 评论 -
关于 bash:$'\r': command not found 的问题
inux下有命令dos2unix你只要输入dos2unix *.sh就可以完成转换工作了原创 2017-06-29 18:34:24 · 6279 阅读 · 1 评论 -
ssh异常-Could not load host key: /etc/ssh/ssh_host_ed25519_key
执行此命令即可ssh-keygen -t dsa -f /etc/ssh/ssh_host_ed25519_key[root@45d05816f584 /]# /usr/sbin/sshd -DCould not load host key: /etc/ssh/ssh_host_ed25519_key[root@45d05816f584 /]# ssh-keygen -t原创 2017-06-29 20:36:37 · 19703 阅读 · 1 评论 -
Vm虚拟机安装CentOS7-Minimal版本安装
1、虚拟机配置网络新建虚拟机直接下一步就好了,有提示,直接yes即可;安装后的效果原创 2017-06-27 20:17:26 · 410 阅读 · 0 评论 -
Linux查看端口、进程情况及kill进程
Linux查看端口、进程情况及kill进程看端口:ps -aux | grep tomcat发现并没有8080端口的Tomcat进程。使用命令:netstat -apn查看所有的进程和端口使用情况。发现下面的进程列表,其中最后一栏是PID/Program name clip_image002发现8080端口被PID为9658的Java进程占用。进一步使用命令:ps -aux | g...原创 2019-06-02 15:33:55 · 162 阅读 · 0 评论