-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhow-to-start-and-stop-wildfly.html
92 lines (80 loc) · 6.43 KB
/
how-to-start-and-stop-wildfly.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<link href='https://fonts.googleapis.com/css?family=Chivo:900' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen">
<link rel="stylesheet" type="text/css" href="stylesheets/pygment_trac.css" media="screen">
<link rel="stylesheet" type="text/css" href="stylesheets/print.css" media="print">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<title>GitHub.I88.CA</title>
</head>
<body>
<!-- Google Tag Manager -->
<noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-WN57X5"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<script>(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({'gtm.start':
new Date().getTime(), event: 'gtm.js'});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src =
'//www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-WN57X5');</script>
<!-- End Google Tag Manager -->
<div id="container">
<div class="inner">
<header>
<h1>How to Start and Stop WildFly Server</h1>
<h2></h2>
</header>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- responsive -->
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-4718006397759079"
data-ad-slot="3139844267"
data-ad-format="auto"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<hr>
<section id="main_content">
Change to the bin directory
<div style="color: #333333; font-family: Helvetica, arial, freesans, clean, sans-serif; font-size: 15px; line-height: 25px; margin-bottom: 15px; margin-top: 15px;">
<pre class="prettyprint " style="background: rgb(239, 239, 239); border-radius: 3px; border: none; font-family: Menlo, 'Bitstream Vera Sans Mono', 'DejaVu Sans Mono', Monaco, Consolas, monospace; font-size: 12px; line-height: 1.5; padding: 10px; white-space: pre-wrap;"><span class="pln" style="color: black;">$ cd wildfly</span><span class="pun" style="color: #666600;">-[</span><span class="pln" style="color: black;">version</span><span class="pun" style="color: #666600;">]/</span><span class="pln" style="color: black;">bin</span></pre>
Start the server in domain mode</div>
<div style="color: #333333; font-family: Helvetica, arial, freesans, clean, sans-serif; font-size: 15px; line-height: 25px; margin-bottom: 15px; margin-top: 15px;">
<pre class="prettyprint " style="background: rgb(239, 239, 239); border-radius: 3px; border: none; font-family: Menlo, 'Bitstream Vera Sans Mono', 'DejaVu Sans Mono', Monaco, Consolas, monospace; font-size: 12px; line-height: 1.5; padding: 10px; white-space: pre-wrap;"><span class="pln" style="color: black;">$ </span><span class="pun" style="color: #666600;">./</span><span class="pln" style="color: black;">domain</span><span class="pun" style="color: #666600;">.</span><span class="pln" style="color: black;">sh</span></pre>
Start the server in standalone mode</div>
<div style="color: #333333; font-family: Helvetica, arial, freesans, clean, sans-serif; font-size: 15px; line-height: 25px; margin-bottom: 15px; margin-top: 15px;">
<pre class="prettyprint " style="background: rgb(239, 239, 239); border-radius: 3px; border: none; font-family: Menlo, 'Bitstream Vera Sans Mono', 'DejaVu Sans Mono', Monaco, Consolas, monospace; font-size: 12px; line-height: 1.5; padding: 10px; white-space: pre-wrap;"><span class="pln" style="color: black;">$ </span><span class="pun" style="color: #666600;">./</span><span class="pln" style="color: black;">standalone</span><span class="pun" style="color: #666600;">.</span><span class="pln" style="color: black;">sh</span></pre>
To stop the server, press Ctrl + C, or use the admin console</div>
<pre class="prettyprint " style="background: rgb(239, 239, 239); border-radius: 3px; border: none; color: #333333; font-family: Menlo, 'Bitstream Vera Sans Mono', 'DejaVu Sans Mono', Monaco, Consolas, monospace; font-size: 12px; line-height: 1.5; padding: 10px; white-space: pre-wrap;"><span class="pln" style="color: black;">$ </span><span class="pun" style="color: #666600;">./</span><span class="pln" style="color: black;">jboss</span><span class="pun" style="color: #666600;">-</span><span class="pln" style="color: black;">cli</span><span class="pun" style="color: #666600;">.</span><span class="pln" style="color: black;">sh </span><span class="pun" style="color: #666600;">--</span><span class="pln" style="color: black;">connect command</span><span class="pun" style="color: #666600;">=:</span><span class="pln" style="color: black;">shutdown</span></pre>
See also:
<a href="http://it.i88.ca/2013/11/why-cant-i-connect-to-wildfly-server.html" target="_blank"> How to connect to wildfly server remotely?</a>
</section>
<footer>
This page was generated by <a href="http://pages.github.com">GitHub Pages</a>. Tactile theme by <a href="https://twitter.com/jasonlong">Jason Long</a>.
</footer>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-19383757-18");
pageTracker._trackPageview();
} catch (err) {
}
</script>
</div>
</div>
</body>
</html>