怎样启动数据库服务?
方法步骤如下:
依次找到并打开电脑里的“计算机”“管理”,左侧列表选择“服务”和“应用程序”。
“服务”如果是oracle数据库,搜索OracleService文件,启动即可。
Sqlsever数据库的话,搜索SQL Server启动。
如何用Dos命令启动数据库服务:
快速进入服务面板“运行”:servicesmsc
快速启动服务:net start <services>
快速启动oracle:oradim
此命令对于一些系统下服务面板启动数据库不行的时候,很奏效。
SqlServer是微软的一款数据库系统产品,名字叫SQLServer。它跟Aess其实是一种基本功能相同的软件系统。
当每一个数据库安装到每一台电脑后,都会与计算机名称(有的是IP地址)关联。因为服务器用途的电脑不能经常改变名称或IP地址。所以它会与之关联。
同时默认的的在安装过程中会建立一个名字为自己的计算机名称一样的连接(连接的意思是类似一栋楼房里都有门牌号一样),自己通过它才能进入房间,访问这个系统的信息数据。
扩展资料:
SqlServer数据库系统软件会查找在局域网络内的SqlServer服务器名称的。如果局域网内只有自己本机安装了Sqlserver那么它就会只显示自己一个,如果局域网内还有其他人安装了Sqlserver,那么就会出现2个供自己选择指定连接哪个。
数据库是一种既常见又不普通的存储处理方式系统。简单说一个运水的卡车(代表:SqlServer服务器)那么卡车和车厢是硬件服务器,而车厢上的水罐是SqlServer数据库(服务器)系统,而接这些水罐的管子则是查询分析器。而水则是咱们的数据和信息。
1、点击开始--所有文件--Microsoft SQL Server 2008--配置工具--SQL Server 配置管理器,如图所示,
2、点击SQL SERVER服务---SQL Server(MSSQLSERVER),双击打开,
3、点击服务---启动模式,设置为“手动”就可以了。这样以后开机,sql server 就不会自动启动了,需要手工启动才行。
4、手工启动sql server 数据库服务的方法也很简单,只需要点击登录---服务状态---启动就可以了;手动停止sql server点击登录---服务状态---停止。
PostgreSQL服务器启动及关闭方法
PostgreSQL采用C/S(客户机/服务器)模式结构。应用层通过INET或者Unix Socket利用既定的协议与数据库服务器进行通信。下面我为大家搜集相关的PostgreSQL服务器启动及关闭方法!
1 启动数据库服务器(posgres用户):
[postgres@localhost bin]$ postgres -D /opt/postgresql/data/ > /opt/postgresql/log/pg_serverlog 2>&1 &
[1] 4508
当然如果设置了环境变量
PGDATA=/opt/postgresql/data
export PGDATA
后,可使用pg_ctl工具进行启动:
[postgres@localhost log]$ pg_ctl start -l /opt/postgresql/log/pg_serverlog
pg_ctl: another server might be running; trying to start server anyway
pg_ctl: could not start server
Examine the log output
[postgres@localhost log]$
因为之前已经启动,所以打印“another server might be running”。此时,查看日志,有如下信息:
[postgres@localhost log]$ cat pg_serverlog
FATAL: lock file "postmasterpid" already exists
HINT: Is another postmaster (PID 4491) running in data directory "/opt/postgresql/data"
[postgres@localhost log]$
当然,最简的启动方式是:
[postgres@localhost ~]$ pg_ctl start
server starting
[postgres@localhost ~]$ LOG: database system was shut down at 2011-07-09 13:58:00 CST
LOG: autovacuum launcher started
LOG: database system is ready to accept connections
如果要在操作系统启动时就启动PG,可以在/etc/rcd/rclocal 文件中加以下语句:
/opt/postgresql/bin/pg_ctl start -l /opt/postgresql/log/pg_serverlog -D /opt/postgresql/data
2关闭服务器
最简单方法:
[postgres@localhost ~]$ pg_ctl stop
waiting for server to shut down done
server stopped
与Oracle相同,在关闭时也可采用不同的模式,简介如下:
SIGTERM
不再允许新的连接,但是允许所有活跃的会话正常完成他们的工作,只有在所有会话都结束任务后才关闭。这是智能关闭。
SIGINT
不再允许新的连接,向所有活跃服务器发送 SIGTERM(让它们立刻退出),然后等待所有子进程退出并关闭数据库。这是快速关闭。
SIGQUIT
令 postgres 向所有子进程发送 SIGQUIT 并且立即退出(所有子进程也会立即退出),而不会妥善地关闭数据库系统。这是立即关闭。这样做会导致下次启动时的恢复(通过重放 WAL 日志)。我们推荐只在紧急的时候使用这个方法。
SIGKILL
此选项尽量不要使用,这样会阻止服务器清理共享内存和信号灯资源,那样的话你只能在启动服务器之前自己手工做这件事。另外,SIGKILL 直接把 postgres 杀掉,而不会等它把信号中继给它的子进程,因此我们还需要手工杀掉每个独立子进程。
使用方法举例:
[postgres@localhost ~]$ pg_ctl stop -o SIGTERM
LOG: received smart shutdown request
LOG: autovacuum launcher shutting down
waiting for server to shut downLOG: shutting down
LOG: database system is shut down
done
server stopped
[postgres@localhost ~]$
最快速关闭方法:kill postgres 进程
[postgres@localhost ~]$ kill -INT `head -1 /opt/postgresql/data/postmasterpid`
[postgres@localhost ~]$ LOG: received fast shutdown request
LOG: aborting any active transactions
LOG: autovacuum launcher shutting down
LOG: shutting down
LOG: database system is shut down
附:postgre启动后的进程,如下:
[postgres@localhost ~]$ ps -ef|grep post
root 4609 4543 0 13:57 pts/2 00:00:00 su - postgres
postgres 4610 4609 0 13:57 pts/2 00:00:00 -bash
postgres 4724 1 0 14:08 pts/2 00:00:00 /opt/postgresql/bin/postgres
postgres 4726 4724 0 14:08 00:00:00 postgres: writer process
postgres 4727 4724 0 14:08 00:00:00 postgres: wal writer process
postgres 4728 4724 0 14:08 00:00:00 postgres: autovacuum launcher process
postgres 4729 4724 0 14:08 00:00:00 postgres: stats collector process
postgres 4752 4610 0 14:11 pts/2 00:00:00 ps -ef
postgres 4753 4610 0 14:11 pts/2 00:00:00 grep post
[postgres@localhost ~]$
;
0条评论