PostgreSQL9.6 net start(stop)を使用してPostgreSQLのサービスを開始、終了、再起動する
環境
Windows 10 Home 64bit
PostgreSQL 9.6
書式
–PostgreSQLサービスの開始
net start postgresql-xxx
–PostgreSQLサービスの停止
net stop postgresql-xxx
–PostgreSQLサービスを再起動する(停止 → 起動の順番に実行する)
net stop postgresql-x64-xxx net start postgresql-x64-xxx
使用例
1.管理者権限でコマンドプロンプトを起動します。
2.以下のコマンドを実行してPostgreSQLサービスを停止します。
net stop postgresql-x64-9.6
実行結果
C:\>net stop postgresql-x64-9.6 postgresql-x64-9.6 - PostgreSQL Server 9.6 サービスを停止中です. postgresql-x64-9.6 - PostgreSQL Server 9.6 サービスは正常に停止されました。
3.以下のコマンドを実行してPostgreSQLサービスを起動します。
net start postgresql-x64-9.6
実行結果
C:\>net start postgresql-x64-9.6 postgresql-x64-9.6 - PostgreSQL Server 9.6 サービスを開始します. postgresql-x64-9.6 - PostgreSQL Server 9.6 サービスは正常に開始されました。