下载RPM安装包#wget -c -r -N -np -nd -L -nH https://repo.mongodb.org/yum/redhat/7/mongodb-org/stable/x86_64/RPMS/安装MongoDB#rpm -ivh mongodb-org-*
分类:
数据库 时间:
2016-01-02 14:14:05
阅读次数:
201
# wgethttp://c758482.r82.cf2.rackcdn.com/sublime_text_3_build_3083_x64.tar.bz2#tar jxvf sublime_text_3_build_3083_x64.tar.bz2 -C /opt# cd/opt/sublime_...
分类:
其他好文 时间:
2015-12-29 06:12:38
阅读次数:
265
第一章 管理网络查看网络信息显示网卡状态# nmcli dev status列出所有连接# nmcli con show只列出可用连接# nmcli con show --active显示网卡配置信息# ip addr show eth0添加网络连接# nmcli con add con-name ...
分类:
其他好文 时间:
2015-12-26 13:20:22
阅读次数:
219
1、创建ISO镜像存放路径,挂载ISO[root@host1Desktop]#mkdir/dvd[root@host1Desktop]#mkdir/root/isos/[root@host1Desktop]#echo"/root/isos/rhel-server-7.1-x86_64-dvd.iso/dvdiso9660loop00">>/etc/fstab[root@host1Desktop]#mount-a2、配置网卡地址cat>/etc/sysco..
分类:
其他好文 时间:
2015-12-24 00:41:50
阅读次数:
129
YUM方式添加Erlang源#vi /etc/yum.repos.d/erlang_solutions.repo[erlang-solutions]name=Centos 7 - $basearch - Erlang Solutionsbaseurl=http://packages.erlang-s...
分类:
其他好文 时间:
2015-12-21 01:59:41
阅读次数:
788
Redhat7搭建ntp(时间同步)安装:#yuminstallntp启动:#systemctlstartntpd#systemctlenablentpd查看同步:#ntpq-p开放防火墙:#firewall-cmd--permanent--add-service=ntp此时ntpServer已搭建完成客户端从ntpServer同步安装:#yuminstallntp修改配置:#vi/etc/ntp.confserver..
分类:
其他好文 时间:
2015-12-17 22:39:08
阅读次数:
331
Redhat7firewall(防火墙)启动、停止firewall#systemctlstart\stop\restart\statusfirewalld主配置文件:/etc/firewalld/zones/public.xmlfirewall命令:开放服务:#firewall-cmd--permanent--add-service=ssh关闭服务:#firewall-cmd--permanent--remove-service=ssh查看已开..
分类:
其他好文 时间:
2015-12-13 18:58:26
阅读次数:
450
Redhat7配置http安装:#yuminstallhttpd主配置文件:/etc/httpd/conf/httpd.conflog路径:/var/log/httpd启动:#systemctlstarthttpd#systemctlenablehttpd开放防火墙:#firewall-cmd--permanent--add-service=http其它地址访问该web(selinux):#setsebool-Phttpd_can_network_..
分类:
Web程序 时间:
2015-12-13 18:56:37
阅读次数:
148
Linux之用户及文件权限管理前言:Linux是一个多用户的操作系统;Linux哲学思想之一—“一切皆文件”。说明在学习Linux过程中,用户及文件权限的管理是非常重要滴。本文主要是引用了CentOs/RedHat7.1的命令。一.用户、组管理1).用户、组类型:超级用户(管理员):root用户具有一切..
分类:
系统相关 时间:
2015-12-12 17:19:54
阅读次数:
337
Redhat7安装mariadb(原mysql)安装:#yuminstallmariadbmariadb-server启动并开机启动:#systemctlstartmariadb#systemctlenablemariadb此时mysql的root密码为空#mysql–urootusermysql;updateusersetpassword=password(‘123456’)whereuser=root;flushprivileges;quit开防?.
分类:
数据库 时间:
2015-12-11 07:18:50
阅读次数:
543