Connect to MySQL with named pipes
Named pipes provide a way for communication among processes that run on the same machine. By using named pipes, you can send your data without having the performance penalty that involves the network stack.
Just like you have a server that listens to an IP address and port for incoming requests, a server can also set up a named pipe that can listen for requests. In both cases, the client process must know the address or a pipe name to which it should send the request.
The default pipe name for the MySQL server is \\.\pipe\MySQL
.
Step 1. Enable named pipes for the MySQL server
Verify that named pipes are enabled
To ensure that named pipes are enabled, run the following code:
SHOW GLOBAL VARIABLES LIKE 'named_pipe'
.If the
named_pipe
variable has theON
value, skip Step 1.
Enable named pipes during server installation
Run the installation wizard of the MySQL server.
On the Type and Networking dialog, select the Named Pipe checkbox. You can change the pipe name or leave the default value.
Finish all the steps of the installation wizard and start the MySQL server.
Enable named pipes in my.ini
Open the my.ini configuration file in a text editor.
Add the
enable-named-pipe
parameter to themysqld
section. Consider the following example of themysqld
section:[mysqld] # The next three options are mutually exclusive to SERVER_PORT below. # skip-networking enable-named-pipe # shared-memory # shared-memory-base-name=MYSQL # The Pipe the MySQL Server will use socket=MYSQLSave changes and restart the MySQL server.
How to find my.ini and my.cnf?
In the command line, run
mysql --help
. Scroll down to the end of the Options section.
Step 2. Configure a connection in PhpStorm
In the Database tool window ( ), click the Data Source Properties icon .
In the Data Sources and Drivers dialog, click the Add icon () and select MySQL.
At the bottom of the data source settings area, click the Download missing driver files link. As you click this link, PhpStorm downloads drivers that are required to interact with a database. The IDE does not include bundled drivers in order to have a smaller size of the installation package and to keep driver versions up-to-date for each IDE version.
You can specify your drivers for the data source if you do not want to download the provided drivers. For more information about creating a database connection with your driver, see Add a user driver to an existing connection.
On the Advanced tab, find the
serverTimezone
parameter in the list of options. Double-click the Value cell and type your server timezone (for example,UTC
).Click the General tab.
In the Host field, type the following text:
(protocol=pipe)(path=\\.\pipe\MySQL)
, whereMySQL
is the pipe name.Alternatively, in the Connection type list, select Unix Socket and type or select the path to the pipe: \\.\pipe\MySQL.
To ensure that the connection to the data source is successful, click the Test Connection link.