linux
文章平均质量分 70
kaolayao
;stay hungry, stay foolish!
展开
-
redhat 6.9 安装 yum
redhat6.9 安装yum redhat6.9 使用yum安装出现如下问题: [root@redhat6 ~]# yum install -y gcc gcc-c++已加载插件:product-id, refresh-packagekit, search-disabled-repos, security, subscription-managerThis system is not...原创 2018-08-27 16:00:09 · 4218 阅读 · 2 评论 -
centos 7 python3.7 安装
1. 查看原来版本的python2.7安装位置:[root@hadoop2 Python-3.7.0]# whereis pythonpython: /usr/bin/python /usr/bin/python2.7 /usr/lib/python2.7 /usr/lib64/python2.7 /etc/python /usr/local/bin/python3.7m /usr/loca...原创 2018-09-27 11:22:17 · 589 阅读 · 0 评论 -
centos7 安装npm ,node.js
1 .安装开发工具来构建系统上安装的本机插件> yum install -y gcc-c++ make>curl -sL https://rpm.nodesource.com/setup_10.x | bash -2 . 安装node.js npm卸载旧版本的 nodojs npm> yum erase nodejs npm -y查看是否删除干净&...原创 2018-09-06 17:17:25 · 430 阅读 · 0 评论 -
centos7 安装spark2.3.1 。安装scala2.12.6
1 .安装scala 1 ). 官网下载scala > wget https://downloads.lightbend.com/scala/2.12.6/scala-2.12.6.tgz2) 解压>tar -zxvf scala-2.12.6.tgz 3) 修改环境变量>vim /etc/profileexport SCALA_HOME=/root/y...原创 2018-08-30 13:39:39 · 1073 阅读 · 0 评论 -
redhat6.9安装 mysql 出现问题
问题1 : MySQL Daemon failed to start. 解决方法: 因为我之前安装过mysql。 现在虽然rpm 删除安装包,但是没有删除完全。[root@redhat6 yao]# rm -rf /var/lib/mysql/*再运行: service mysqld start 正常运行参考 : https://blog.csdn.net/hwijew...原创 2018-09-04 12:05:13 · 451 阅读 · 0 评论 -
redhat7.3 部署javaweb项目
因为之前安装过一次mysql,出现了问题,又不知道问题出在了哪里。所以打算卸载重装。 1 .卸载mysql 1) 查看mysql的安装包[root@redhat7 apache-tomcat-8.0.53]# rpm -qa|grep mysqlmysql-community-server-5.7.23-1.el7.x86_64mysql-community-common-5.7....原创 2018-08-29 14:35:17 · 304 阅读 · 0 评论 -
redhat 6.9 安装步骤
1. 安装后的配置:查看防火墙的状态:> service iptables status暂时关闭防火墙: > service iptables stop永久关闭防火墙:> chkconfig iptables off2. 安装jdk > rpm -qa|grep jdkjava-1.7.0-openjdk-1.7.0.1...原创 2018-08-20 20:05:38 · 7576 阅读 · 0 评论 -
redhat 镜像资源收集
红帽相关镜像资源 : http://www.linuxfly.org/post/659/ 绿色资源网: http://www.downcc.com/soft/318553.html redhat 和centos 系统安装指南:https://www.aliyun.com/jiaocheng/129510.html 红帽6.9 我的下载地址: 红帽7...原创 2018-08-20 19:57:40 · 1224 阅读 · 0 评论 -
redhat6.9 部署javaweb项目
部署javaweb包需要四个条件1 .jdk2. mysql3. tomcat 4 .war 我的服务器已经安装jdk1.8 所以安装以后的条件即可。1 .安装mysql [root@redhat6 yum.repos.d]# rpm -qa|grep mysqlmysql-libs-5.1.73-8.el6_8.x86_64[root@redhat6 yum.r...原创 2018-08-27 17:44:51 · 295 阅读 · 0 评论 -
yum不能使用问题
问题: [root@localhost yum.repos.d]# yum install wget已加载插件:fastestmirrorLoading mirror speeds from cached hostfileThere are no enabled repos. Run "yum repolist all" to see the repos you have. To e...原创 2018-12-03 16:04:08 · 11154 阅读 · 0 评论