How to install PostgreSQL on windows using command prompt? [closed] - windows

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
Is there any way to install PostgreSQL on windows using command prompt? (Without using PostgreSQL installer)

postgresql-9.3.3-1-windows-x64.exe --unattendedmodeui minimal --mode unattended --superpassword "password" --servicename "postgreSQL"
--servicepassword "password" --serverport 5432
Worth mentioning postgresql-9.3.3-1-windows-x64.exe --help will provide list of options and defaults which can be used.

Run the installer in unattended(silent) mode
-or-
download the plain binaries, initdb a new datadir, then start the server with pg_ctl. You can install a service with standard Windows tools like sc or can use pg_ctl register to create the service.
If you plan to bundle PostgreSQL in an application, please use the latter method (binary zip), and make sure you run it on a port other than the default port 5432 so your app doesn't conflict with any install the user might do themselves.

Related

Ssh from Ubuntu to Windows 7 [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
I was just about to try sshing for the first time and before I get into it, I want to know what's the best way to go about it. In particular, I'm currently running Linux through crouton on an HP chromebook and I want to ssh into and old windows 7 pc. Ideally I would love to have some sort of bash shell inside the windows ssh as I'm not so confident with cmd but I can make do. Are there any packages/apps that I should install on my old pc before I start trying. Preferably if there was something like WSL but for windows 7 that'd be great but I can't seem to find anything like it.
there is no ssh daemon (service) for windows from Microsoft.
So installing shell on windows, it is only about run it locally.
To connect with ssh on remote windows, you should install 3rd party ssh server on windows.

Can I automate oracle 11g installation on Windows? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 years ago.
Improve this question
I am looking to automate my appplication installation on standalone machines, so wondering if I can automate the oracle 11g setup as well? Is there a way to do this?
Maybe instead of installing Oracle on Windows use VM with pre installed software. Here you have some instructions how to use it.
Generally I don't think automated instalation for database make sense. You can configure database somwhere in the net and your application can use remote databse (just create a schema for each user). Also database server has usually different requirements so it is not popular to install DB at same machine as application.

How to reset the admin password for Ubuntu on Windows [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 years ago.
Improve this question
I have Bash Ubuntu on Windows 10. This is enabled by turning on the Developer mode feature so the normal non-programmer would likely not need this. I need to reset the password. I must have typed it wrong (twice, somehow) when I first set it up. How can I do that?
This has been answered HERE
Copying from their answer:
In Windows command prompt change the default user to root:
lxrun /setdefaultuser root
Now Bash on Ubuntu on Windows logs you in as root without asking password
Use passwd command in Bash to change the user password:
passwd your_username
Change the default user back to your normal user in Windows command prompt
lxrun /setdefaultuser your_username

Yosemite psql only [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
I have done a fresh install of Yosemite. I have read that PostgreSQL is the default database in MacOS now. The problem is that I can't find psql in this new installation. It looks like either I missed to check to install database server or it is not available in Yosemite by default.
I have tried to find the file using: find . | grep psql
The PostgreSQL server is running on remote machine, so, basically I only need command line utility to connect to the remote server
My question is: how can I install just psql (command line utils) without installing the whole server?
Thanks
OS X built-in PostgreSQL is for system data, not for user. Please use Homebrew, Macports, Postgres.app or the EDB installer instead.
It's data directory is for example deleted on upgrade.

Remote access to windows 7 command prompt [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 years ago.
Improve this question
I would like to gain access to a remote windows machine's command prompt from my mac, and in specific from the mac's terminal, the windows machine does not have remote desktop connection at as it is a Windows 7 Home Premium edition. Is there anything that allow me to do this? I am looking for something that is reasonably command-line driven.
I can install software onto the remote machine, to act as an interface, and I have done so with applications like Logmein, but this is quite graphical and I was looking for something that is command-line focused.
Thanks in advance
Install OpenSSHD for Windows - this will allow remote "console" sessions.
If you looking for something very "unix-like" then you can install cygwin.
http://www.worldgoneweb.com/2011/installing-openssh-on-windows-7/

Resources