linux
圆公子
这个作者很懒,什么都没留下…
展开
-
Linux下利用LAMP平台配置DVWA
1.搭建LAMP平台搭建方法:https://blog.csdn.net/weixin_46162146/article/details/1043746662.将下载好的DVWA文件放入页面目录下 /var/www/html#进入网页存放目录[root@localhost ~]# cd /var/www/html/#进入DVWA配置文件[root@localhost html]# c...原创 2020-02-19 15:35:31 · 921 阅读 · 0 评论 -
linux下安装tomcat
安装tomcat1.下载tomcat二进制文件[root@localhost ~]# wget http://mirror.bit.edu.cn/apache/tomcat/tomcat-8/v8.5.51/bin/apache-tomcat-8.5.51.tar.gz2.移动到/usr/local/下[root@localhost ~]# mv apache-tomcat-8.5.51....原创 2020-02-18 17:11:33 · 124 阅读 · 0 评论 -
Linux下安装Java
安装Java[root@localhost ~]# yum -y list java* ##查找java相关的列表##安装jdk[root@localhost ~]# yum -y install java-1.8.0-openjdk.x86_64 ##完成安装后验证[root@localhost ~]# java -version openjdk version "1...原创 2020-02-18 16:20:44 · 267 阅读 · 0 评论 -
red hat Linux搭建LAMP平台
Linux系统、Apache、Mysql、PHP安装配置前确保已有开发环境软件包[root@localhost ~]# yum -y install pcre-devel zlib-devel links关闭selinux 和 iptables[root@localhost ~]# vi /etc/selinux/config # 修改配置文件,关闭selinux功能SELINUX=...原创 2020-02-18 14:34:31 · 814 阅读 · 0 评论 -
red hat Linux安装myaql
安装mysql但是MySQL数据库软件从默认的程序列表中移除,用mariadb代替了,Linux配置教程上,大多都是安装mariadb,因为centos7默认将mariadb视作mysql,所有要按照mysql需要下载安装前先检查链接库文件有没有安装使用 命令进行核查[root@localhost ~]# rpm -qa | grep libaio[root@localhost ~]#...原创 2020-02-17 21:04:43 · 268 阅读 · 0 评论 -
red hat 7修改网卡名称
在RHEL/centos7中接口名称自动基于固件、拓扑结构和位置信息来确定,因此新的接口名称难以阅读,在系统安装完成后网卡是截图中这样的。使用起来较为不便,因此我们将图中的网卡名称改为熟悉的eth0首先将网卡配置文件名称重命名为eth0:cd /etc/sysconfig/network-scripts/mv ifcfg-eno1677736 ifcfg-eth0其次编辑修改后的网卡文...原创 2020-02-17 13:22:38 · 825 阅读 · 0 评论 -
red hat7安装wget
新安装的red hat纯净系统内在工具实在是少的可怜,而没有wget的的Linux就像没有网的Windows而新的系统了又没有wget安装包,所以无法使用rpm -ivh wget来安装而且red hat如果不是注册的话没有yum源,也无法使用yum install安装通过http://mirrors.163.com/centos/7/os/x86_64/Packages/wget-1.14...原创 2020-02-16 20:47:50 · 2901 阅读 · 0 评论 -
Red hat7安装yum源
RedHat yum源是收费的,没有注册的Redhat机器是不能使用yum源的。所以需要自己手动更改成CentOS 的更新包,CentOS几乎和RedHat是一样的,所以无需担心软件包是否可安装,下面是安装步骤。查看RHEL是否安装了yum,若是安装了,那么又有哪些yum包:[root@localhost ~]# rpm -qa |grep yumyum-rhn-plugin-2.0.1-...原创 2020-02-16 20:37:22 · 1580 阅读 · 4 评论