Изменить порт 5432 на 5433
Postgre не может использовать порт 5432. PostgreSQL на Docker
Не получается работать с контейнером. Постоянно падает. Вот логи: The files belonging to this.
сма siemens plus 5433 не выходит на максимальные обороты
привет мастерам.Проблема с древним 25 летним ящиком от гансов.При включении отжима двигло набирает.
Error FAIL 5432
Настраиваю Django 1.8. ОС Debian, БД Postgresql 9.4 При попытке выполнить sudo apt-get upgrade.
Изменить порт Mysql
Добрый день. Коллеги, подскажите как корректно изменить порт, а то у меня в xampp при перезапуске.
Я не могу найти подготовленные команды start server, stop server, reload server
Или вы их выполняли через командную строку?
Понятно, у меня есть только Reload Configuration
Может быть этого достаточно?
Добавлено через 3 минуты
да, всё получилось! спасибо!
Нет reload недостаточно! Нужно именно restart.
Добавлено через 58 секунд
Хм.. ну ладно! Посмотрел в доке, пишут, что reload делает все кроме параметров, которые требуют рестар. порт как раз требует рестарт.
Помощь в написании контрольных, курсовых и дипломных работ здесь.
Redmine изменить порт
Добрый день. Настраиваю redmine. Вроде запустился. Подскажите где нужно подправить, чтобы.
Занести число 5432 в регистровую пару Y(R28:29)
помогите написать программу для задачи: Занести число 5432 в регистровую пару Y(R28:29) я вообще.
Как правильно изменить порт?
Есть парсер. Суть парсера такая, он перехватывает от одной программы передаваемое значение на.
Как изменить порт подключения?
Доброго времени суток! Недавно решил использовать Tomcat 5. Но после установки не запускается.
Источник
JamesCoyle.net Limited
Data Integration and Virtualisation
How to change the listening port for PostgreSQL Database
- Home
- How to change the listening port for PostgreSQL Database
How to change the listening port for PostgreSQL Database
The default TCP port for PostgreSQL is usually 5432, however this can easily be changed in the postgresql.conf configuration file, which is the main configuration file for the database server.
In addition to a TCP listening port, PostgreSQL will also a local socket if the server is running in a Linux/ Unix environment. A local socket is the prefered method of connecting to a database as it removes much of the overhead of creating a TCP connection and transferring data. This comes with the limitation that it can only be used if the application accessing the database is on the same machine. In larger or highly available systems this may not be possible.
A TCP connection is the only option of connecting to your PostgreSQL database server from a remote machine. It incurs a small penalty over a local socket and therefore slightly higher latencies and is limited by the network bandwidth available. PostgreSQL Server can be configured to use a local socket, TCP connections or both.
be editing the postgresql.conf file for the following sections however the location of the file is different depending on OS and PostgreSQL version. In Linux you can use the following command to find the file:
As you can see, the server version is included in the file path so you’ll need to check that before trying to open it.
On Windows it’s usually C:\Program Files\PostgreSQL\9.5\data but again, you’ll have to take the version into account.
I’m using Linux for this example, but adjust the following steps to suit your environment. Open the file in your favourite editor.
Configuring local socket use (Linux/ Unix only)
The unix_socket_directory option indicates the filesystem path to the location of the directory you’d like to hold your socket. Specify a filesystem directory path, usually /var/run/postgresql/ and the socket will be created when the server next starts. Remove or comment (#) the line to disable socket access.
Restart the server for the changes to take effect.
Setting or changing the TCP port
The port option sets the PostgreSQL server port number that will be used when listening for TCP/ IP connections. The default port number is 5432 but you can change it as required. Use the port option with the
listen_addresses option to control the interface where the port will be listening. Use ‘*’ to listen on all interfaces on the host, specify a single host name or IP address to listen on a single interface, or separate several hostname or IP addresses by space (such as ‘10.10.0.1 10.11.0.1’). Omit both of these options to disable TCP/ IP connections.
Restart the server for the changes to take effect.
Источник
Как сменить порт postgresql?
влип? надо чуток думать перед тыканьем на кнопку
pgadmin конечно надо постараться угробить ))
гугли postgresql change port — там фишка в разных версиях он может быть прописан как в конфиге так и в строке запуска службы
гугли «сменить пароль postgresql» ))
лучше по дейфолту начинать
и это — клиента лучше DataGrip осваивать
может быть что угодно — например, прокси или еще что
освой https://docs.microsoft.com/en-us/sysinternals/down. и прочие файрволлы, чтобы видеть что порт открыт
да не придется, надо не тупить, а сделать так:
1) postgre поставить корректно на 5432 их стандарт порт
2) юзать норм клиента — не pgadmin: либо JetBrains либы либо другого программного
лень искать — открой раздел на постре в т.ч. ру там есть варианты
кажется от DbForge есть для русских фришный варик (по Мускулю точно есть, по Постгре не помню) — в целом норм,
Jetbrains когда привыкнешь к нему — будет более чем норм
и еще какой-то древний фрищный видел, не Неткет но что-то такого рода
Источник