zabbix2.4安装笔记一、关闭防火墙和Selinux临时性的完全关闭防火墙,可以不重启机器:/etc/init.d/iptablesstatus##查看防火墙状态/etc/init.d/iptablestop##本次关闭防火墙/etc/init.d/iptablerestart##重启防火墙永久性关闭防火墙:chkconfig--level35iptablesoff##注意中间..
分类:
其他好文 时间:
2015-02-06 19:04:56
阅读次数:
215
安装redis yum?install?redis ? ??2. ?安装php-redis扩展 yum?install?php-redis ?? ? 3. ?启动redis,并设定开机自动启动 service?redis?start
chkconfig?redis?on ? 完成,安装就是这么简单、...
分类:
其他好文 时间:
2015-02-04 00:53:11
阅读次数:
226
MySQL在Ubuntu设置自启动的一个故障解决作者:chszs,转载需注明。博客主页:http://blog.csdn.net/chszs在解决MySQL自启动,执行命令:# chkconfig --list
The program 'chkconfig' is currently not installed. You can install it by typing:
apt-get ins...
分类:
数据库 时间:
2015-02-03 19:28:36
阅读次数:
181
一、安装 MySQL首先来进行 MySQL 的安装。打开超级终端,输入:[root@localhost ~]# yum install mysql mysql-server安装完毕,让 MySQL 能够随系统自动启动:[root@localhost ~]# chkconfig --levels 23...
分类:
其他好文 时间:
2015-02-03 10:41:53
阅读次数:
243
1. 安装mysql#yum -y install mysql-server2. 设置自启动和启动mysql设置MySQL服务随系统启动自启动#chkconfig mysqld on确认MySQL自启动(如果2--5为on的状态就OK)#chkconfig --list mysqld启动MySQL服...
分类:
数据库 时间:
2015-02-03 00:36:15
阅读次数:
271
linux 系统tomcat启动显示成功,8080的主页面也打开(三脚猫的页面可以打开),web程序页面打不开, 再反复查找原因后发现是防火墙没有关闭,
执行 chkconfig iptables off 永久关闭防火墙 web程序页面打开成了...
分类:
Web程序 时间:
2015-01-30 17:49:11
阅读次数:
213
#yum -y install php mysql mysql-server mysql-devel php-mysql php-cgi php-mbstring php-gd php-fastcgi#yum -y install nginx#chkconfig nginx on#yum insta...
分类:
数据库 时间:
2015-01-29 19:20:29
阅读次数:
158
启动脚本将JAVA_OPTS参数设置: vi ?/etc/rc.d/init.d/tomcat #!/bin/bash
#?chkconfig:?2345?10?90
#?description:?Starts?and?Stops?the?Tomcat?daemon.
?
export?CATALINA_HOME=/usr/local/tomc...
分类:
其他好文 时间:
2015-01-28 19:58:32
阅读次数:
321
1安装Apache
yum install httpd httpd-devel
安装完成后,用/etc/init.d/httpd start 启动apache
设为开机启动:chkconfig httpd on
2. 安装php
yum install php php-mysql php-common php-gd php-mbstring php-mc...
分类:
Web程序 时间:
2015-01-28 16:03:10
阅读次数:
164
#yum -y install memcached#/etc/rc.d/init.d/memcached start#cat /etc/sysconfig/memcached#chkconfig --add memcached#chkconfig memcached on#yum -y instal...
分类:
系统相关 时间:
2015-01-28 12:47:28
阅读次数:
139