diff --git a/controller-vtep/ovn-controller-vtep.8.xml b/controller-vtep/ovn-controller-vtep.8.xml
index 6aec43fa7d..89acae7edb 100644
--- a/controller-vtep/ovn-controller-vtep.8.xml
+++ b/controller-vtep/ovn-controller-vtep.8.xml
@@ -28,11 +28,6 @@
ovn-controller-vtep
retrieves its configuration
diff --git a/controller-vtep/ovn-controller-vtep.c b/controller-vtep/ovn-controller-vtep.c
index 698511482e..4472e52853 100644
--- a/controller-vtep/ovn-controller-vtep.c
+++ b/controller-vtep/ovn-controller-vtep.c
@@ -58,9 +58,6 @@ static char *vtep_remote;
static char *ovnsb_remote;
static char *default_db_;
-/* --unixctl-path: Path to use for unixctl server socket. */
-static char *unixctl_path;
-
/* Returns true if the northd internal version stored in SB_Global
* and ovn-controller-vtep internal version match.
*/
@@ -121,7 +118,7 @@ main(int argc, char *argv[])
daemonize_start(false, false);
- char *abs_unixctl_path = get_abs_unix_ctl_path(unixctl_path);
+ char *abs_unixctl_path = get_abs_unix_ctl_path(NULL);
retval = unixctl_server_create(abs_unixctl_path, &unixctl);
free(abs_unixctl_path);
@@ -290,7 +287,6 @@ parse_options(int argc, char *argv[])
{"vtep-db", required_argument, NULL, 'D'},
{"help", no_argument, NULL, 'h'},
{"version", no_argument, NULL, 'V'},
- {"unixctl", required_argument, NULL, 'u'},
VLOG_LONG_OPTIONS,
OVN_DAEMON_LONG_OPTIONS,
STREAM_SSL_LONG_OPTIONS,
@@ -326,10 +322,6 @@ parse_options(int argc, char *argv[])
ovn_print_version(OFP13_VERSION, OFP13_VERSION);
exit(EXIT_SUCCESS);
- case 'u':
- unixctl_path = optarg;
- break;
-
VLOG_OPTION_HANDLERS
OVN_DAEMON_OPTION_HANDLERS
STREAM_SSL_OPTION_HANDLERS
@@ -372,7 +364,6 @@ Options:\n\
(default: %s)\n\
--ovnsb-db=DATABASE connect to ovn-sb database at DATABASE\n\
(default: %s)\n\
- -u, --unixctl=SOCKET set control socket name\n\
-h, --help display this help message\n\
-o, --options list available options\n\
-V, --version display version information\n\
diff --git a/controller/ovn-controller.8.xml b/controller/ovn-controller.8.xml
index bcae4617e6..faefa77b9a 100644
--- a/controller/ovn-controller.8.xml
+++ b/controller/ovn-controller.8.xml
@@ -47,8 +47,7 @@