码迷,mamicode.com
首页 >  
搜索关键字:shutdown    ( 2554个结果
eclipse修改默认workspace
1、进入 Window > Preferences > General > Startup and Shutdown 选中 Prompt for workspace on startup。2、进入Eclipse的安装目录,找到configuration 目录下的 .settings 文件夹,里面有一...
分类:系统相关   时间:2014-07-31 12:20:56    阅读次数:253
Deploy Oracle 10.2.0.5 DataGuard on Red Hat Enterprise Linux 6.4
主库部分 开启归档,force logging SQL> archive log list SQL> shutdown immediate SQL> startup mount SQL> alter database archivelog; SQL> shutdown immediate SQL> startup SQL> alter database force...
分类:数据库   时间:2014-07-30 17:30:24    阅读次数:389
tomcat的shutdown端口设置
是在同一台服务器的同一用户下,部署了两个相同的项目。当初偷懒赶时间,只是把原来的拷贝了一下,改了下startup的端口号。平时都是只起一个,今天因为各自都在用,所以两个都起了,结果发现,两个不能同时起。catalina.out日志中记录了tomcat启动失败的原因,是因为shutdown端口已经被另...
分类:其他好文   时间:2014-07-29 20:46:05    阅读次数:332
Unix/Linux环境C编程入门教程(40) 初识文件操作
??1.函数介绍                            close(关闭文件) 相关函数 open,fcntl,shutdown,unlink,fclose 表头文件 #include 定义函数 int close(int fd); 函数说明 当使用完文件后若已不再需...
分类:系统相关   时间:2014-07-29 14:17:39    阅读次数:391
graph driver-device mapper-02driver基本操作
// 清除thin pool 1.1 func (d *Driver) Cleanup() error { // 停止thin pool err := d.DeviceSet.Shutdown() return err } // 当加载新镜像时,添加一个新thin device // id为containerid或imageid 1.2 func (d *Driver) Create(i...
分类:移动开发   时间:2014-07-26 02:59:46    阅读次数:302
网络编程Socket之TCP之close/shutdown详解(续)
接着上一篇网络编程Socket之TCP之close/shutdown详解...
分类:其他好文   时间:2014-07-23 13:11:26    阅读次数:202
每天一个linux命令(2):关机命令shutdown
关机 (系统的关机、重启以及登出 )shutdown -h now 关闭系统(1)init 0 关闭系统(2)telinit 0 关闭系统(3)shutdown -h hours:minutes & 按预定时间关闭系统shutdown -c 取消按预定时间关闭系统shutdown -r now 重启...
分类:系统相关   时间:2014-07-23 12:30:06    阅读次数:242
C 关闭socket
C关闭socket有两种方法: 一、shutdown #include<sys/socket.h> int shutdown(int sockfd,int how); how的方式有三种分别是 SHUT_RD(0):关闭sockfd上的读功能,此选项将不允许sockfd进行读操作。 SHUT_W...
分类:其他好文   时间:2014-07-22 22:32:55    阅读次数:198
OSGI学习总结---Equinox各种命令
OSGJ:Equinox for Eclipse(Luna)?命令 launch?- start the OSGi Framework shutdown?- shutdown the OSGi Framework close?- shutdown and exit exit?- exit immediately (System.exit) init?- uninstall...
分类:其他好文   时间:2014-07-22 08:10:36    阅读次数:278
网络编程Socket之TCP之close/shutdown详解
close: 当套接字的引用计数为0的时候才会引发TCP的四分组连接终止序列;   shutdown: 不用管套接字的引用计数就激发TCP的正常连接终止序列; 这里由一个SO_LINGER套接字选项 struct linger {      int l_onoff; /* 0 = off, nozero = on */      int l_linger; ...
分类:其他好文   时间:2014-07-20 22:24:53    阅读次数:367
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!