Error: 2017 - CR_NAMEDPIPEOPEN_ERROR
March 11th, 2009
Description:
Message: Can’t open named pipe to host: %s pipe: %s %lu
Description:
Message: Can’t open named pipe to host: %s pipe: %s %lu
MySql-Client "mysql -h" 2017, can't open named pipe "mysql -h", can't open named pipe to host error 2017 solution, cr_namedpipeopen_error, error 2017 mysql, error 2017 mysql name pipe 2017, lrm-00118: syntax error at '=' at the end of input, mysql 2017, mysql configure error 2017, mysql error 2017, pipe
You need to use the key enable-named-pipe
under [mysqld] section:
c:\mysql\bin>type c:\my.ini
[client]
host = localhost
[mysqld]
basedir=c:/mysql
datadir=c:/mysql/data
enable-named-pipe
c:\mysql\bin>mysql -h localhost -u root -W -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1 to server version: 4.1.18-nt
Type ‘help;’ or ‘\h’ for help. Type ‘\c’ to clear the buffer.
mysql> show variables like “%named%”;
+—————+——-+
| Variable_name | Value |
+—————+——-+
| named_pipe | ON |
+—————+——-+
1 row in set (0.06 sec)
mysql>