码迷,mamicode.com
首页 >  
搜索关键字:restart    ( 3392个结果
ubuntu配置ftp服务器
sudo apt-get update sudo apt-get install vsftpd sudo vi /etc/vsftpd.conf sudo service vsftpd restart 测试ftp ftp localhost 账号:anonymous 密码:空 quit 添加ftp用 ...
分类:系统相关   时间:2016-06-09 08:36:20    阅读次数:194
虚拟机中的Linux不能上网
如果你已经确定你的宿主机Windows上的虚拟网卡已经打开了,即打开网络和共享中心 更改适配器设置中的 VMware 1 和VMware 8均处于启用状态。此时如果Linux的网络管理图标有个红色的叉号,分别执行ifconfig和/etc/init.d/network restart后出现如图所示结 ...
分类:系统相关   时间:2016-06-08 23:11:58    阅读次数:645
SUSE Linux 防火墙开启ssh远程端口
1、vim /etc/sysconfig/SuSEfirewall2 #编辑防火墙设置 FW_SERVICES_EXT_TCP="22" #开启22端口 TCP协议 rcSuSEfirewall2 restart #重启防火墙 rcSuSEfirewall2 status #查看防火墙运行情况 ...
分类:系统相关   时间:2016-06-08 15:45:17    阅读次数:166
工作经验 部署阿帕奇的时候出现 Starting httpd: httpd: apr_sockaddr_info_get() failed for server1 httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
service httpd restart Starting httpd: httpd: apr_sockaddr_info_get() failed for server1 httpd: Could not reliably determine the server's fully qualifi ...
分类:Web程序   时间:2016-06-08 15:32:19    阅读次数:144
php 超时 解决办法 (Maximum execution time of 30 seconds exceeded)这个问题?
1、 修改是APACHE设置,在PHP.INI中找到一个参数: 将后面的值调大,然后重新启动APACHE服务(centos: service httpd restart),就OK了。 2、 在php网页中加入下面的代码: ...
分类:Web程序   时间:2016-06-08 01:33:19    阅读次数:219
tomcat--脚本开启、重启和停止命令
#!/bin/bash#ConfluenceLinuxservicecontrollerscriptcd"/data/wiki/atlassian/confluence/bin"case"$1"instart)./start-confluence.sh;;stop)./stop-confluence.sh;;restart)./stop-confluence.sh./start-confluence.sh;;*)echo"Usage:$0{start|stop|restart}"exit1;;esac
分类:其他好文   时间:2016-06-07 13:15:51    阅读次数:487
Ubuntu等Linux系统清除DNS缓存的方法
buntu等Linux系统清除DNS缓存的方法 直接说方法: 如果系统下有nscd,那么就直接 sudo /etc/init.d/nscd restart 如果没有也没关系,网上接受的方法大都是 sudo aptitude install nscd sudo /etc/init.d/nscd res ...
分类:系统相关   时间:2016-06-06 11:45:53    阅读次数:255
ubuntu联网经常掉线的解决方法
打开电脑,发现联网的图标没有连接上,想手动点击连接上,却发现选项是灰色(不可选) 或者是图标显示已经连接上了,但浏览器就是无法上网,也ping不通 此时打开终端输入 sudo /etc/init.d/network-manager restart (重启网络管理) 然后问题就解决了 如果每次开机都敲 ...
分类:系统相关   时间:2016-06-04 14:53:43    阅读次数:217
openstack dnsmasq
killall dnsmasqsystemctl restart openstack-nova-compute/sbin/dnsmasq --conf-file=/var/lib/libvirt/dnsmasq/default.conf --leasefile-ro --dhcp-script=/u ...
分类:其他好文   时间:2016-06-02 19:52:44    阅读次数:288
ThinkPHP去掉URL中的index.php
1,先确认你有没mod_rewrite.so模块 然后在httpd.conf最后一行加上(我不加也行,自己都奇怪) LoadModule rewrite_module modules/mod_rewrite.so 重启/etc/init.d/apache2 restart 2,将/etc/apach ...
分类:Web程序   时间:2016-06-02 19:39:47    阅读次数:185
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!