1、先停掉postgresql服务。任务管理器中找到postgresql服务,选中右键停止。
2、复制C:\zprogram\路径下的pgsql文件夹到E:\zprogram\路径下。
就是把pgsql文件夹从C盘zprogram文件夹挪到E盘zprogram文件夹中。
3、windows+R键,输入regedit,打开注册表,找到\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\postgresql
选中ImagePath,修改
"C:\zprogram\pgsql\bin\pg_ctl.exe" runservice -N "postgresql" -D "C:\zprogram\pgsql\data" -w
前面的C:\zprogram\pgsql\bin\pg_ctl.exe,程序安装地址。
后面的C:\zprogram\pgsql\data,数据库数据存储地址。
修改为
"E:\zprogram\pgsql\bin\pg_ctl.exe" runservice -N "postgresql" -D "E:\zprogram\pgsql\data" -w
4、重启postgresql服务。