Hi,
Our organization has changed from amtrust mobile to Bolttech. We have some users on Atlassian still using the old amtrust email. On the single user’s page, I cannot see an option to change the email address. How can we do this?
Also, how to bulk edit for all existing amtrust users?
If we send invite to the user’s bolttech email and then delete the old amtrust email, will it affect the user account, issues, groups, projects etc?
As per the forums, there is no way to merge the two emails? Or has there been any update or new improvement?
The Resource definition looks good for me, the name must be preceded with "java:comp/env/" in your script, so "java:comp/env/JIRA_SupportDB" should do the trick.
I use a resource in the following way.
try {
// Get Context to connect to database as a datasource
Context ctx = new InitialContext()
if (ctx == null) {
throw new Exception("No Context found!")
}
DataSource ds = (DataSource) ctx.lookup("java:comp/env/jdbc/MYDB")
if (ds) {
sql = new Sql(ds)
...
In this case the name in the Resorce is "jdbc/MYDB". Be aware of that the <Resource> part must be inside of the <context> in the context.xml
Henning
Hi Henning!!
that s right, I look like a newbie
Thanks for your time :-)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Don't forget to close your connections in a finally{} block...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What import was required to resolve the Context class?
When I tried the above code in my groovy script, I got the following error:
Script11.groovy: 96: unable to resolve class Context
@ line 96, column 14.
Context ctx = new InitialContext()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
import javax.naming.Context
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am attempting to upgrade from JIRA 5 (don't ask) and am hitting this issue with scripts that have run for years. Does this still work in the console either as a script or a file on scriptrunner 3.0.16 and JIRA 6.3.15
my scripts still run as services but if I try to run the files in the console I get
Cannot instantiate class: org.apache.naming.java.javaURLContextFactory
even this simply block won't run.
import javax.naming.InitialContext
import groovy.sql.Sql
def ds = (new InitialContext()).lookup("java:/comp/env/jdbc/JIRAAUX")
def sql = new Sql(ds)
but as I mentioned, put this into a script and run it as a service.. works fine.
I really would prefer to use this method over defining the connection as this allows me to copy files directly from development to production without worrying about changing the connection details.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I think this is the same problem as described here: https://jamieechlin.atlassian.net/browse/GRV-544
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Henning. With a little more googling I found this link https://jamieechlin.atlassian.net/wiki/display/GRV/Connecting+to+Databases which lead me down the path to creating an abstract class for creating the connections and for now I am loading that in each script instead of the JNDI. Just wondering everyone else is doing this?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.