Ubuntu 14.04 FTP restartTransfering files with FTPCan't access ftp serverMatch directive breaks SSHHow to...
Ideas for 3rd eye abilities
Does a dangling wire really electrocute me if I'm standing in water?
extract characters between two commas?
Is it wise to hold on to stock that has plummeted and then stabilized?
Can I legally use front facing blue light in the UK?
Are white and non-white police officers equally likely to kill black suspects?
What do you call something that goes against the spirit of the law, but is legal when interpreting the law to the letter?
Map list to bin numbers
Email Account under attack (really) - anything I can do?
Should the British be getting ready for a no-deal Brexit?
Domain expired, GoDaddy holds it and is asking more money
Patience, young "Padovan"
Is Social Media Science Fiction?
Where else does the Shulchan Aruch quote an authority by name?
Prime joint compound before latex paint?
Is it legal to have the "// (c) 2019 John Smith" header in all files when there are hundreds of contributors?
How to move the player while also allowing forces to affect it
What is it called when one voice type sings a 'solo'?
Why airport relocation isn't done gradually?
How could a lack of term limits lead to a "dictatorship?"
Is a vector space a subspace of itself?
Where to refill my bottle in India?
Calculate Levenshtein distance between two strings in Python
Why do we use polarized capacitors?
Ubuntu 14.04 FTP restart
Transfering files with FTPCan't access ftp serverMatch directive breaks SSHHow to make ftp work on ubuntu 14.04User has full access with FTP, limited access with SFTPFTP Server on UbuntuUbuntu: FTP works in Filezilla but not with ftp programwant to create ubuntu FTP mirrorWhy does my proftpd server refuse the connection?FTP installation
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
We use a dedicated server running Ubuntu 14.04
The FTP service sometimes quits and we need to get it restarted. This means I am stuck a day or to and is unable to work with files on the server www area.
I am not a server guy at all unfortunately (hoping to learn), but when I log on server root with putty
I guess I should be able to restart the FTP service somehow as I have root access.
Would anyone take me through the kung-fu required to restart the FTP service ?
I have tried:
service vsftpd restart
message:
vsftpd: unrecognized service
Solution:
The server was running proftpd so got it restarted with:
service proftpd restart
The reason why FTP stopped once a week is a glitch where the log rotation tries to restart FTP before its stopped completely. Adding a sleep and retry solves this from happening.
ftp
bumped to the homepage by Community♦ 1 hour ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
We use a dedicated server running Ubuntu 14.04
The FTP service sometimes quits and we need to get it restarted. This means I am stuck a day or to and is unable to work with files on the server www area.
I am not a server guy at all unfortunately (hoping to learn), but when I log on server root with putty
I guess I should be able to restart the FTP service somehow as I have root access.
Would anyone take me through the kung-fu required to restart the FTP service ?
I have tried:
service vsftpd restart
message:
vsftpd: unrecognized service
Solution:
The server was running proftpd so got it restarted with:
service proftpd restart
The reason why FTP stopped once a week is a glitch where the log rotation tries to restart FTP before its stopped completely. Adding a sleep and retry solves this from happening.
ftp
bumped to the homepage by Community♦ 1 hour ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Since you solved the issue, make an answer with that info yourself and accept it.
– Aibara
Nov 18 '14 at 0:50
add a comment |
We use a dedicated server running Ubuntu 14.04
The FTP service sometimes quits and we need to get it restarted. This means I am stuck a day or to and is unable to work with files on the server www area.
I am not a server guy at all unfortunately (hoping to learn), but when I log on server root with putty
I guess I should be able to restart the FTP service somehow as I have root access.
Would anyone take me through the kung-fu required to restart the FTP service ?
I have tried:
service vsftpd restart
message:
vsftpd: unrecognized service
Solution:
The server was running proftpd so got it restarted with:
service proftpd restart
The reason why FTP stopped once a week is a glitch where the log rotation tries to restart FTP before its stopped completely. Adding a sleep and retry solves this from happening.
ftp
We use a dedicated server running Ubuntu 14.04
The FTP service sometimes quits and we need to get it restarted. This means I am stuck a day or to and is unable to work with files on the server www area.
I am not a server guy at all unfortunately (hoping to learn), but when I log on server root with putty
I guess I should be able to restart the FTP service somehow as I have root access.
Would anyone take me through the kung-fu required to restart the FTP service ?
I have tried:
service vsftpd restart
message:
vsftpd: unrecognized service
Solution:
The server was running proftpd so got it restarted with:
service proftpd restart
The reason why FTP stopped once a week is a glitch where the log rotation tries to restart FTP before its stopped completely. Adding a sleep and retry solves this from happening.
ftp
ftp
edited Nov 18 '14 at 0:49
Aibara
6,14763359
6,14763359
asked Nov 16 '14 at 9:12
TstTst
112
112
bumped to the homepage by Community♦ 1 hour ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 1 hour ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Since you solved the issue, make an answer with that info yourself and accept it.
– Aibara
Nov 18 '14 at 0:50
add a comment |
Since you solved the issue, make an answer with that info yourself and accept it.
– Aibara
Nov 18 '14 at 0:50
Since you solved the issue, make an answer with that info yourself and accept it.
– Aibara
Nov 18 '14 at 0:50
Since you solved the issue, make an answer with that info yourself and accept it.
– Aibara
Nov 18 '14 at 0:50
add a comment |
2 Answers
2
active
oldest
votes
Install the package using
sudo apt-get install vsftpd
If you have already installed it, try
sudo apt-get --purge --reinstall install vsftpd
Its already installed, but its not running. This has happened twice in 2 weeks.
– Tst
Nov 16 '14 at 10:45
service vsftpd start
?
– Rohith Madhavan
Nov 16 '14 at 10:48
get unrecognized service vsftpd, so it must be a different ftp server then. The problem is that i dont know what ftp server is installed as we ordered a setup inkluded ftp server but no specific. Seems like i have to await support unless its a clean way to identify the installed ftp server. When im in root i can enter ftp: root@a:~# ftp -> ftp>
– Tst
Nov 16 '14 at 11:08
add a comment |
OP's original solution (added as an edit to the question):
The server was running proftpd so got it restarted with:
service proftpd restart
The reason why FTP stopped once a week is a glitch where the log
rotation tries to restart FTP before its stopped completely. Adding a
sleep and retry solves this from happening.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f550226%2fubuntu-14-04-ftp-restart%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Install the package using
sudo apt-get install vsftpd
If you have already installed it, try
sudo apt-get --purge --reinstall install vsftpd
Its already installed, but its not running. This has happened twice in 2 weeks.
– Tst
Nov 16 '14 at 10:45
service vsftpd start
?
– Rohith Madhavan
Nov 16 '14 at 10:48
get unrecognized service vsftpd, so it must be a different ftp server then. The problem is that i dont know what ftp server is installed as we ordered a setup inkluded ftp server but no specific. Seems like i have to await support unless its a clean way to identify the installed ftp server. When im in root i can enter ftp: root@a:~# ftp -> ftp>
– Tst
Nov 16 '14 at 11:08
add a comment |
Install the package using
sudo apt-get install vsftpd
If you have already installed it, try
sudo apt-get --purge --reinstall install vsftpd
Its already installed, but its not running. This has happened twice in 2 weeks.
– Tst
Nov 16 '14 at 10:45
service vsftpd start
?
– Rohith Madhavan
Nov 16 '14 at 10:48
get unrecognized service vsftpd, so it must be a different ftp server then. The problem is that i dont know what ftp server is installed as we ordered a setup inkluded ftp server but no specific. Seems like i have to await support unless its a clean way to identify the installed ftp server. When im in root i can enter ftp: root@a:~# ftp -> ftp>
– Tst
Nov 16 '14 at 11:08
add a comment |
Install the package using
sudo apt-get install vsftpd
If you have already installed it, try
sudo apt-get --purge --reinstall install vsftpd
Install the package using
sudo apt-get install vsftpd
If you have already installed it, try
sudo apt-get --purge --reinstall install vsftpd
answered Nov 16 '14 at 10:14
Rohith MadhavanRohith Madhavan
6,84622041
6,84622041
Its already installed, but its not running. This has happened twice in 2 weeks.
– Tst
Nov 16 '14 at 10:45
service vsftpd start
?
– Rohith Madhavan
Nov 16 '14 at 10:48
get unrecognized service vsftpd, so it must be a different ftp server then. The problem is that i dont know what ftp server is installed as we ordered a setup inkluded ftp server but no specific. Seems like i have to await support unless its a clean way to identify the installed ftp server. When im in root i can enter ftp: root@a:~# ftp -> ftp>
– Tst
Nov 16 '14 at 11:08
add a comment |
Its already installed, but its not running. This has happened twice in 2 weeks.
– Tst
Nov 16 '14 at 10:45
service vsftpd start
?
– Rohith Madhavan
Nov 16 '14 at 10:48
get unrecognized service vsftpd, so it must be a different ftp server then. The problem is that i dont know what ftp server is installed as we ordered a setup inkluded ftp server but no specific. Seems like i have to await support unless its a clean way to identify the installed ftp server. When im in root i can enter ftp: root@a:~# ftp -> ftp>
– Tst
Nov 16 '14 at 11:08
Its already installed, but its not running. This has happened twice in 2 weeks.
– Tst
Nov 16 '14 at 10:45
Its already installed, but its not running. This has happened twice in 2 weeks.
– Tst
Nov 16 '14 at 10:45
service vsftpd start
?– Rohith Madhavan
Nov 16 '14 at 10:48
service vsftpd start
?– Rohith Madhavan
Nov 16 '14 at 10:48
get unrecognized service vsftpd, so it must be a different ftp server then. The problem is that i dont know what ftp server is installed as we ordered a setup inkluded ftp server but no specific. Seems like i have to await support unless its a clean way to identify the installed ftp server. When im in root i can enter ftp: root@a:~# ftp -> ftp>
– Tst
Nov 16 '14 at 11:08
get unrecognized service vsftpd, so it must be a different ftp server then. The problem is that i dont know what ftp server is installed as we ordered a setup inkluded ftp server but no specific. Seems like i have to await support unless its a clean way to identify the installed ftp server. When im in root i can enter ftp: root@a:~# ftp -> ftp>
– Tst
Nov 16 '14 at 11:08
add a comment |
OP's original solution (added as an edit to the question):
The server was running proftpd so got it restarted with:
service proftpd restart
The reason why FTP stopped once a week is a glitch where the log
rotation tries to restart FTP before its stopped completely. Adding a
sleep and retry solves this from happening.
add a comment |
OP's original solution (added as an edit to the question):
The server was running proftpd so got it restarted with:
service proftpd restart
The reason why FTP stopped once a week is a glitch where the log
rotation tries to restart FTP before its stopped completely. Adding a
sleep and retry solves this from happening.
add a comment |
OP's original solution (added as an edit to the question):
The server was running proftpd so got it restarted with:
service proftpd restart
The reason why FTP stopped once a week is a glitch where the log
rotation tries to restart FTP before its stopped completely. Adding a
sleep and retry solves this from happening.
OP's original solution (added as an edit to the question):
The server was running proftpd so got it restarted with:
service proftpd restart
The reason why FTP stopped once a week is a glitch where the log
rotation tries to restart FTP before its stopped completely. Adding a
sleep and retry solves this from happening.
answered Aug 27 '18 at 1:22
community wiki
Thomas Ward
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f550226%2fubuntu-14-04-ftp-restart%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Since you solved the issue, make an answer with that info yourself and accept it.
– Aibara
Nov 18 '14 at 0:50