Hello, how could I configure the Java Service Wrapper with stash on Fedora?
Currently there is a guide at https://confluence.atlassian.com/display/STASH/Running+Stash+as+a+Linux+service#RunningStashasaLinuxservice-Usinganinit.dscript
But the guide is really not that good, since it forwards to the Java Service Wrapper website which won't say anything specifiv about atlassian stash. the init script also won't work since its not working on fedora.
Hi Christian,
In that case the guide at the following is probably what you're after as it talks about systemctl:
https://answers.atlassian.com/questions/147102/instead-of-init-d-use-systemctl
And copy+paste just in case you still can't see it:
Create a stash.service file in /usr/lib/systemd/system/ directory that looks like this (adjust ExecStart and ExecStop with your stash install directory):
1
2
3
4
5
6
7
8
9
10
11
|
[Unit] Description=Atlassian Stash Service After=syslog.target network.target [Service] Type=forking ExecStart= /opt/atlassian-stash-2 .2.0 /bin/start-stash .sh ExecStop= /opt/atlassian-stash-2 .2.0 /bin/start-stash .sh [Install] WantedBy=multi-user.target |
Then enable the service to start at boot with:
1
|
systemctl enable stash.service |
Or disable it with
1
|
systemctl disable stash.service |
Or see if it is set to start at boot with:
1
|
if [ -f /etc/systemd/system/ *.wants /stash .service ]; then echo "On" ; else echo "Off" ; fi |
You now can restart the system and it should start stash as part of the booting process.
To manually start and stop the service you can run:
1
2
|
systemctl start stash systemctl stop stash |
To see the state of stash run:
1
|
systemctl status stash |
now it works.. really dumb. somehow i've gotten a atlassian 404 error page. not sure why.. maybe the server uses a location based delivery and the server for europe was offline, w/e.
thanks didn't knew that it is so easy to make a systemctl script. I'm not that familiar with systemctl (SysV) right now. maybe i should look into it.
I think the same approach will be with jira or / and bamboo if we really buy bamboo.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks that you posted that here, but as i said, your page gives me a 404 error.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That's so weird - it's just an Answers page. I can see it in multiple browsers.
Anyway, I hope the above helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
now it works.. really dumb. somehow i've gotten a atlassian 404 error page. not sure why.. maybe the server uses a location based delivery and the server for europe was offline, w/e.
thanks didn't knew that it is so easy to make a systemctl script. I'm not that familiar with systemctl (SysV) right now. maybe i should look into it.
I think the same approach will be with jira or / and bamboo if we really buy bamboo.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
this site gives me a error 404.
I'm running Fedora 19 currently.
We are switching from an Active Diretory and Windows Enviroment to Fedora (FreeIPA).
And now we want our Atlassian Tools to run on Fedora enviroments, too. Everything works so far, except the init.d scripts or the java service wrapper.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Christian,
Are you running Fedora 18, and if so does this help?
https://answers.atlassian.com/questions/147102/instead-of-init-d-use-systemctl
Charles
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.