linux
杰仔仔哦
这个作者很懒,什么都没留下…
展开
-
CentOS设置默认启动命令行(不启动图形界面)
在 centOS 中的修改方法如下:1.root登陆,免得老是sudo2.打开/etc/inittab 文件 #vim /etc/inittab3.在默认的 run level 设置中,可以看到第一行书写如:id:5:initdefault:(默认的 run level 等级为 5,即图形界面)4.将第一行的 5 修改为 3 即可。5.保存文件后重启...原创 2015-07-24 15:52:41 · 133 阅读 · 0 评论 -
nginx在centos中的安装方法(tar.gz格式)
从nginx的官方网站下载稳定版本,这里下载的版本号是nginx-1.0.2。在默认情况下,经过编译安装的Nginx包含了大部分可用模块,可以通过“./configure --help”选项设置各个模块的使用情况,例如对不需要的http_ssi模块,可通过“--without-http_ssi_module”参数关闭此模块;如果需要“http_perl”模块,则可以通过“--with-http_...原创 2016-05-16 16:38:43 · 313 阅读 · 0 评论 -
java.lang.illegalargumentexception:MALFORMED
在centos系统中,启动tomcat7时出现 java.lang.illegalargumentexception:MALFORMED原因:centos自带的jdk版本为1.7解决方案:删除原来自带的jdk版本1.7然后安装1.6的版本配合tomcat7启动即可解决。...原创 2016-05-17 10:59:03 · 1685 阅读 · 0 评论 -
startup.sh执行后报The file is absent or does not have execute permission
启动tomcat Cannot find bin/catalina.sh The file is absent or does not have execute permission This file is needed to run this program 原因: 没有权限解决方案: chmod 777 *.sh ...原创 2016-05-17 11:02:32 · 212 阅读 · 0 评论 -
安装memcache做./configure配置时报error:libevent is required
Libevent的API提供了这样的一套机制:当指定文件描述符中一个特定的事件发生,或者超时时间到达后执行指定的回调函数。此外,libevent回调功能也支持由信号或者常规的超时触发。注意其许可协议为BSD-style的协议,可以在商业级产品中采用而不必开源。解决方案:在安装之前需要安装libevent即可解决...原创 2016-05-17 13:33:44 · 1675 阅读 · 0 评论 -
syntax error near unexpected token ` 解决办法
在window下编辑AA.SH文件,然后在linux下运行sh文件,就会报错。原因是因为两个操作系统的编码格式不一致导致的。解决办法:1.window下编辑好后,然后用vi编辑器编辑此sh文件。2.键入:set fileformat=unix 回车3.再键入:wq 回车然后畅通无阻。...原创 2015-08-08 00:32:32 · 1688 阅读 · 0 评论 -
This file is needed to run this program
/data/restarttomcat.sh出现如下消息:Cannot find bin/catalina.sh The file is absent or does not have execute permission This file is needed to run this program 执行如下命令解决 : chmod 777 /data/res...原创 2015-09-18 14:54:37 · 1072 阅读 · 0 评论 -
利用rsync技术,单项文件同步(一)
第一步:拷贝tar包tar -xf rsync-3.1.2.tar.gz 第二步:装载配置文件cd rsync-3.1.2./configure --prefix=/usr 第三步:编译并安装make && make install 以上三步超级简单,是个程序猿无需多言。 需要在/etc目录下mkdir三个配置文件rsyn...原创 2017-06-29 14:34:07 · 240 阅读 · 0 评论 -
nginx中配置location的root(alias)访问同一个地址文件
我要访问http://yuming.com/B/c.html 按照正常的location配置应该是这样的:location / { root /data/html; index index.html index.htm; }以上配置说明我需要在/data/html/B/目录下访问c.html 但是...原创 2017-07-11 15:15:09 · 863 阅读 · 0 评论