Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
debomatic-webui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
debomatic-webui-admins
debomatic-webui
Commits
528474d1
Commit
528474d1
authored
Mar 16, 2014
by
Leo Iannacone
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
handle with EADDRINUSE
parent
ed95eb93
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
5 deletions
+10
-5
debomatic-webui/index.js
debomatic-webui/index.js
+10
-5
No files found.
debomatic-webui/index.js
View file @
528474d1
...
...
@@ -43,11 +43,6 @@ if (config.routes.preferences)
// Listening
var
server
=
app
.
listen
(
config
.
port
,
config
.
host
,
null
,
function
(
err
){
if
(
err
)
{
console
.
log
(
err
)
return
}
// Checking nodejs with sudo:
// Find out which user used sudo through the environment variable
// and set his user id
...
...
@@ -73,3 +68,13 @@ var server = app.listen(config.port, config.host, null, function(err){
console
.
log
(
"
Debomatic-webui listening on %s:%d in %s mode
"
,
app
.
address
().
address
,
app
.
address
().
port
,
app
.
settings
.
env
);
});
server
.
on
(
'
error
'
,
function
(
e
)
{
if
(
e
.
code
==
'
EADDRINUSE
'
)
{
console
.
log
(
'
Address in use %s:%d. Exit.
'
,
config
.
host
,
config
.
port
);
process
.
exit
(
1
);
}
else
{
console
.
error
(
e
);
}
});
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment